/* =====================================================
   HERO SECTION (FULL WIDTH)
===================================================== */

.home-hero {
    height: 65vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-hero-title {
    font-size: 2.8rem;
    color: #ffffff;
    max-width: 900px;
    padding: 0 1rem;
}


/* =====================================================
   TAGLINE
===================================================== */

.home-tagline {
    padding: 2.5rem 0;
    text-align: center;
}

.home-tagline p {
    font-size: 1.8rem;
    font-weight: 600;
    color: #444;
}

.home-tagline::before {
    content: "";
    width: 150px;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    display: block;
    margin: 0 auto 1.2rem;
}


/* =====================================================
   INTRO SECTION
===================================================== */

.home-intro {
    padding: 4rem 0;
}

.home-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.home-intro-text h3 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #333;
}

.home-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}


/* =====================================================
   INTRO GALLERY
===================================================== */

.home-intro-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 1rem;
}

.home-intro-gallery-item {
    overflow: hidden;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-intro-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-intro-gallery-item:first-child {
    grid-row: span 2;
}

.home-intro-gallery-item:hover img {
    transform: scale(1.05);
}

.home-intro-gallery-item:active {
    transform: scale(0.96);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* =====================================================
   STATS SECTION
===================================================== */

.home-stats-section {
    padding: 4rem 0;
    text-align: center;
}

.home-stats-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #444;
}

.home-stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 6rem;
}

.home-stat-item {
    text-align: center;
}

.home-stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #444;
}

.home-stat-number {
    font-size: 3.8rem;
    font-weight: 700;
    color: #444;
    line-height: 1;
    min-width: 4ch;
    display: inline-block;
}

.home-stat-label {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #555;
}


/* =====================================================
   NEWS SECTION
===================================================== */

.home-news {
    padding: 4rem 0;
}

.home-news-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.home-news-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.home-news-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.home-news-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-news-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.home-news-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.home-news-link {
    margin-top: auto;
    font-size: 0.9rem;
    color: #0992C2;
    text-decoration: none;
}

.home-news-link:hover {
    text-decoration: underline;
}

.home-news-date {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #777;
}

/* =====================================================
   NEWS MORE BUTTON
===================================================== */

.home-news-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-news-more {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: #0992C2;
    border: 2px solid #0992C2;
    border-radius: 5px;
    transition: all 0.25s ease;
}

.btn-news-more:hover {
    background-color: #0992C2;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-news-more:active {
    transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {
    .home-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-intro-grid {
        grid-template-columns: 1fr;
    }

    .home-stats-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-title {
        font-size: 2rem;
    }

    .home-stats-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
}