.c-home-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    width: 100%;
}

.c-home-showcase__panel {
    position: relative;
    min-width: 0;
    min-height: 17rem;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-md);
    background: var(--color-surface-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-soft);
}

.c-home-showcase__panel--advertising,
.c-home-showcase__panel--prices {
    display: flex;
    flex-direction: column;
    padding: clamp(1.25rem, 2.2vw, 1.75rem);
}

.c-home-showcase__panel--advertising {
    justify-content: space-between;
    background:
        radial-gradient(
            circle at 90% 15%,
            rgba(255, 255, 255, 0.18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #1d4ed8 0%,
            #2563eb 58%,
            #4f7ff0 100%
        );
    color: #fff;
}

.c-home-showcase__ad-top,
.c-home-showcase__heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-3);
}

.c-home-showcase__ad-label,
.c-home-showcase__best-label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
}

.c-home-showcase__ad-label {
    padding: 0.45rem 0.65rem;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.c-home-showcase__ad-mark {
    flex: 0 0 auto;
    opacity: 0.92;
}

.c-home-showcase__ad-copy {
    display: grid;
    gap: var(--space-2);
    margin-block: var(--space-5);
}

.c-home-showcase__eyebrow {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.c-home-showcase__panel--advertising
.c-home-showcase__eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.c-home-showcase__title,
.c-home-showcase__best-title {
    margin: 0;
    overflow-wrap: anywhere;
    font-size: 1.15rem;
    font-weight: 750;
    line-height: 1.22;
}

.c-home-showcase__text {
    max-width: 27rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    line-height: 1.45;
}

.c-home-showcase__ad-note {
    max-width: 30rem;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.68rem;
    line-height: 1.35;
}

.c-home-showcase__panel--prices {
    gap: var(--space-4);
}

.c-home-showcase__price-icon {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.09);
    color: var(--color-accent-strong);
    font-size: 1rem;
    font-weight: 800;
}

.c-home-showcase__price-list {
    display: grid;
    gap: 0;
}

.c-home-showcase__price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: var(--space-3);
    padding-block: 0.7rem;
    border-bottom: 1px solid rgba(23, 32, 51, 0.07);
    font-size: 0.79rem;
    line-height: 1.3;
}

.c-home-showcase__price-row:last-child {
    border-bottom: 0;
}

.c-home-showcase__price-row span {
    min-width: 0;
    overflow-wrap: anywhere;
    color: var(--color-text-secondary);
}

.c-home-showcase__price-row strong {
    color: var(--color-accent-strong);
    white-space: nowrap;
}

.c-home-showcase__footnote {
    margin: auto 0 0;
    color: var(--color-text-secondary);
    font-size: 0.68rem;
    line-height: 1.35;
}

.c-home-showcase__panel--best-work {
    isolation: isolate;
    min-height: 17rem;
    background: #172033;
}

.c-home-showcase__best-image,
.c-home-showcase__best-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.c-home-showcase__best-image {
    z-index: -2;
    object-fit: cover;
}

.c-home-showcase__best-overlay {
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(10, 18, 34, 0.06) 20%,
            rgba(10, 18, 34, 0.78) 100%
        );
}

.c-home-showcase__best-content {
    display: flex;
    height: 100%;
    min-height: 17rem;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.25rem, 2.2vw, 1.75rem);
    color: #fff;
}

.c-home-showcase__best-label {
    padding: 0.45rem 0.65rem;
    background: rgba(255, 255, 255, 0.92);
    color: #172033;
}

.c-home-showcase__best-title {
    max-width: 26rem;
    color: #fff;
}

.c-home-showcase__best-author {
    margin: var(--space-2) 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.76rem;
}

@media (min-width: 48rem) {
    .c-home-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .c-home-showcase__panel--best-work {
        grid-column: 1 / -1;
    }
}

@media (min-width: 72rem) {
    .c-home-showcase {
        grid-template-columns:
            minmax(0, 1.08fr)
            minmax(0, 0.92fr)
            minmax(0, 1.08fr);
    }

    .c-home-showcase__panel--best-work {
        grid-column: auto;
    }
}
