/* Topics */
.topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.topic-pill {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 6px 16px;
    border-radius: 24px;
    border: 1px solid var(--color-border-gray);
    background-color: #F7F7F7;
    border-color: #CCCED2;
    color: #27201F;
}

/* Article Header */
.article-header {
    margin-bottom: 32px;
}

.article-title {
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #27201F;
    margin-bottom: 24px;
}

.article-meta {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666666;
}

    .article-meta img {
        width: 16px;
        height: 16px;
        opacity: 0.6;
    }

/* Banner */
.article-banner {
    width: 100%;
    margin-bottom: 36px;
    overflow: hidden;
}

    .article-banner img {
        width: 100%;
        height: auto;
        display: block;
        max-height: 288px;
        object-fit: cover;
    }

@media screen and (max-width: 768px) {
    .article-title {
        font-size: 24px;
    }
}

.page-container {
    width: 100%;
    max-width: 1220px;
    padding: 0;
    margin: 0 auto;
}

@media screen and (max-width: 1268px) {
    .page-container {
        padding: 0 24px;
    }
}
