@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400&display=swap");

/* ============================================================
   Contend Devotionals
   ============================================================ */

body.contend-prepare {
    background: #000;
    font-family: 'Futura', 'Jost', 'Century Gothic', 'Trebuchet MS', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* ── Root ── */
.cdev-root {
    position: relative;
}

/* ── Fixed background layer (watermark + overlay only, no bg image) ── */
.cdev-bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: #000;
}
.cdev-bg-layer .contend-watermark {
    position: absolute;
}
.cdev-bg-layer .contend-overlay {
    position: absolute;
    inset: 0;
}

/* ── Devotionals watermark: brighter + shirt image ── */
body.contend-prepare .contend-watermark img {
    opacity: 0.12;
}

/* ── Devotionals overlay: more gradient to black ── */
body.contend-prepare .contend-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.70) 0%,
        rgba(0, 0, 0, 0.88) 55%,
        rgba(0, 0, 0, 1.00) 100%
    );
}

/* ── Hero stage: contains sticky inner + spacer = one full viewport ── */
.cdev-hero-stage {
    position: relative;
}

/* ── Sticky hero content: travels from centre to top on scroll ── */
.cdev-hero-inner {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: calc(env(safe-area-inset-top, 0px) + 16px) 28px 24px;
    box-sizing: border-box;
    will-change: transform;
}

/* ── Spacer: fills remaining viewport so cards start below the fold ── */
.cdev-hero-spacer {
    /* height set dynamically by JS */
}

/* ── Small logo ── */
.cdev-nav-logo {
    width: clamp(90px, 28vw, 140px);
    height: auto;
    margin-bottom: 20px;
}

/* ── Page title ── */
.cdev-page-title {
    font-family: 'Futura', 'Jost', 'Century Gothic', 'Trebuchet MS', sans-serif;
    font-size: clamp(20px, 5.5vw, 30px);
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 20px 0 10px;
    line-height: 1.15;
}

/* ── Tagline ── */
.cdev-page-tagline {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.2px;
    max-width: 320px;
}

/* ── Cards section: solid bg slides over hero as you scroll ── */
.cdev-cards-section {
    position: relative;
    z-index: 3;
    background: #060402;
    border-radius: 20px 20px 0 0;
    padding-top: 8px;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.6);
    min-height: 50vh;
}

/* ── Fixed burger button ── */
.cdev-burger {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 20px);
    right: 20px;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
}

.cdev-burger.is-hidden {
    opacity: 0;
    pointer-events: none;
}


/* ── Full-screen nav menu ── */
.cdev-nav-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.cdev-nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ── Nav close button (X inside the menu) ── */
.cdev-nav-close {
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 20px);
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
}

.cdev-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}
.cdev-nav-link {
    font-family: 'Futura', 'Jost', 'Century Gothic', 'Trebuchet MS', sans-serif;
    font-size: clamp(16px, 5.5vw, 52px);
    font-weight: 800;
    letter-spacing: clamp(1px, 0.5vw, 3px);
    text-transform: uppercase;
    white-space: nowrap;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.cdev-nav-link:hover { opacity: 0.5; }


/* ── Share row ── */
.cdev-share-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}
.cdev-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.cdev-share-btn:hover,
.cdev-share-btn:active {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}
.cdev-copy-toast {
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 28px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(15, 172, 178, 0.9);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 18px;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    z-index: 500;
    white-space: nowrap;
}
.cdev-copy-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Filter bar ── */
.cdev-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 24px 20px 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.cdev-filters::-webkit-scrollbar { display: none; }
.cdev-filter-btn {
    flex-shrink: 0;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cdev-filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}
.cdev-filter-btn.is-active {
    background: #0facb2;
    border-color: #0facb2;
    color: #ffffff;
}

/* ── Grid ── */
.cdev-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px 60px;
}

/* ── Card ── */
.cdev-card {
    background: rgba(10, 7, 4, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    position: relative;
}
.cdev-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,172,178,0.04) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}
.cdev-card:hover {
    border-color: rgba(15, 172, 178, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(15,172,178,0.15);
}
.cdev-card-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: top;
    display: block;
    opacity: 0.75;
    filter: grayscale(20%);
}
.cdev-card-img--bw {
    object-position: 50% 8%;
    filter: grayscale(100%) brightness(0.7);
}
.cdev-card-body { padding: 20px; }
.cdev-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.cdev-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: rgba(15, 172, 178, 0.15);
    color: #0facb2;
    border: 1px solid rgba(15, 172, 178, 0.25);
}
.cdev-card-week {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}
.cdev-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
    line-height: 1.25;
    letter-spacing: 0.3px;
}
.cdev-card-scripture {
    font-size: 12px;
    font-weight: 400;
    font-style: italic;
    color: rgba(15, 172, 178, 0.7);
    margin: 0 0 12px;
    letter-spacing: 0.3px;
}
.cdev-card-excerpt {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0 0 16px;
}
.cdev-card-read {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0facb2;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s;
}
.cdev-card-read:hover { opacity: 0.7; }

/* ── Empty state ── */
.cdev-empty {
    text-align: center;
    padding: 60px 24px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* ── Full-screen reading modal ── */
.cdev-modal {
    position: fixed;
    inset: 0;
    background: #0d0a06;
    z-index: 500;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.cdev-modal.is-open { transform: translateY(0); }

.cdev-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: calc(env(safe-area-inset-top, 0px) + 24px) 24px 16px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    background: #0d0a06;
    z-index: 1;
}
.cdev-modal-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cdev-modal-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    background: rgba(15, 172, 178, 0.15);
    color: #0facb2;
    border: 1px solid rgba(15, 172, 178, 0.25);
    width: fit-content;
}
.cdev-modal-title {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.2;
}
.cdev-modal-scripture {
    font-size: 13px;
    font-style: italic;
    color: rgba(15, 172, 178, 0.8);
    margin: 0;
}
.cdev-modal-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.cdev-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.cdev-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px 24px calc(env(safe-area-inset-bottom, 0px) + 48px);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.2px;
}
.cdev-modal-body p { margin: 0 0 1.2em; }
.cdev-modal-body p:last-child { margin-bottom: 0; }
.cdev-modal-body strong { color: #ffffff; font-weight: 600; }

/* ── Floating content modal ── */
.cdev-float-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 450;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.cdev-float-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}
.cdev-float-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.97);
    width: min(560px, calc(100vw - 32px));
    max-height: calc(100dvh - 56px);
    background: #0d0a06;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    z-index: 451;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
}
.cdev-float-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}
.cdev-float-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}
.cdev-float-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.cdev-float-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 24px 32px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.2px;
}
.cdev-float-body p { margin: 0 0 1.2em; }
.cdev-float-body p:last-child { margin-bottom: 0; }
.cdev-float-close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}
.cdev-float-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ── Previous devotionals list ── */
.cdev-previous {
    padding: 0 20px 60px;
}
.cdev-previous__heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0 16px;
    padding-top: 8px;
}
.cdev-previous__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cdev-prev-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(10, 7, 4, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.cdev-prev-item:hover {
    border-color: rgba(15, 172, 178, 0.25);
    background: rgba(15, 172, 178, 0.04);
}
.cdev-prev-item__img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    opacity: 0.7;
    filter: grayscale(30%);
}
.cdev-prev-item__img--empty {
    background: rgba(255, 255, 255, 0.05);
}
.cdev-prev-item__body {
    flex: 1;
    min-width: 0;
}
.cdev-prev-item__tag {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fe8f11;
    margin-bottom: 4px;
}
.cdev-prev-item__title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cdev-prev-item__scripture {
    font-size: 11px;
    font-style: italic;
    color: rgba(254, 143, 17, 0.7);
    margin: 0 0 4px;
}
.cdev-prev-item__excerpt {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cdev-prev-item__arrow {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.2s;
}
.cdev-prev-item__arrow {
    color: rgba(254, 143, 17, 0.4);
}
.cdev-prev-item:hover .cdev-prev-item__arrow {
    color: #fe8f11;
}

/* ── Top-level tabs ── */
.cdev-tabs {
    display: flex;
    gap: 4px;
    padding: 24px 20px 0;
    background: transparent;
}
.cdev-tab {
    flex: 1;
    padding: 11px 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cdev-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}
.cdev-tab.is-active {
    background: #0facb2;
    border-color: #0facb2;
    color: #ffffff;
}

/* ── Tab panels ── */
.cdev-tab-panel--hidden { display: none !important; }
#cdev-panel-prepare > .cdev-grid { margin-top: 24px; }
#cdev-panel-prepare > .cdev-grid .cdev-card:only-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
}

/* ── Reading Plan ── */
.crp-intro {
    padding: 24px 20px 8px;
}
.crp-intro__text {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin: 0 0 16px;
}


/* Week accordion */
.crp-week {
    margin: 12px 20px 0;
    background: rgba(10, 7, 4, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.crp-week--active {
    opacity: 1;
    border-color: rgba(15, 172, 178, 0.2);
}
.crp-week__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}
.crp-week__header:hover { background: rgba(255, 255, 255, 0.03); }
.crp-week__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.crp-week__num {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0facb2;
}
.crp-week__title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}
.crp-week__subtitle {
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}
.crp-week__chevron {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.3);
    transition: transform 0.25s;
}
.crp-week__header[aria-expanded="true"] .crp-week__chevron {
    transform: rotate(180deg);
}

/* Week body */
.crp-week__body {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s;
    opacity: 1;
}
.crp-week__body.is-collapsed {
    max-height: 0;
    opacity: 0;
    border-top-color: transparent;
}

/* Day row */
.crp-day {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}
.crp-day:last-child { border-bottom: none; }
.crp-day { opacity: 0.25; }
.crp-day--today { opacity: 1; background: rgba(15, 172, 178, 0.08); border-left: 3px solid #0facb2; }
.crp-day--past { opacity: 0.35; }

/* Day number */
.crp-day__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 2px;
}
.crp-day--today .crp-day__num {
    background: #0facb2;
    border-color: #0facb2;
    color: #fff;
}

/* Day content */
.crp-day__content { flex: 1; min-width: 0; }
.crp-day__top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}
.crp-day__date {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}
.crp-day__today-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #0facb2;
    background: rgba(15, 172, 178, 0.12);
    border: 1px solid rgba(15, 172, 178, 0.25);
    padding: 2px 8px;
    border-radius: 4px;
}
.crp-day__passage {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 2px;
}
.crp-day__thought {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    font-style: italic;
}

/* Last week spacing */
.crp-week:last-child { margin-bottom: 60px; }

/* ── Desktop ── */
@media (min-width: 640px) {
    .cdev-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 32px 80px;
    }
    .cdev-filters { padding: 28px 32px 20px; }
    .cdev-nav-logo { width: clamp(110px, 14vw, 160px); }
    .cdev-tabs { padding: 28px 32px 0; }
    .crp-intro { padding: 24px 32px 8px; }
    .crp-week { margin-left: 32px; margin-right: 32px; }
}
@media (min-width: 1024px) {
    .cdev-grid { grid-template-columns: repeat(3, 1fr); }
}
