/* ==========================================
 * talent-minono.css (鷹野芽みのの専用：背景色・テーマカラー設定)
 * ========================================== */

.theme-minono {
    /* 背景色（薄い藍白） */
    --current-background-color: #EBEDF0; 
    
    /* テーマカラー（薄い紫系） */
    --current-theme-color: #ced4ff;
}

/* 名前ロゴの位置・サイズ調整 */
.talent-name {
    text-align: center !important;
    width: 100% !important;
    margin-top: -15px !important;     /* 上部の余白を削ります */
    margin-bottom: -50px !important;   /* マイナスマージンで動画を引き上げ、間隔を大幅に詰めます */
    padding: 0 !important;
    line-height: 1 !important;
}

.talent-name img {
    display: block !important;
    margin: 0 auto !important;
    width: 90% !important;             /* 横幅を全体の90%に設定します */
    max-width: 585px !important;       /* 最大サイズを元の650pxの90%（585px）に制限します */
    height: auto !important;
}

/* 動画エリアの余白リセット */
.embed-responsive {
    margin-top: 0 !important;          /* 上部の余白を完全になくします */
}

/* プロフィール項目 */
.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 700;
}

/* ハッシュタグ */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.tag-item {
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 0.85rem;
    background: #fff;
}
.tag-item.primary-tag {
    background: rgba(168, 159, 205, 0.2);
    border-color: var(--current-theme-color);
    color: #6a5d93;
}

/* 三面図の設定 */
.talent-additional-image-wrapper {
    width: 100% !important;
    text-align: center;
    margin: 20px 0 !important;
}

.talent-additional-image-wrapper img {
    width: auto !important;
    max-width: 100% !important;
    max-height: 70vh !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    /* スマホ表示時はロゴの下のマイナスマージンを解消し、重なりを防ぎます */
    .talent-name {
        margin-bottom: 10px !important;
    }
    .talent-additional-image-wrapper img {
        max-height: 50vh !important;
    }
}