/* Article Listing Block */
.article-listing {
    margin: 0;
    padding: 60px 0;
}

.article-listing .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.article-listing .section-header > div {
    flex: 1;
}

.article-listing .section-eyebrow {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-color, #d4a574);
    margin-bottom: 12px;
}

.article-listing .section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark, #1a1a1a);
}

.article-listing .section-title em {
    font-style: italic;
    color: var(--accent-color, #d4a574);
}

.article-listing .view-all {
    display: inline-block;
    color: var(--text-dark, #1a1a1a);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.article-listing .view-all:hover {
    color: var(--accent-color, #d4a574);
}

.article-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* List Layout */
.article-listing-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    grid-template-columns: unset;
}

.article-card-list {
    flex-direction: row;
    height: auto;
    background: var(--bg-light, #f9f7f4);
}

.article-list-row {
    display: flex;
    gap: 24px;
    width: 100%;
    align-items: flex-start;
}

.article-image-list {
    display: block;
    width: 220px;
    min-width: 220px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-image-list .article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-list-content {
    padding: 16px 0;
    flex-grow: 1;
}

.article-card-list .article-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.article-card-list .article-excerpt {
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

/* Card Layout */
.article-card-grid {
    padding: 0;
    background: var(--bg-light, #f9f7f4);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.article-card-list:hover {
    transform: translateX(4px);
}
.article-image-wrapper {
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0d0bb 0%, #d4a574 100%);
    border-radius: 8px 8px 0 0;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-image {
    transform: scale(1.08);
}

.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-color, #d4a574);
    margin-bottom: 12px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark, #1a1a1a);
    margin: 0 0 12px 0;
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray, #666);
    margin: 0 0 16px 0;
    flex-grow: 1;
}

.article-meta {
    font-size: 12px;
    color: var(--text-gray, #999);
    margin-bottom: 16px;
}

.article-link {
    display: inline-block;
    color: var(--text-dark, #1a1a1a);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: var(--accent-color, #d4a574);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-listing {
        padding: 40px 0;
    }

    .article-listing .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .article-listing .section-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .article-listing-grid {
        grid-template-columns: 1fr;

    .article-list-row {
        flex-direction: column;
        gap: 16px;
    }

    .article-image-list {
        width: 100%;
        height: 200px;
        min-width: auto;
    }
        gap: 24px;
    }
}
