/* ===== HERO SECTION ===== */

.hero-latest {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Category */
.hero-category {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Title */
.hero-title-link {
    text-decoration: none !important;
}

.hero-title-link h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

/* Remove blue underline */
.hero-title-link:hover {
    text-decoration: none;
}

/* Meta */
.hero-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Excerpt */
.hero-excerpt {
    font-size: 16px;
    color: #333;
    max-width: 600px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-latest {
        flex-direction: column;
    }

    .hero-title-link h1 {
        font-size: 32px;
    }
}