.page-blog__hero-section {
    background-color: #0A0A0A;
    color: #FFF6D6;
    padding: 10px 0 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-blog__hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-blog__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFF6D6;
}

.page-blog__description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-blog__articles-section {
    background-color: #0A0A0A;
    padding: 60px 20px;
    color: #FFF6D6;
}

.page-blog__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #F2C14E;
}

.page-blog__articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-blog__article-card {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-blog__article-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.page-blog__article-image {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-blog__article-content {
    padding: 20px;
}

.page-blog__article-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFF6D6;
    line-height: 1.4;
}

.page-blog__article-title:hover {
    color: #F2C14E;
}

.page-blog__article-excerpt {
    font-size: 0.95rem;
    color: #FFF6D6;
    line-height: 1.5;
    margin-bottom: 15px;
}

.page-blog__article-date {
    font-size: 0.85rem;
    color: #FFD36B;
}

.page-blog__pagination {
    text-align: center;
    margin-top: 50px;
}

.page-blog__load-more-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog__load-more-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

@media (max-width: 849px) {
    .page-blog__hero-section {
        padding-left: 12px;
        padding-right: 12px;
    }
    .page-blog__hero-content {
        padding: 0 12px;
    }
    .page-blog__articles-grid {
        grid-template-columns: 1fr;
        padding: 0 12px;
    }
    .page-blog__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-blog__hero-image,
    .page-blog__article-image {
        max-width: 100%;
        height: auto;
    }
    .page-blog__articles-section {
        padding-left: 12px;
        padding-right: 12px;
        overflow-x: hidden;
    }
    .page-blog__article-card {
        width: 100%;
    }
}

@media (max-width: 549px) {
    .page-blog__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog__description {
        font-size: 1rem;
    }
    .page-blog__section-title {
        font-size: 1.8rem;
    }
    .page-blog__article-title {
        font-size: 1.3rem;
    }
    .page-blog__article-image {
        height: 180px;
    }
}