/**
 * 関連記事セクション 共通スタイル
 * カルーセル（スナップスクロール）対応
 */

.related-section {
    padding: 80px 0;
    background: #111;
    border-top: 1px solid rgba(203, 161, 99, 0.1);
    overflow: hidden;
}

.related-section h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    text-align: center;
    color: #cba163;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

/* カルーセルコンテナ */
#related-articles-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 20px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* スクロールバーの非表示（モバイル） */
#related-articles-grid::-webkit-scrollbar {
    display: none;
}

/* カードのラッパー */
.related-card-wrapper {
    flex: 0 0 280px;
    scroll-snap-align: center;
    opacity: 0;
    transform: translateY(10px);
}

.related-card {
    display: block;
    height: 100%;
    background: rgba(42, 58, 74, 0.2);
    border: 1px solid rgba(203, 161, 99, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.related-card:hover {
    border-color: #cba163;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(203, 161, 99, 0.2);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-card-content {
    padding: 20px;
}

.related-card-title {
    font-size: 0.95rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* デスクトップ表示（グリッド化） */
@media screen and (min-width: 900px) {
    #related-articles-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 10px;
    }

    .related-card-wrapper {
        flex: none;
    }

    #related-articles-dots {
        display: none !important;
    }
}

/* カルーセルドット（モバイル・タブレット用） */
#related-articles-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(203, 161, 99, 0.2);
    border: 1px solid rgba(203, 161, 99, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background: #cba163;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(203, 161, 99, 0.5);
}

/* ギアの装飾 */
.related-section h2::before,
.related-section h2::after {
    content: '⚙';
    margin: 0 15px;
    font-size: 0.8em;
    opacity: 0.3;
}
