.featured_section {
    width: 100%;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 70%, transparent 100%);
}

.featured_inner {
    width: 90%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
}

.section_header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.section_subtitle {
    font-family: var(--text_font);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--accent);
}

.section_title {
    font-family: var(--header_font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text_primary);
}

@media (min-width: 768px) {
    .featured_section {
        padding: 4rem 0;
    }

    .featured_inner {
        width: 85%;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .section_subtitle {
        font-size: 0.85rem;
    }

    .section_title {
        font-size: 1.9rem;
    }
}

@media (min-width: 1024px) {
    .featured_section {
        padding: 5rem 0;
    }

    .featured_inner {
        width: 60%;
        gap: 3rem;
        padding: 0 1vw;
    }

    .section_title {
        font-size: 2.25rem;
    }
}