/* ============================================================
   リアルタイムの質問
   ============================================================ */
.cc-realtime{
    width:100%;
    padding:32px 32px 0;
    box-sizing:border-box;
}
.cc-realtime__inner{
    max-width:1480px;
    margin:0 auto;
    background:#fff;
    border:2px solid #ede9fe;
    border-radius:24px;
    padding:28px 32px;
    box-shadow:0 4px 16px rgba(139,92,246,.06);
}

/* ===== ヘッダー ===== */
.cc-realtime__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:12px;
    margin:0 0 20px;
    padding-bottom:16px;
    border-bottom:2px solid #f5f3ff;
}
.cc-realtime__title{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}
.cc-realtime__title img{
    max-height:48px;
    width:auto;
    height:auto;
}
.cc-realtime__titleIcon{
    font-size:28px;
    color:#7C3AED;
    line-height:1;
}
.cc-realtime__titleText{
    font-size:22px;
    font-weight:900;
    color:#6D28D9;
    letter-spacing:.02em;
}
.cc-realtime__badge{
    display:inline-block;
    padding:3px 10px;
    background:linear-gradient(135deg,#f472b6,#ec4899);
    color:#fff;
    font-size:11px;
    font-weight:800;
    border-radius:999px;
    letter-spacing:.05em;
    box-shadow:0 2px 6px rgba(236,72,153,.3);
}
.cc-realtime__more{
    color:#6D28D9;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
}
.cc-realtime__more:hover{ text-decoration:underline; }

/* ===== リスト ===== */
.cc-realtime__list{
    list-style:none;
    margin:0;
    padding:0;
}
.cc-realtime__item{
    border-bottom:1px solid #f3f4f6;
}
.cc-realtime__item:last-child{
    border-bottom:none;
}
.cc-realtime__link{
    display:grid;
    grid-template-columns:auto 1fr auto;
    gap:14px;
    align-items:center;
    padding:14px 8px;
    text-decoration:none;
    color:inherit;
    transition:background .15s;
}
.cc-realtime__link:hover{
    background:#faf5ff;
    border-radius:12px;
}

/* アバター */
.cc-realtime__avatar{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}
.cc-realtime__avatar img,
.cc-realtime__avatar .anon-qa-avatar{
    width:56px !important;
    height:56px !important;
    border-radius:50%;
}

/* 本文 */
.cc-realtime__body{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:4px;
}
.cc-realtime__meta{
    display:flex;
    align-items:center;
    gap:4px;
    font-size:13px;
    line-height:1.4;
    flex-wrap:wrap;
}
.cc-realtime__name{
    color:#7C3AED;
    font-weight:700;
}
.cc-realtime__sep{
    color:#d1d5db;
}
.cc-realtime__time{
    color:#9ca3af;
    font-size:12px;
}
.cc-realtime__qtitle{
    font-size:15px;
    font-weight:600;
    color:#374151;
    line-height:1.5;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
}

/* 統計 */
.cc-realtime__stats{
    display:flex;
    gap:14px;
    flex-shrink:0;
    align-items:center;
}
.cc-realtime__stat{
    display:inline-flex;
    align-items:center;
    gap:4px;
    color:#9ca3af;
    font-size:14px;
}
.cc-realtime__statIcon{
    font-size:16px;
    line-height:1;
}
.cc-realtime__statNum{
    font-weight:600;
    min-width:14px;
    text-align:left;
}

/* ===== SP ===== */
@media (max-width:768px){
    .cc-realtime{ padding:24px 16px 0; }
    .cc-realtime__inner{ padding:20px 16px; border-radius:16px; }
    .cc-realtime__titleText{ font-size:18px; }
    .cc-realtime__title img{ max-height:36px; }
    .cc-realtime__link{
        grid-template-columns:auto 1fr auto;
        gap:10px;
        padding:12px 4px;
    }
    .cc-realtime__avatar img,
    .cc-realtime__avatar .anon-qa-avatar{
        width:44px !important;
        height:44px !important;
    }
    .cc-realtime__qtitle{ font-size:14px; }
    .cc-realtime__meta{ font-size:12px; }
    .cc-realtime__stats{ gap:10px; }
    .cc-realtime__stat{ font-size:12px; }
}