.yt-feature-frame {
    position: relative;
    padding: clamp(1rem, 2vw, 1.5rem);
    background:
        linear-gradient(135deg, rgba(166, 124, 59, 0.08), rgba(36, 59, 47, 0.04)),
        var(--nfe-surface, #fbf8f1);
    border: 1px solid rgba(36, 59, 47, 0.12);
    box-shadow: 0 20px 40px rgba(18, 27, 22, 0.08);
    overflow: hidden;
}

.yt-feature-frame::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--nfe-gold, #a67c3b), rgba(166, 124, 59, 0));
}

.yt-feature-frame__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
    gap: clamp(1.25rem, 2.5vw, 2rem);
    align-items: center;
}

.yt-feature-frame__content {
    min-width: 0;
    display: grid;
    gap: 1rem;
    align-content: start;
}

.yt-feature-frame__title {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 0.98;
}

.yt-feature-frame__title a {
    color: inherit;
    text-decoration: none;
}

.yt-feature-frame__description,
.yt-feature-frame__link {
    margin: 0;
}

.yt-feature-frame__description {
    max-width: 52ch;
    line-height: 1.65;
    color: var(--nfe-text, #1f261f);
}

.yt-feature-frame__link {
    text-align: right;
}

.yt-feature-frame__media a {
    display: block;
}

.yt-feature-frame__media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    box-shadow: 0 18px 36px rgba(18, 27, 22, 0.14);
}

@media (max-width: 900px) {
    .yt-feature-frame__inner {
        grid-template-columns: 1fr;
    }

    .yt-feature-frame__description {
        max-width: none;
    }
}
