/* ==================== BLOG PAGE ==================== */

/* Hero — igual que .interviews-hero */
.blog-page-hero {
    background: #fff;
    color: #000;
    padding: 60px 20px;
    text-align: center;
    margin-top: 70px;
}

.blog-page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -1px;
    color: #000;
}

/* Section */
.blog-page-section {
    padding: 60px 20px;
    background: #fff;
}

/* Grid — igual que .interviews-grid en interviews-page.css */
.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Card */
.blog-page-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 0;
}

.blog-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Image — aspect ratio 1:1 igual que interviews */
.blog-page-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 2px solid #000;
}

.blog-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.blog-page-card:hover .blog-page-image img {
    transform: scale(1.05);
}

.blog-page-no-image {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

/* Overlay — igual que .interview-overlay */
.blog-page-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    color: #fff;
}

.blog-page-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}

/* Pagination — igual que .pagination-section en interviews-page.css */
.pagination-section .page-numbers {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 5px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pagination-section .page-numbers:hover,
.pagination-section .page-numbers.current {
    background: #333;
}

.pagination-section .page-numbers.dots {
    border: none;
    background: transparent;
    color: #000;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .blog-page-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-page-hero {
        margin-top: 60px;
        padding: 40px 20px;
    }

    .blog-page-hero h1 {
        font-size: 2.5rem;
    }

    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .blog-page-hero {
        margin-top: 55px;
        padding: 30px 15px;
    }

    .blog-page-hero h1 {
        font-size: 2rem;
    }

    .blog-page-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}