/* Other Articles Section Block Styles */

.other-articles-section {
    background: var(--color-background);
    padding-block: 128px;
    width: 100%;
}

.other-articles-section__container {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: var(--container-padding-outer);
}

/* Section Header */
.other-articles-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    padding-inline: var(--container-padding-inner);
}

.other-articles-section__title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 44px;
    color: var(--color-foreground);
    margin: 0;
    letter-spacing: -0.02em;
}

.other-articles-section__link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-foreground);
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.other-articles-section__link:hover {
    opacity: 0.7;
}

.other-articles-section__link-text {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.05em;
}

.other-articles-section__link-arrow {
    width: 16px;
    height: 16px;
}

.other-articles-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-inline: var(--container-padding-inner);
}

.other-articles-section__article {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.other-articles-section__article-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: opacity 0.2s ease;
}

.other-articles-section__article-link:hover {
    opacity: 0.9;
}

.other-articles-section__article-link:hover .other-articles-section__article-title {
    color: var(--color-primary);
}

.other-articles-section__article-image {
    width: 100%;
    height: 204px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 24px;
    background: var(--color-secondary);
}

.other-articles-section__article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-articles-section__article-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.other-articles-section__article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: #757575;
    letter-spacing: 0.05em;
}

.other-articles-section__article-dot {
    color: #757575;
}

.other-articles-section__article-date,
.other-articles-section__article-category {
    text-transform: uppercase;
}

.other-articles-section__article-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    color: var(--color-secondary-foreground);
    margin: 0;
    white-space: pre-line;
    transition: color 0.2s ease;
}

.other-articles-section__article-description {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--color-secondary-foreground);
    margin: 0;
    white-space: pre-line;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .other-articles-section__title {
        font-size: 30px;
        line-height: 38px;
    }

    .other-articles-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .other-articles-section__header {
        margin-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .other-articles-section {
        padding-block: 80px;
        padding-inline: 16px;
    }

    .other-articles-section__container {
        padding-inline: 0;
    }

    .other-articles-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 60px;
        padding-inline: 0;
    }

    .other-articles-section__title {
        font-size: 32px;
        line-height: 40px;
    }

    .other-articles-section__link-text {
        font-size: 16px;
        line-height: 22px;
    }

    .other-articles-section__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-inline: 0;
    }

    .other-articles-section__article-image {
        height: 360px;
        margin-bottom: 20px;
    }

    .other-articles-section__article-title {
        font-size: 22px;
        line-height: 30px;
    }

    .other-articles-section__article-description {
        font-size: 16px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .other-articles-section {
        padding-block: 60px;
        padding-inline: 16px;
    }

    .other-articles-section__container {
        padding-inline: 0;
    }

    .other-articles-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
        padding-inline: 0;
    }

    .other-articles-section__link-arrow {
        width: 14px;
        height: 14px;
    }

    .other-articles-section__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-inline: 0;
    }

    .other-articles-section__article-image {
        height: 180px;
        margin-bottom: 16px;
        border-radius: 2px;
    }

    .other-articles-section__article-content {
        gap: 12px;
    }

    .other-articles-section__article-meta {
        font-size: 11px;
        line-height: 16px;
        gap: 12px;
    }

}
