
/* =========================================================
   ABOUT / STATS SECTION
   ========================================================= */

.actor-about-section {
    position: relative;
    padding: 24px 0 48px;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
}

.actor-about-wrap {
    width: min(100% - 48px, 1515px);
    margin: 0 auto;
}

/* Stats bar */
.actor-stats-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0;
    padding: 40px 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg-secondary);
    box-shadow: 0 0 0 1px rgba(184,155,94,.06) inset;
}

.actor-stat {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 24px;
    position: relative;
}

.actor-stat + .actor-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    bottom: 7px;
    width: 1px;
    background: var(--border);
}

.actor-stat-icon {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 33px;
    line-height: 1;
}

.actor-stat-copy {
    min-width: 0;
}

.actor-stat-number {
    display: block;
    min-width: 2ch;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    line-height: 1;
    font-weight: 600;
}

.actor-stat-label {
    display: block;
    margin-top: 7px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.2;
    white-space: nowrap;
}

/* About content */
.actor-about-content {
    display: flex;
    align-items: stretch;
    gap: 42px;
    
    padding: 80px 0;
}

.actor-about-copy {
    flex: 1 1 50%;
    min-width: 0;
    padding: 0 0 0 0;
}

.actor-about-title {
    margin: 0 0 12px;
    color: var(--text-primary);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(31px, 2.35vw, 42px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.8px;
}

.actor-about-text {
    max-width: 760px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.62;
}

.actor-about-text + .actor-about-text {
    margin-top: 18px;
}

.actor-read-more {
    margin-top: 22px;
    min-width: 182px;
    min-height: 43px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid var(--accent);
    border-radius: 5px;
    background: transparent;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: .25s ease;
}

.actor-read-more:hover {
    background: var(--accent);
    color: #fff;
}

.actor-read-more i {
    font-size: 15px;
}

/* About image card */
.actor-about-visual {
    flex: 0 1 52%;
    min-width: 0;
    max-height: 750px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--bg-secondary);
}

.actor-about-visual img {
    width: 100%;
    height: 100%;
    min-height: 305px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.actor-about-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.03) 35%,
        rgba(0,0,0,.72) 100%
    );
    pointer-events: none;
}

.actor-about-quote {
    position: absolute;
    z-index: 2;
    top: 36px;
    right: 35px;
    width: 190px;
    color: #fff;
}

.actor-about-quote-mark {
    display: block;
    color: var(--accent);
    font-family: Georgia, serif;
    font-size: 58px;
    line-height: .55;
}

.actor-about-quote-text {
    margin: 18px 0 16px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.2;
    font-style: italic;
}

.actor-about-quote-line {
    width: 28px;
    height: 1px;
    margin-bottom: 13px;
    background: var(--accent);
}

.actor-about-quote-author {
    color: var(--accent);
    font-size: 9px;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Dark theme: closely follows the supplied reference */
[data-theme="dark"] .actor-about-section {
    background: var(--dark-bg);
    color: var(--dark-heading);
}

[data-theme="dark"] .actor-stats-bar {
    background: var(--dark-card);
    border-color: var(--dark-border);
}

[data-theme="dark"] .actor-stat + .actor-stat::before {
    background: var(--dark-border);
}

[data-theme="dark"] .actor-stat-number,
[data-theme="dark"] .actor-about-title {
    color: var(--dark-heading);
}

[data-theme="dark"] .actor-stat-label,
[data-theme="dark"] .actor-about-text {
    color: var(--dark-body);
}

[data-theme="dark"] .actor-about-visual {
    background: var(--dark-card);
    border-color: var(--dark-border);
}

[data-theme="dark"] .actor-read-more {
    color: var(--dark-heading);
    border-color: var(--dark-accent);
}

[data-theme="dark"] .actor-read-more:hover {
    background: var(--dark-accent);
    color: var(--dark-bg);
}

[data-theme="dark"] .actor-stat-icon,
[data-theme="dark"] .actor-about-quote-mark,
[data-theme="dark"] .actor-about-quote-author {
    color: var(--dark-accent-2);
}

[data-theme="dark"] .actor-about-quote-line {
    background: var(--dark-accent-2);
}

/* Light theme intentionally keeps the same composition,
   using the user's warm ivory / beige / champagne-gold palette. */
[data-theme="light"] .actor-about-section {
    background: var(--bg-primary);
}

[data-theme="light"] .actor-stats-bar {
    background: var(--bg-secondary);
}

[data-theme="light"] .actor-about-title,
[data-theme="light"] .actor-stat-number {
    color: var(--text-primary);
}

[data-theme="light"] .actor-about-text,
[data-theme="light"] .actor-stat-label {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1100px) {
    .actor-about-wrap {
        width: min(100% - 34px, 1515px);
    }

    .actor-stats-bar {
        padding: 14px 10px;
    }

    .actor-stat {
        gap: 10px;
        padding: 0 12px;
    }

    .actor-stat-icon {
        font-size: 27px;
    }

    .actor-stat-number {
        font-size: 25px;
    }

    .actor-stat-label {
        font-size: 10px;
    }

    .actor-about-content {
        gap: 28px;
    }
}

@media (max-width: 900px) {
    .actor-stats-bar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .actor-stat {
        min-height: 72px;
    }

    .actor-stat:nth-child(4)::before {
        display: none;
    }

    .actor-stat:nth-child(4),
    .actor-stat:nth-child(5) {
        margin-top: 12px;
    }

    .actor-stat:nth-child(5) {
        grid-column: 2;
    }

    .actor-about-content {
        flex-direction: column;
    }

    .actor-about-copy,
    .actor-about-visual {
        flex-basis: auto;
        width: 100%;
    }

    .actor-about-visual {
        min-height: 360px;
    }

    .actor-about-visual img {
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    .actor-about-section {
        padding: 18px 0 35px;
    }

    .actor-about-wrap {
        width: min(100% - 28px, 1515px);
    }

    .actor-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px 5px;
    }

    .actor-stat {
        justify-content: flex-start;
        padding: 11px 10px;
        gap: 11px;
    }

    .actor-stat + .actor-stat::before {
        top: 9px;
        bottom: 9px;
    }

    .actor-stat:nth-child(3)::before,
    .actor-stat:nth-child(5)::before {
        display: none;
    }

    .actor-stat:nth-child(4),
    .actor-stat:nth-child(5) {
        margin-top: 0;
    }

    .actor-stat:nth-child(5) {
        grid-column: auto;
    }

    .actor-stat-icon {
        font-size: 22px;
    }

    .actor-stat-number {
        font-size: 21px;
    }

    .actor-stat-label {
        margin-top: 4px;
        font-size: 9px;
        white-space: normal;
    }

    .actor-about-content {
        gap: 24px;
        margin-top: 28px;
    }

    .actor-about-title {
        font-size: 30px;
    }

    .actor-about-text {
        font-size: 14px;
        line-height: 1.58;
    }

    .actor-about-visual {
        min-height: 300px;
    }

    .actor-about-visual img {
        min-height: 300px;
    }

    .actor-about-quote {
        top: 25px;
        right: 22px;
        width: 145px;
    }

    .actor-about-quote-text {
        font-size: 18px;
    }
}
