/* Inst配布ページ専用のスタイル */

.inst-download-list {
    list-style: none;
    padding: 0;
}

.inst-download-list li {
    background-color: #f8f9fa;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    margin-bottom: 15px;
    
    /* スマホ向け: 縦並びにする */
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inst-download-list li strong {
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.download-links {
    display: flex;
    gap: 10px; /* ボタン間の隙間 */
}

.download-button {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
}

.download-button:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* ボタンの色分け */
.download-button.wav {
    background-color: var(--color-accent); /* 共通のアクセントカラー (青) */
}
.download-button.mp3 {
    background-color: #5bc0de; /* 水色 */
}
.download-button {
    background-color: #5cb85c; /* デフォルト (緑) */
}

/* PC / タブレット向け */
@media (min-width: 600px) {
    .inst-download-list li {
        flex-direction: row; /* 横並び */
        justify-content: space-between; /* 曲名とボタンを両端に */
        align-items: center;
    }

    .download-links {
        /* PCではボタンサイズを固定 */
        min-width: 160px;
        justify-content: flex-end;
    }
}