.hero-highlight-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.highlight-article {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-header {
    margin-bottom: 30px;
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 600;
    color: #1F3B73;
}

.highlight-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    font-style: italic;
    color: #0B1427;
    margin-bottom: 2rem;
}

.highlight-headline {
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 28px;
    margin-bottom: 2rem;
}

.highlight-meta {
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1F3B73;
    text-transform: uppercase;
}

.highlight-meta-date {
    font-weight: 400;
    color: #0B1427;
}

.highlight-meta-mins {
    font-weight: 300;
    color: #0B1427;
}

.highlight-icons div a img {
    font-size: 20px;
    color: #1F3B73;
}

.highlight-feature-image img {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.highlight-content {
    font-family: 'Figtree', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: #363636;
}

.highlight-content img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.highlight-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 equal columns */
    gap: 24px;
    /* space between images */
    margin-top: 40px;
}

.highlight-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .highlight-title {
        font-size: 40px;
    }

    .highlight-subtitle {
        font-size: 36px;
    }

    .highlight-headline {
        font-size: 22px;
    }

    .highlight-content {
        font-size: 20px;
    }

    .highlight-content img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .highlight-gallery {
        grid-template-columns: 1fr;
    }

    .highlight-title {
        font-size: 32px;
    }

    .highlight-subtitle {
        font-size: 28px;
    }

    .highlight-headline {
        font-size: 20px;
    }

    .highlight-content {
        font-size: 18px;
    }

    .highlight-content img {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .highlight-title {
        font-size: 26px;
    }

    .highlight-subtitle {
        font-size: 22px;
    }

    .highlight-headline {
        font-size: 18px;
    }

    .highlight-content {
        font-size: 16px;
    }

    .highlight-content img {
        height: auto;
    }

    .highlight-article {
        padding: 30px 16px;
    }

    .highlight-gallery {
        gap: 16px;
    }
}