.showcase-page {
    padding: clamp(54px, 7vw, 92px) 0 96px;
    background:
        radial-gradient(circle at 10% 0%, rgba(18, 61, 106, .08), transparent 32%),
        linear-gradient(180deg, #f8fafc 0%, #fff 38%, #fff 100%);
    min-height: 65vh;
}

.showcase-hero {
    max-width: 840px;
    margin: 0 auto clamp(38px, 6vw, 64px);
    text-align: center;
}

.showcase-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 13px;
    margin-bottom: 16px;
    border: 1px solid color-mix(in srgb, var(--site-primary, #123d6a) 22%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--site-primary, #123d6a) 8%, white);
    color: var(--site-primary, #123d6a);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
}

.showcase-hero h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.04em;
}

.showcase-hero p {
    max-width: 720px;
    margin: 20px auto 0;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

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

.showcase-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.showcase-card[href]:hover {
    color: inherit;
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--site-primary, #123d6a) 28%, #e5e7eb);
    box-shadow: 0 20px 48px rgba(15, 23, 42, .12);
}

.showcase-media {
    display: grid;
    place-items: center;
    min-height: 180px;
    padding: 26px;
    background: linear-gradient(145deg, #fff, #f8fafc);
    border-bottom: 1px solid #eef2f7;
}

.showcase-media img {
    display: block;
    width: 100%;
    height: 128px;
    object-fit: contain;
    object-position: center;
}

.showcase-placeholder {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 24px;
    background: color-mix(in srgb, var(--site-primary, #123d6a) 10%, white);
    color: var(--site-primary, #123d6a);
    font-size: 40px;
    font-weight: 900;
}

.showcase-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 22px 22px;
    text-align: center;
}

.showcase-copy h2 {
    margin: 0;
    color: #111827;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.showcase-subtitle {
    display: block;
    margin-top: 7px;
    color: var(--site-primary, #123d6a);
    font-size: 13px;
    font-weight: 700;
}

.showcase-copy p {
    margin: 12px 0 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
}

.showcase-link-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    color: var(--site-primary, #123d6a);
    font-size: 13px;
    font-weight: 800;
}

.showcase-layout-cards .showcase-media {
    min-height: 220px;
    padding: 0;
    background: #f1f5f9;
}

.showcase-layout-cards .showcase-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.showcase-layout-cards .showcase-copy {
    text-align: left;
}

.showcase-layout-cards .showcase-link-label {
    justify-content: flex-start;
}

.showcase-layout-compact .showcase-card {
    flex-direction: row;
    align-items: center;
}

.showcase-layout-compact .showcase-media {
    min-width: 120px;
    min-height: 120px;
    width: 120px;
    padding: 18px;
    border-right: 1px solid #eef2f7;
    border-bottom: 0;
}

.showcase-layout-compact .showcase-media img {
    height: 82px;
}

.showcase-layout-compact .showcase-copy {
    text-align: left;
}

.showcase-layout-compact .showcase-link-label {
    justify-content: flex-start;
}

.showcase-empty {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 28px;
    text-align: center;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 24px;
}

.showcase-empty i {
    display: block;
    margin-bottom: 14px;
    color: var(--site-primary, #123d6a);
    font-size: 38px;
}

.showcase-empty h2 {
    margin: 0 0 8px;
    color: #111827;
    font-size: 24px;
    font-weight: 850;
}

.showcase-empty p {
    margin: 0;
    color: #64748b;
}

@media (max-width: 1199.98px) {
    .showcase-grid { grid-template-columns: repeat(min(var(--showcase-columns), 3), minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .showcase-page { padding-top: 42px; }
    .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .showcase-media { min-height: 138px; padding: 18px; }
    .showcase-media img { height: 96px; }
    .showcase-copy { padding: 15px; }
    .showcase-copy h2 { font-size: 15px; }
    .showcase-layout-cards .showcase-media,
    .showcase-layout-cards .showcase-media img { height: 160px; min-height: 160px; }
    .showcase-layout-compact .showcase-card { flex-direction: column; }
    .showcase-layout-compact .showcase-media { width: 100%; min-width: 0; min-height: 130px; border-right: 0; border-bottom: 1px solid #eef2f7; }
    .showcase-layout-compact .showcase-copy { text-align: center; }
}

.showcase-card-clickable {
    cursor: pointer;
}
.showcase-card-clickable .showcase-media,
.showcase-card-clickable .showcase-media img,
.showcase-card-clickable .showcase-copy {
    pointer-events: none;
}
.showcase-card-clickable:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--site-primary, #123d6a) 48%, white);
    outline-offset: 4px;
}
