.blog-page-header {
    padding: 80px 20px 40px;
    max-width: 1261px;
    margin: auto;
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
}

.blog-page-content {
    padding: 60px 0 40px;
    background-color: #fff;
}

.blog-inner {
    width: 100%;
    max-width: 1261px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-page-header .page-title {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 15px 0;
    color: #000;
    letter-spacing: -1px;
}

.blog-page-header .page-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    width: 100%;
}

.news-img-link {
    display: block;
    overflow: hidden;
    margin-bottom: 20px;
    text-decoration: none;
}

.news-img-wrap {
    width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #f5f5f5;
    position: relative;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

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

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.news-date {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.news-title {
    margin: 0 0 10px 0;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 400;
}

.news-title a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.news-title a:hover {
    color: #555;
}

.news-excerpt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.news-more-link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    margin-top: auto;
}

.news-more-text {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.news-arrow {
    font-size: 24px;
    line-height: 1;
    color: #111;
    font-weight: 400;
    transform: translateX(0);
    transition: transform 0.3s ease, color 0.3s ease;
    margin-top: -4px;
}


.news-more-link:hover .news-arrow {
    transform: translateX(5px);
    color: #8a0014;
}

.blog-pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.blog-pagination .nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #e5e5e5;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.blog-pagination .page-numbers.current {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.blog-pagination .page-numbers:not(.current):hover {
    border-color: #000;
    color: #000;
}

@media (min-width: 768px) {
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .blog-page-header {
        text-align: left;
        padding: 80px 0 40px;
    }

    .blog-page-header .page-subtitle {
        margin: 0;
    }
}