.article-hero {
    min-height: 240px;
    padding: 34px 0;
    background-size: cover;
    background-position: center right;
}

.article-hero .shop-hero-content h1 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.18;
}

.article-list-section {
    background: linear-gradient(180deg, #fffaf5 0%, #f8f4ee 100%);
}

.article-toolbar {
    margin-bottom: 24px;
}

.article-toolbar h2 {
    margin: 0 0 4px;
    color: #21151a;
    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.article-grid {
    align-items: stretch;
}

.article-card {
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(42, 24, 30, .08);
}

.article-card:hover {
    transform: translateY(-6px);
}

.article-card-image img {
    height: 230px;
}

.article-card-image::after {
    content: "Read Article";
}

.article-card-body {
    display: flex;
    min-height: 245px;
    flex-direction: column;
}

.article-card-body .product-category {
    width: max-content;
    margin-bottom: 12px;
    text-decoration: none;
}

.article-card-body p {
    flex: 1;
}

.article-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid #efe4dc;
    padding-top: 14px;
    color: #756960;
    font-size: 13px;
}

.article-card-foot a {
    color: #7d1238;
    font-weight: 800;
}

.article-cat-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff3e1;
    color: #7d1238;
    flex: 0 0 auto;
}

.article-empty {
    padding: 48px;
    border: 1px solid #eaded8;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    color: #6c5a52;
}

.article-empty i {
    font-size: 38px;
    color: #c99a2e;
    margin-bottom: 14px;
}

.article-empty h3 {
    margin: 0 0 8px;
    color: #241820;
}

.article-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
}

.article-pagination a {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaded8;
    border-radius: 8px;
    background: #fff;
    color: #7d1238;
    font-weight: 800;
}

.article-pagination a.active,
.article-pagination a:hover {
    background: #7d1238;
    color: #fff;
}

.article-detail-section {
    padding: 54px 0;
    background: linear-gradient(180deg, #fffaf5 0%, #fff 48%, #fff8f1 100%);
}

.article-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 34px;
    align-items: start;
}

.article-main-card,
.article-detail-sidebar .filter-box {
    border: 1px solid #eaded8;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(42, 24, 30, .08);
}

.article-main-card {
    padding: 30px;
}

.article-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    color: #756960;
    font-size: 13px;
}

.article-detail-meta a {
    color: #7d1238;
    font-weight: 800;
}

.article-featured-image {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.article-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    color: #756960;
    font-size: 13px;
}

.article-rich-content {
    color: #4f443e;
    font-size: 15px;
    line-height: 1.9;
}

.article-rich-content h2,
.article-rich-content h3,
.article-rich-content h4 {
    color: #241820;
    font-family: "Playfair Display", serif;
    line-height: 1.25;
}

.article-rich-content img {
    max-width: 100%;
    border-radius: 8px;
}

.article-detail-sidebar {
    position: sticky;
    top: 104px;
}

.recent-article {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #efe4dc;
    color: #2b211d;
    font-weight: 700;
}

.recent-article:last-child {
    border-bottom: 0;
}

.recent-article img {
    width: 68px;
    height: 58px;
    border-radius: 8px;
    object-fit: cover;
}

@media (max-width: 992px) {
    .article-detail-layout {
        grid-template-columns: 1fr;
    }

    .article-detail-sidebar {
        position: static;
    }
}

@media (max-width: 620px) {
    .article-card-image img {
        height: 205px;
    }

    .article-main-card {
        padding: 20px;
    }

    .article-card-foot {
        align-items: flex-start;
        flex-direction: column;
    }
}
