/* CHART LIST */
.chart-section {
    padding: 60px 0 40px
}
.chart-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px
}
.chart-card {
    display: flex;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit
}
.chart-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}
.chart-card-img {
    width: 140px;
    aspect-ratio: 1;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow';
    font-weight: 900;
    font-size: 2.2rem;
    color: #fff;
}
.chart-card-img img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.chart-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center
}
.chart-card-body h3 {
    font-family: 'Barlow';
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px
}
.chart-card-body .date {
    font-size: .82rem;
    color: var(--text-light)
}
.chart-detail {
    padding: 120px 0 40px
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .85rem;
    color: var(--text-light);
    margin-bottom: 32px;
    transition: color .2s
}
.back-link:hover {
    color: var(--main)
}
.article-header {
    text-align: center;
    margin-bottom: 40px
}
.article-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 12px
}
.article-date {
    font-size: .85rem;
    color: var(--text-light)
}
.chart-detail .container{max-width:800px}
.chart-detail .chart-image-wrap {
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
    padding: 24px;
    text-align: center
}
.chart-detail .chart-image-wrap img {
    width: 100%;
    border-radius: 8px
}
@media (max-width: 600px) {
    .chart-card-img {
        width: 100px;
        height: 100px;
        font-size: 1.6rem
    }
}
