/* ============================================================
 * live.css - ライブチャット紹介ページ（/live/）専用
 * ラグジュアリー・ブラック基調、シャンパンゴールドアクセント
 * ============================================================ */

.live-section {
    --live-bg: #050505;
    --live-card-bg: #121212;
    --live-accent: #c5a059;
    --live-text: #ffffff;
    --live-text-muted: #888888;
    --live-pr: #e91e63;

    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0;
    color: var(--live-text);
    background-color: var(--live-bg);
    border-radius: 12px;
}

.live-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    padding: 0 16px;
}

.live-card {
    background: var(--live-card-bg);
    border: 1px solid #222;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.live-card:hover {
    border-color: var(--live-accent);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.15);
    transform: translateY(-5px);
}

/* メイン画像 */
.live-card-thumb {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000;
}

.live-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.live-card-thumb:hover img {
    transform: scale(1.08);
}

/* 本文エリア */
.live-card-body {
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.live-card-name {
    margin: 0;
    font-size: 13px;
    color: var(--live-text-muted);
}

.live-card-name-label {
    color: var(--live-text-muted);
}

.live-card-name a {
    display: inline;
    font-size: 20px;
    color: var(--live-accent);
    font-weight: bold;
    margin-left: 8px;
    text-decoration: none;
}

.live-card-name a:hover {
    color: var(--live-accent);
    text-decoration: underline;
}

.live-card-desc {
    margin: 0;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--live-accent);
    color: #ccc;
    font-size: 13px;
    line-height: 1.7;
    white-space: pre-wrap;
}

/* CTA */
.live-card-cta {
    display: inline-block;
    align-self: flex-end;
    margin-top: auto;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--live-accent), #a48340);
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2);
}

.live-card-cta:hover {
    filter: brightness(1.1) drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
    color: #1a1a1a;
    text-decoration: none;
    transform: scale(1.02);
}

/* ----------------------------------------------------------
 * Mobile
 * ---------------------------------------------------------- */
@media (max-width: 600px) {
    .live-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .live-card-body {
        padding: 14px 18px 18px;
    }
    .live-card-desc {
        font-size: 12.5px;
        padding: 12px 14px;
    }
}
