/* 例: news.css */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* メイントピックスのグリッド */
.main-topics .topic-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* 1番目を大きく、残りを小さく */
    gap: 20px;
}

/* 画像スタイル */
.main-topic-card .topic-image,
.sub-topic-card .topic-image,
.article-item .article-image {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.main-topic-card .topic-image {
    height: 300px;
}
.sub-topic-card .topic-image {
    height: 150px;
}

/* 最新記事リストのグリッド */
.latest-articles .article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列で並べる */
    gap: 30px;
    margin-top: 40px;
}

.article-item a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #333;
}
.article-item .article-image {
    height: 180px;
    margin-bottom: 10px;
}