/* More News Section */
.more-news-section {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    /* Ensure background is white or matching design */
    background-color: #ffffff;
}

.more-news-container {
    max-width: 640px;
    /* Match article width */
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    /* Move border here for shorter line */
    padding-top: var(--spacing-2xl);
    /* Add padding inside container */
}

.more-news-title {
    font-size: 1.75rem;
    /* ~28px */
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-primary);
}

.more-news-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.more-news-item {
    display: flex;
    gap: var(--spacing-lg);
    text-decoration: none;
    color: inherit;
    align-items: center;
    /* Center align image and text vertically */
    /* Optional: separator between items except last, but Apple usually separates. */
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--color-border);
}

.more-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.more-news-image-wrapper {
    width: 200px;
    /* Reduced from 280px */
    /* Fixed width for image */
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    /* Or similar landscape ratio */
    overflow: hidden;
    border-radius: var(--radius-md);
    background-color: var(--color-card-bg);
}

.more-news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.more-news-image-wrapper img.fallback {
    opacity: 0.5;
}

.more-news-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--spacing-xs);
}

.more-news-tag {
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xs);
}

.more-news-item .more-news-title {
    /* Override section title style for item title */
    font-size: 1.125rem;
    /* 18px */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);

    /* Limit lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.more-news-date {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 640px) {
    .more-news-item {
        flex-direction: row;
        gap: var(--spacing-md);
        align-items: flex-start;
    }

    .more-news-image-wrapper {
        width: 100px;
        height: 100px; /* Enforce square */
        aspect-ratio: 1 / 1;
        border-radius: var(--radius-sm); /* Slightly tighter radius for small items */
    }

    .more-news-item .more-news-title {
        font-size: 1rem; /* Slightly smaller for mobile list */
        margin-bottom: var(--spacing-2xs); /* Tighter spacing */
        -webkit-line-clamp: 3; /* Keep clamp */
    }
    
    .more-news-content {
        padding-top: 0; /* Remove extra padding since we are top aligning */
        justify-content: flex-start;
    }
}