.showcase-section {
    min-height: 0;
}
.showcase-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}
.showcase-heading p {
    color: #66716d;
    font-size: 14px;
    font-weight: 600;
}
.bento-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.72fr) minmax(360px, 0.86fr);
    grid-template-areas:
        "nebula reso"
        "nebula mint";
    gap: 28px;
}
.product-poster {
    min-width: 0;
}
.product-poster-reso {
    grid-area: reso;
}
.product-poster-mint {
    grid-area: mint;
}
.product-poster-nebula {
    grid-area: nebula;
}
.product-media {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #07080a;
    color: inherit;
}
.product-poster-nebula .product-media {
    aspect-ratio: 16 / 10.35;
}
.product-poster-reso .product-media,
.product-poster-mint .product-media {
    aspect-ratio: 16 / 10.8;
}
.product-media img,
.product-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-poster-reso video {
    object-position: center;
}
.product-poster-mint img {
    object-position: center top;
}
.nebula-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}
.product-copy {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding-top: 16px;
}
.product-copy h1,
.product-copy h2 {
    margin: 0;
}
.product-copy a {
    color: #0d1110;
    font-size: clamp(28px, 3vw, 54px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
}
.product-poster-nebula .product-copy a {
    font-size: clamp(44px, 6.2vw, 96px);
}
.product-copy p {
    max-width: 270px;
    color: #66716d;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    text-align: right;
}
.update-item {
    color: inherit;
}
.update-art {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #dceaff, #cbe4ff 48%, #efd4ec);
    isolation: isolate;
}
.update-art::before,
.update-art::after {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: 0;
    filter: blur(18px);
}
.update-art::before {
    background: radial-gradient(circle at 25% 72%, rgba(69, 152, 255, 0.82), transparent 42%),
        radial-gradient(circle at 82% 18%, rgba(73, 183, 234, 0.72), transparent 34%);
}
.update-art::after {
    background: radial-gradient(circle at 68% 74%, rgba(245, 164, 211, 0.68), transparent 40%),
        linear-gradient(125deg, rgba(255, 255, 255, 0.18), rgba(198, 222, 255, 0.22));
    opacity: 0.9;
}
.art-mint::before {
    background: radial-gradient(circle at 22% 74%, rgba(55, 198, 140, 0.74), transparent 38%),
        radial-gradient(circle at 80% 12%, rgba(151, 220, 255, 0.82), transparent 34%);
}
.art-reso2::before {
    background: radial-gradient(circle at 28% 78%, rgba(89, 157, 255, 0.78), transparent 39%),
        radial-gradient(circle at 76% 28%, rgba(190, 166, 255, 0.78), transparent 35%);
}
.art-company::before {
    background: radial-gradient(circle at 30% 70%, rgba(249, 196, 126, 0.74), transparent 40%),
        radial-gradient(circle at 78% 22%, rgba(143, 204, 255, 0.78), transparent 36%);
}
.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 72px;
    row-gap: 44px;
}
.update-item {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}
.update-art {
    aspect-ratio: 1 / 1;
}
.update-item h3 {
    max-width: 540px;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 650;
}
.update-item p {
    margin-top: 14px;
    color: #66716d;
    font-size: 15px;
}
.product-links {
    display: grid;
}
.product-links a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid #dfe5e1;
    padding: 24px 0;
    color: #0d1110;
    font-size: 44px;
    line-height: 1;
    font-weight: 650;
}
.product-links a:last-child {
    border-bottom: 1px solid #dfe5e1;
}
.product-links span {
    max-width: 360px;
    color: #66716d;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}
@media (max-width: 1120px) {
    .bento-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "nebula nebula"
            "reso mint";
    }
    .updates-grid {
        grid-template-columns: 1fr;
    }
    .product-poster-nebula .product-media {
        aspect-ratio: 16 / 9.6;
    }
    .product-links a {
        align-items: flex-start;
        flex-direction: column;
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    .showcase-section {
        min-height: 0;
    }
    .showcase-heading {
        margin-bottom: 18px;
    }
    .bento-showcase {
        grid-template-columns: 1fr;
        grid-template-areas:
            "nebula"
            "reso"
            "mint";
        gap: 34px;
    }
    .product-poster-reso .product-media,
    .product-poster-mint .product-media,
    .product-poster-nebula .product-media {
        aspect-ratio: 4 / 3;
    }
    .product-copy {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-top: 13px;
    }
    .product-copy p {
        text-align: left;
    }
    .update-item {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 18px;
    }
    .update-item h3 {
        font-size: 19px;
    }
    .product-links a {
        font-size: 34px;
    }
}
