/*
 * 記事内 講座案内(CTA) — inc/article-cta.php が出力する .bal-acta 専用。
 * 記事ページは親テーマ(bly)描画のため、子テーマのトークンに依存しない
 * 単独スタイル(リテラル色指定)とする。ブランド色: ネイビー #162a70 / ゴールド #f8cf3f。
 * すべて .bal-acta スコープ配下に限定し、CTAブロック以外へ影響させない。
 */

.bal-acta {
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    line-height: 1.6;
}

.bal-acta *,
.bal-acta *::before,
.bal-acta *::after {
    box-sizing: border-box;
}

/* ---- 冒頭バナー ---- */

.bal-acta--banner {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 28px;
    padding: 12px 16px;
    background: #f3f5fb;
    border-left: 3px solid #162a70;
    border-radius: 0 6px 6px 0;
}

.bal-acta__tag {
    flex-shrink: 0;
    padding: 2px 10px;
    background: #162a70;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 999px;
}

.bal-acta__banner-link {
    color: #162a70;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.bal-acta__banner-link:hover {
    text-decoration: underline;
}

.bal-acta__arrow {
    margin-left: 6px;
    font-weight: 400;
}

/* ---- 末尾カード ---- */

.bal-acta--card {
    margin: 48px 0 8px;
    padding: 24px 24px 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #162a70;
    border-radius: 8px;
}

.bal-acta--card p {
    margin: 0;
}

.bal-acta__label {
    color: #162a70;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.bal-acta__title {
    margin-top: 8px !important;
    color: #162a70;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.bal-acta__lead {
    margin-top: 8px !important;
    color: #4b5563;
    font-size: 14px;
}

.bal-acta__price {
    margin-top: 12px !important;
    color: #1f2937;
    font-size: 18px;
    font-weight: 700;
}

.bal-acta__price del {
    margin-right: 8px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 400;
}

.bal-acta__price ins {
    text-decoration: none;
}

.bal-acta__sale-until {
    margin-top: 2px !important;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 700;
}

.bal-acta__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bal-acta__btn {
    display: inline-block;
    padding: 12px 28px;
    background: #f8cf3f;
    color: #162a70;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: opacity 0.2s ease;
}

.bal-acta__btn:hover {
    opacity: 0.85;
}

.bal-acta__more {
    color: #162a70;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.bal-acta__more:hover {
    text-decoration: underline;
}

/* ---- モバイル ---- */

@media (max-width: 767px) {
    .bal-acta--card {
        padding: 20px 16px 24px;
    }

    .bal-acta__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .bal-acta__btn {
        text-align: center;
    }

    .bal-acta__more {
        text-align: center;
    }
}
