.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: #1A2E1F;
    margin-bottom: 16px;
}

.page-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.blog-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    width: 100%;
    height: 60%;
    overflow: hidden;
    background: #F5F8F6;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #4A7C59;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #1A2E1F;
    margin-bottom: 12px;
}

.blog-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #666;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4A7C59;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    color: #35583F;
    gap: 12px;
}

.blog-loading {
    text-align: center;
    padding: 40px 0;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
}

.page-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--soffalux-primary);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-nav-btn:hover:not(.disabled) {
    background-color: var(--soffalux-primary);
}

.page-nav-btn:hover:not(.disabled) img {
    filter: brightness(0) invert(1);
}

.page-nav-btn.disabled {
    border-color: #ccc;
    opacity: 0.5;
    cursor: not-allowed;
}

.page-nav-btn img {
    width: 20px;
    height: 20px;
    transition: filter 0.3s ease;
}

.page-nav-btn:first-child img {
    transform: rotate(180deg);
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #f0f0f0;
    color: #666;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background-color: rgba(180, 0, 0, 0.1);
    color: var(--soffalux-primary);
}

.page-btn.active {
    background-color: var(--soffalux-primary);
    color: white;
}

@media (max-width: 991px) {
    .page-title {
        font-size: 40px;
        line-height: 48px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .page-header {
        margin-bottom: 40px;
    }

    .page-title {
        font-size: 32px;
        line-height: 40px;
    }

    .page-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .page-title {
        font-size: 28px;
        line-height: 36px;
    }

    .page-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-content {
        padding: 16px;
    }

    .blog-card-title {
        font-size: 18px;
        line-height: 26px;
    }
}