.school-showcase {
    --ink: #0f2a4a;
    --muted: #64748b;
    --line: #dbe5f2;
    --paper: #ffffff;
    --soft: #edf6ff;
    --navy: #06458b;
    --blue: #0b63d1;
    --sky: #18a7f3;
    --green: #059669;
    --gold: #ffd24a;
    --rose: #e11d48;
    --violet: #7c3aed;
    --card-shadow: 0 12px 28px rgba(15, 42, 74, .07);
    --card-shadow-hover: 0 18px 38px rgba(15, 42, 74, .11);
    color: var(--ink);
    background:
        linear-gradient(180deg, #eef7ff 0%, #f8fbff 22%, #f5f8fc 100%);
}

.school-showcase a {
    text-decoration: none;
}

.showcase-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #063c83;
    border-bottom: 5px solid var(--gold);
}

.showcase-hero-media {
    position: absolute;
    inset: 0;
}

.showcase-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 47, 104, .92) 0%, rgba(6, 69, 139, .74) 46%, rgba(6, 69, 139, .22) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(0, 42, 96, .48));
}

.showcase-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: end;
    padding-top: 58px;
    padding-bottom: 34px;
}

.showcase-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 210, 74, .18);
    color: rgba(255, 255, 255, .9);
    font-size: .82rem;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.showcase-hero h1 {
    margin: 18px 0 14px;
    max-width: 820px;
    color: #fff;
    font-size: clamp(2.05rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.showcase-hero-lead {
    max-width: 640px;
    color: rgba(255, 255, 255, .82);
    font-size: 1.02rem;
    line-height: 1.85;
    margin: 0 0 24px;
}

.showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 11px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: .92rem;
    font-weight: 800;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.showcase-btn:hover {
    transform: translateY(-2px);
}

.showcase-btn-primary {
    background: #fff;
    color: var(--navy);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .2);
}

.showcase-btn-primary:hover {
    color: var(--navy);
}

.showcase-btn-ghost {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
}

.showcase-btn-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .2);
}

.showcase-hero-panel {
    display: none;
    align-self: end;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
    overflow: hidden;
}

.showcase-panel-head {
    padding: 18px 20px;
    background: linear-gradient(135deg, var(--gold), #f97316);
    color: #1f2937;
}

.showcase-panel-head span {
    display: block;
    font-size: .74rem;
    font-weight: 800;
    opacity: .78;
}

.showcase-panel-head strong {
    display: block;
    margin-top: 3px;
    font-size: 1.1rem;
}

.showcase-panel-body {
    padding: 18px 20px 20px;
}

.showcase-feature-link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--ink);
}

.showcase-feature-link + .showcase-feature-link {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.showcase-feature-link i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
}

.showcase-feature-link:nth-child(2) i { background: var(--green); }
.showcase-feature-link:nth-child(3) i { background: var(--rose); }

.showcase-feature-link strong {
    display: block;
    font-size: .9rem;
    line-height: 1.45;
}

.showcase-feature-link small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .74rem;
    line-height: 1.5;
}

.showcase-quick {
    position: relative;
    z-index: 3;
    margin-top: -22px;
}

.showcase-quick-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.showcase-quick-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--card-shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

button.showcase-quick-card {
    width: 100%;
    border: 1px solid var(--line);
    text-align: left;
}

.showcase-quick-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, .35);
    box-shadow: var(--card-shadow-hover);
    color: var(--ink);
}

.showcase-quick-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--blue);
    flex: 0 0 auto;
}

.showcase-quick-card:nth-child(2) i { background: var(--green); }
.showcase-quick-card:nth-child(3) i { background: var(--gold); }
.showcase-quick-card:nth-child(4) i { background: var(--violet); }
.showcase-quick-card:nth-child(5) i { background: var(--rose); }

.showcase-quick-card strong,
.showcase-quick-card span {
    display: block;
}

.showcase-quick-card strong {
    font-size: .9rem;
    line-height: 1.35;
}

.showcase-quick-card span {
    margin-top: 2px;
    color: var(--muted);
    font-size: .72rem;
}

.showcase-section {
    padding: 34px 0;
}

.showcase-section-soft {
    background:
        linear-gradient(180deg, rgba(241, 247, 255, .82), rgba(255, 255, 255, .78));
}

.showcase-director-strip {
    padding: 38px 0 18px;
    background:
        linear-gradient(180deg, rgba(237, 246, 255, .92), rgba(255, 255, 255, .96));
}

.showcase-director-strip > .container {
    display: flex;
    justify-content: center;
}

.showcase-director-legacy {
    display: none;
}

.showcase-director-stats-only {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.showcase-director-stats-only .showcase-stats-grid {
    width: 742px;
    max-width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(4, 170px);
    gap: 14px;
    justify-content: center;
}

.showcase-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
    margin-bottom: 18px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--card-shadow);
}

.showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1d4ed8;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.showcase-section-title {
    margin: 8px 0 0;
    color: var(--ink);
    font-size: clamp(1.22rem, 2vw, 1.76rem);
    font-weight: 800;
    letter-spacing: 0;
}

.showcase-section-sub {
    max-width: 620px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.75;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-size: .86rem;
    font-weight: 800;
    white-space: nowrap;
}

.showcase-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 20px;
    align-items: start;
}

.showcase-main-news {
    display: none;
    min-height: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(15, 32, 64, .08);
}

.showcase-main-news:hover {
    color: var(--ink);
}

.showcase-news-image {
    height: 255px;
    background: #dbeafe;
}

.showcase-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-news-content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 18px;
}

.showcase-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 800;
}

.showcase-news-content h3 {
    margin: 14px 0 10px;
    font-size: clamp(1.08rem, 1.6vw, 1.42rem);
    font-weight: 800;
    line-height: 1.35;
}

.showcase-news-content p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 16px;
}

.showcase-news-list {
    display: grid;
    gap: 10px;
}

.showcase-list-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 13px;
    align-items: start;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.showcase-list-item:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, .4);
    box-shadow: var(--card-shadow-hover);
    color: var(--ink);
}

.showcase-datebox {
    width: 56px;
    min-height: 56px;
    border-radius: 8px;
    background: #eef2ff;
    color: var(--violet);
    display: grid;
    place-items: center;
    text-align: center;
    font-weight: 800;
    line-height: 1.1;
}

.showcase-datebox small {
    display: block;
    color: #64748b;
    font-size: .65rem;
    margin-top: 2px;
}

.showcase-list-item strong {
    display: block;
    font-size: .86rem;
    line-height: 1.55;
}

.showcase-list-item span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: .74rem;
}

.showcase-portal-sidebar {
    display: grid;
    gap: 12px;
}

.showcase-sidebar-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.showcase-sidebar-title {
    padding: 11px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-size: .82rem;
    font-weight: 800;
    background: #f7fbff;
}

.showcase-sidebar-profile {
    padding-bottom: 14px;
    text-align: center;
}

.showcase-sidebar-profile img {
    display: block;
    width: 132px;
    height: 154px;
    margin: 14px auto 10px;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid #e8f1ff;
    background: #eef6ff;
}

.showcase-sidebar-profile strong {
    display: block;
    padding: 0 12px;
    color: var(--ink);
    font-size: .92rem;
    line-height: 1.45;
}

.showcase-sidebar-profile span {
    display: block;
    margin-top: 4px;
    padding: 0 12px;
    color: var(--muted);
    font-size: .75rem;
}

.showcase-sidebar-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.showcase-sidebar-actions a,
.showcase-sidebar-actions button {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, #ffd24a, #f59e0b);
    font-weight: 800;
    text-align: left;
    box-shadow: var(--card-shadow);
}

.showcase-sidebar-actions button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 12px 26px rgba(37, 99, 235, .2);
}

.showcase-sidebar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-bottom: 1px solid #edf2fb;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 700;
}

.showcase-sidebar-link:last-child {
    border-bottom: 0;
}

.showcase-sidebar-link:hover {
    color: var(--blue);
    background: #f7fbff;
}

.showcase-sidebar-link i {
    color: var(--blue);
}

.showcase-sidebar-stats {
    padding-bottom: 6px;
}

.showcase-sidebar-stats span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 12px;
    color: var(--muted);
    font-size: .78rem;
    border-bottom: 1px solid #edf2fb;
}

.showcase-sidebar-stats span:last-child {
    border-bottom: 0;
}

.showcase-sidebar-stats strong {
    color: var(--violet);
    font-size: .94rem;
}

.showcase-systems {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.showcase-system-card {
    min-height: 164px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--card-shadow);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.showcase-system-card:hover {
    transform: translateY(-3px);
    border-color: rgba(37, 99, 235, .32);
    box-shadow: var(--card-shadow-hover);
    color: var(--ink);
}

.showcase-system-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--navy);
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.showcase-system-card:nth-child(2n) .showcase-system-icon { background: var(--green); }
.showcase-system-card:nth-child(3n) .showcase-system-icon { background: var(--gold); color: #1f2937; }
.showcase-system-card:nth-child(4n) .showcase-system-icon { background: var(--rose); }

.showcase-system-card strong {
    display: block;
    font-size: .95rem;
    line-height: 1.45;
}

.showcase-system-card span {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.55;
}

.showcase-life-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
    gap: 20px;
}

.showcase-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.showcase-gallery-card {
    min-height: 230px;
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: #1f2937;
}

.showcase-gallery-card:hover {
    color: #fff;
}

.showcase-gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.showcase-gallery-card:hover img {
    transform: scale(1.04);
}

.showcase-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, .72) 100%);
}

.showcase-gallery-card-content {
    position: relative;
    z-index: 2;
    padding: 16px;
}

.showcase-gallery-card-content strong {
    display: block;
    font-size: .98rem;
    line-height: 1.45;
}

.showcase-gallery-card-content span {
    display: inline-flex;
    margin-top: 8px;
    font-size: .72rem;
    font-weight: 800;
    color: #fde68a;
}

.showcase-events-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.showcase-events-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: var(--navy);
    color: #fff;
}

.showcase-events-head strong {
    font-size: .98rem;
}

.showcase-events-body {
    padding: 10px;
}

.showcase-empty {
    padding: 30px 16px;
    text-align: center;
    color: var(--muted);
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
}

.showcase-director {
    display: grid;
    grid-template-columns: minmax(260px, .5fr) minmax(0, 1fr);
    gap: 22px;
    align-items: stretch;
}

.showcase-director.showcase-director-stats-only {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.showcase-director-card {
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    padding: 22px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.showcase-director-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(245, 158, 11, .9);
    background: rgba(255, 255, 255, .08);
}

.showcase-director-card span {
    color: #fde68a;
    font-size: .76rem;
    font-weight: 800;
}

.showcase-director-card strong {
    display: block;
    margin-top: 5px;
    font-size: 1.08rem;
}

.showcase-director-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: .84rem;
    line-height: 1.65;
}

.showcase-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.showcase-stat {
    min-height: 146px;
    padding: 20px 16px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid var(--line);
    text-align: center;
    box-shadow: var(--card-shadow);
}

.showcase-stat i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    font-size: 1.22rem;
    box-shadow: 0 12px 24px rgba(11, 99, 209, .22);
}

.showcase-stat strong {
    display: block;
    color: var(--ink);
    font-size: 2rem;
    line-height: 1;
}

.showcase-stat span {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 800;
    line-height: 1.35;
}

.showcase-stat:nth-child(2) i {
    background: linear-gradient(135deg, #059669, #34d399);
    box-shadow: 0 12px 24px rgba(5, 150, 105, .2);
}

.showcase-stat:nth-child(3) i {
    background: linear-gradient(135deg, #f59e0b, #facc15);
    box-shadow: 0 12px 24px rgba(245, 158, 11, .2);
}

.showcase-stat:nth-child(4) i {
    background: linear-gradient(135deg, #e11d48, #fb7185);
    box-shadow: 0 12px 24px rgba(225, 29, 72, .2);
}

.showcase-programs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.showcase-program-card {
    position: relative;
    min-height: 210px;
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #12355b, #2563eb);
    box-shadow: var(--card-shadow);
}

.showcase-program-card:nth-child(2) { background: linear-gradient(135deg, #065f46, #10b981); }
.showcase-program-card:nth-child(3) { background: linear-gradient(135deg, #92400e, #f59e0b); }
.showcase-program-card:nth-child(4) { background: linear-gradient(135deg, #5b21b6, #7c3aed); }

.showcase-program-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    right: -54px;
    bottom: -60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
}

.showcase-program-card i {
    position: relative;
    z-index: 1;
    font-size: 1.8rem;
}

.showcase-program-card strong {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 26px;
    font-size: 1.05rem;
}

.showcase-program-card span {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
    line-height: 1.65;
}

.showcase-final-cta {
    padding: 42px 0 72px;
}

.showcase-cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 28px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(18, 53, 91, .96), rgba(37, 99, 235, .9)),
        url("../images/school-hero.png") center/cover;
    color: #fff;
    box-shadow: var(--card-shadow);
}

.showcase-cta-panel h2 {
    margin: 0;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 800;
}

.showcase-cta-panel p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.7;
}

@media (max-width: 1199.98px) {
    .showcase-news-layout {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .showcase-news-list {
        grid-column: 1;
    }

    .showcase-portal-sidebar {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .showcase-quick-grid,
    .showcase-systems {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .showcase-programs,
    .showcase-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .showcase-hero {
        min-height: auto;
    }

    .showcase-hero-inner,
    .showcase-news-layout,
    .showcase-life-grid,
    .showcase-director,
    .showcase-main-news {
        grid-template-columns: 1fr;
    }

    .showcase-news-list,
    .showcase-portal-sidebar {
        grid-column: auto;
        grid-row: auto;
    }

    .showcase-director-stats-only .showcase-stats-grid {
        width: 354px;
        grid-template-columns: repeat(2, 170px);
    }

    .showcase-hero-inner {
        padding-top: 54px;
    }

    .showcase-quick {
        margin-top: 18px;
    }
}

@media (max-width: 767.98px) {
    .showcase-section {
        padding: 44px 0;
    }

    .showcase-section-head {
        display: block;
    }

    .showcase-section-head .showcase-link {
        margin-top: 12px;
    }

    .showcase-quick-grid,
    .showcase-systems,
    .showcase-gallery-grid,
    .showcase-programs,
    .showcase-stats-grid {
        grid-template-columns: 1fr;
    }

    .showcase-director-stats-only .showcase-stats-grid {
        width: min(100%, 240px);
        grid-template-columns: minmax(170px, 240px);
    }

    .showcase-hero h1 {
        font-size: 2rem;
    }

    .showcase-hero-panel,
    .showcase-main-news,
    .showcase-quick-card,
    .showcase-system-card,
    .showcase-gallery-card,
    .showcase-events-panel,
    .showcase-director-card,
    .showcase-stat,
    .showcase-program-card,
    .showcase-cta-panel {
        border-radius: 8px;
    }

    .showcase-cta-panel {
        grid-template-columns: 1fr;
    }
}
