/* サイドバー全体 */
.sidebar {
    background: #fff;
    /* border-radius: 2.69cqi; */
    border-radius: var(--border-radius-md);
    overflow: hidden;
    --min-size: 16;
    --max-size: 30;
    padding: var(--clamp-size);
    height: fit-content;
}

.sidebar__title {
    --min-size: 17;
    --max-size: 19;
    font-size: var(--clamp-size);
    font-family: var(--fontFamily-en);
    font-weight: var(--fontWeight-bold);
    text-transform: uppercase;
    margin-bottom: 0.5em;
}

.sidebar__widget {
    margin-bottom: var(--space-2xl);

    /* カテゴリー一覧 */
    ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    li {
        --min-size: 15;
        --max-size: 16;
        font-size: var(--clamp-size);;
    }

    a {
        transition: all 0.3s ease;
        cursor: pointer;
    }

    a:hover {
        filter: brightness(1.1);
        transition: all 0.3s ease;
    }
}

/* 2カラムレイアウト用CSS */
.news-archive__container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.news-archive__main {
    flex: 2;
    min-width: 0;
}

.news-archive__sidebar {
    flex: 1;
    min-width: 300px;
}