/* =========
  Cast Detail Page
  - style.css を前提に追加する専用スタイル
========= */

.crumbs {
    padding: 14px 0 0;
}

.crumb-link {
    color: rgba(242, 251, 255, .86);
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.crumb-link:hover {
    border-color: rgba(168, 220, 255, .35);
    background: rgba(255, 255, 255, .09);
}

.crumb-sep {
    margin: 0 6px;
    color: rgba(242, 251, 255, .60);
}

.crumb-current {
    color: rgba(242, 251, 255, .92);
}

.profile-hero {
    padding: 18px 0 34px;
}

.profile-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 16px;
    align-items: stretch;
}

.profile-photo {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
}

.profile-photo-inner {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    position: relative;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    filter: saturate(1.06) contrast(1.03);
}

.profile-photo-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(520px 260px at 30% 10%, rgba(118, 242, 255, .22), transparent 55%),
        radial-gradient(520px 260px at 80% 20%, rgba(255, 198, 242, .14), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .26));
    pointer-events: none;
}

.profile-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    z-index: 2;
    max-width: calc(100% - 24px);
}

.profile-summary {
    padding: 12px 0;
}

.profile-title-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 6px;
}

.profile-name {
    margin: 0;
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: .06em;
    line-height: 1.05;
}

.profile-ruby {
    color: rgba(242, 251, 255, .70);
    letter-spacing: .14em;
    font-weight: 700;
}

.profile-catch {
    margin: 14px 0 0;
    color: rgba(242, 251, 255, .84);
}

.profile-stats {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat {
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(242, 251, 255, .72);
    letter-spacing: .10em;
}

.stat-value {
    display: block;
    margin-top: 2px;
    font-weight: 900;
}

.profile-cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* social */
.social {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: rgba(242, 251, 255, .92);
}

.social-btn:hover {
    border-color: rgba(168, 220, 255, .38);
    background: rgba(255, 255, 255, .11);
}

.social-ic {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .07);
    font-weight: 900;
}

.social-tx {
    font-size: 13px;
    font-weight: 800;
}

/* layout */
.profile-body {
    padding-top: 44px;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 14px;
    align-items: start;
}

.profile-left {
    display: grid;
    gap: 14px;
}

.profile-right {
    display: grid;
    gap: 14px;
}

.profile-dl {
    margin: 12px 0 0;
}

.profile-dl>div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.profile-dl dt {
    font-weight: 900;
    color: rgba(242, 251, 255, .88);
}

.profile-dl dd {
    margin: 0;
    color: rgba(242, 251, 255, .82);
}

/* recommend */
.recommend-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.recommend-item {
    border-radius: 18px;
    border: 1px solid rgba(168, 220, 255, .22);
    background: rgba(255, 255, 255, .07);
    padding: 14px;
    position: relative;
    overflow: hidden;
}

.recommend-item h3 {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: 900;
}

.recommend-item p {
    margin: 8px 0 0;
    color: rgba(242, 251, 255, .78);
    font-size: 13px;
}

.rec-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    border: 1px solid rgba(118, 242, 255, .45);
    background: linear-gradient(135deg, rgba(118, 242, 255, .22), rgba(184, 255, 231, .12));
}

.rec-badge.pink {
    border-color: rgba(255, 198, 242, .55);
    background: linear-gradient(135deg, rgba(255, 198, 242, .20), rgba(118, 242, 255, .10));
}

/* gallery */
.gallery {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    display: block;
}

/* schedule */
.schedule {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 10px;
}

.schedule li {
    display: grid;
    grid-template-columns: 70px 1fr 54px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
}

.sch-date {
    font-weight: 900;
    color: rgba(242, 251, 255, .92);
}

.sch-time {
    color: rgba(242, 251, 255, .80);
}

.sch-state {
    text-align: center;
    font-weight: 900;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(6, 26, 51, .35);
}

.sch-state.on {
    border-color: rgba(118, 242, 255, .55);
    background: linear-gradient(135deg, rgba(118, 242, 255, .22), rgba(184, 255, 231, .12));
}

.sch-state.off {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .10);
    color: rgba(242, 251, 255, .78);
}

.mini-cta {
    margin-top: 12px;
    display: grid;
    gap: 10px;
}

.tips {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.tips-title {
    margin: 0;
    font-weight: 900;
    letter-spacing: .06em;
}

.tips-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: rgba(242, 251, 255, .80);
}

.tips-list li {
    margin: 6px 0;
}

.sticky-card {
    position: sticky;
    top: 92px;
}

.bottom-cta {
    padding: 0 0 86px;
}

.bottom-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bottom-cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    min-width: 280px;
}

/* responsive */
@media (max-width: 980px) {
    .profile-hero-inner {
        grid-template-columns: 1fr;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .sticky-card {
        position: static;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .recommend-grid {
        grid-template-columns: 1fr;
    }

    .bottom-cta-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .bottom-cta-actions {
        min-width: 0;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }
}