/* BLOG LAYOUT & EDITORIAL STYLING */

.blog-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.blog-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.blog-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}

.blog-hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(7, 29, 38, 0.8), rgba(7, 29, 38, 0.4));
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
    margin-top: 60px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: #FFFFFF;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.blog-subtitle {
    font-family: var(--font-sans);
    color: #CCCCCC;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1.5px;
}

.blog-section {
    padding: 120px 5%;
    background-color: transparent;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* FEATURED POST */
.featured-post {
    display: flex;
    gap: 80px;
    margin-bottom: 120px;
    align-items: center;
}

.featured-post-img {
    flex: 1.5;
    height: 65vh;
    overflow: hidden;
    position: relative;
}

.featured-post-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-post:hover .featured-post-img img {
    transform: scale(1.05);
}

.featured-post-content {
    flex: 1;
}

.post-category {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 3.1px;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}

.post-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 300;
    color: var(--text-primary);
}

.post-excerpt {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 45.1px;
    font-weight: 300;
}

.read-more-btn {
    border-color: #000;
    color: #000;
}

.read-more-btn:hover {
    background-color: #000;
    color: #FFF;
}

/* BLOG GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card-img {
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1s ease;
    filter: brightness(0.9);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
    filter: brightness(1);
}

.blog-card-content h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 300;
}

.blog-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25.1px;
    color: var(--text-muted);
    font-weight: 300;
}

.post-link {
    font-size: 0.849rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    padding-bottom: 4px;
    display: inline-block;
}

.post-link:hover {
    border-color: var(--text-primary);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .featured-post {
        flex-direction: column;
        gap: 40px;
    }
    .featured-post-img {
        width: 100%;
        height: 50vh;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero {
        height: 50vh;
    }
    .blog-title {
        font-size: 2.8rem;
    }
}
