/* Hero Section */
.hero-section {
    margin: 4rem 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aa-navy);
    margin-bottom: 2rem;
}

.featured-post {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
}

.featured-content {
    display: flex;
    flex-direction: row;
}

.featured-image {
    width: 60%;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-text {
    width: 40%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--aa-navy);
    margin: 1rem 0;
    line-height: 1.4;
}

.featured-description {
    color: var(--aa-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Categories Section */
.categories-section {
    margin: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 2rem;
}

.category-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--aa-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--aa-gold);
}

.category-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.category-post h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.category-post h3 a {
    color: var(--aa-navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-post h3 a:hover {
    color: var(--aa-gold);
}

.category-post p {
    color: var(--aa-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Recent Posts Section */
.recent-posts {
    margin: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--aa-navy);
    margin-bottom: 2rem;
}

/* Post Meta */
.post-meta {
    color: var(--aa-gray);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media screen and (max-width: 1023px) {
    .featured-content {
        flex-direction: column;
    }

    .featured-image,
    .featured-text {
        width: 100%;
    }

    .featured-image {
        height: 300px;
    }

    .featured-text {
        padding: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .hero-title,
    .section-title {
        font-size: 1.8rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .category-card {
        padding: 1.5rem;
    }
}

