

        .featured-section {
            background-color: #ffffff;
            padding: 60px 0;
        }

        .featured-section .row {
            align-items: center;
        }

        .section-title {
            font-family: 'Libre Baskerville', serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 30px;
            line-height: 1.3;
            color: #19263A;
        }

        .section-description {
            font-size: 1.125rem;
            line-height: 1.8;
            color: #333333;
            margin-bottom: 0;
        }

        .featured-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }

        .featured-label {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            color: #081933;
            display: block;
            margin-bottom: 0.6rem;
        }

        .featured-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .featured-btn {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            border: 1px solid #C29B40;
            background-color: transparent;
            color: #081A33;
            padding: 10px 30px;
            font-size: 0.9375rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .featured-btn:hover {
            background-color: #C29B40;
            color: #ffffff;
            text-decoration: none;
        }

        /* Desktop - max-width 1440px */
        @media (min-width: 992px) {
            .container {
                max-width: 1440px;
            }
        }

        /* Tablet - max-width 1200px */
        @media (max-width: 1200px) and (min-width: 992px) {
            .section-title {
                font-size: 2.25rem;
            }
            .section-description {
                font-size: 1.0625rem;
            }
        }

        /* Mobile - max-width 991px */
        @media (max-width: 991px) {
            .featured-section {
                padding: 40px 0;
            }
            .section-title {
                font-size: 2rem;
                margin-bottom: 20px;
            }
            .section-description {
                font-size: 1rem;
                margin-bottom: 30px;
            }
            .featured-buttons {
                flex-direction: column;
            }
            .featured-btn {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.75rem;
            }
        }
