/* =========================
   ABOUT ME — TOP PROFILE + ROLLOUT CONTENT
========================= */

.page-about-rollout .about-top-section {
    margin-bottom: 28px;
}

.page-about-rollout .about-profile-photo-wrap {
    max-width: 320px;
}

.page-about-rollout .about-profile-photo {
    display: block;
    width: 100%;
    height: auto;
}

/* separator */
.page-about-rollout .about-rollout-separator {
    height: 1px;
    margin: 20px 0 0 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(243,211,124,0.38),
        transparent
    );
}



/* controller */
.page-about-rollout .about-rollout-control {
    margin-bottom: 18px;
}

.page-about-rollout .about-rollout-controller-card {
    position: relative;
    overflow: hidden;
}

.page-about-rollout .about-rollout-toggle {
    min-width: 220px;
}

/* collapse wrapper */
.page-about-rollout .about-rollout-collapse {
    margin-top: 0;
}

.page-about-rollout .about-rollout-panel {
    margin-top: 0px;
}

/* content */
.page-about-rollout .about-rollout-content {
    max-width: 980px;
    margin: 0 auto;
}

.page-about-rollout .about-rollout-quote {
    margin-bottom: 10px;
    padding: 18px 22px;

    border-radius: 16px;

    background: linear-gradient(
        180deg,
        rgba(18,18,18,0.96),
        rgba(10,10,10,0.98),
        rgba(6,6,6,0.99)
    );

    border: 1px solid rgba(243,211,124,0.22);

    box-shadow:
        0 10px 26px rgba(0,0,0,0.24),
        0 0 14px rgba(243,211,124,0.06);
}

.page-about-rollout .about-rollout-quote span {
    display: block;
    color: #f3d37c;
    margin:20px;
    text-align: center;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    text-shadow:
        0 0 6px rgba(243,211,124,0.28);
}

.page-about-rollout .about-rollout-copy .copy {
    margin-bottom: 18px;
}

.page-about-rollout .about-rollout-subblock {
    position: relative;
}

.page-about-rollout .about-rollout-actions {
    display: flex;
    justify-content: center;
}

/* dot list */
.page-about-rollout .prime-dot-list {
    margin: 0;
    padding: 0;
    list-style: none;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.page-about-rollout .prime-dot-list li {
    position: relative;
    padding-left: 22px;

    color: rgba(255,255,255,0.88);
    line-height: 1.65;
}

.page-about-rollout .prime-dot-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;

    width: 8px;
    height: 8px;
    border-radius: 50%;

    background: #f3d37c;

    box-shadow:
        0 0 8px rgba(243,211,124,0.30);
}

/* stat cards — slight polish if reused here */
.page-about-rollout .stat-card {
    height: 100%;
}

.page-about-rollout .stat-value {
    line-height: 1.45;
}

.page-about-rollout .stat-card-confidential .stat-value-confidential {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;

    color: rgba(255,255,255,0.82);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);

    font-weight: 600;
    letter-spacing: 0.03em;
}

/* responsive */
@media (max-width: 991px) {
    .page-about-rollout .about-top-section {
        margin-bottom: 22px;
    }

    .page-about-rollout .about-rollout-quote {
        margin-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .page-about-rollout .about-rollout-toggle,
    .page-about-rollout .about-rollout-actions .prime-btn {
        width: 100%;
    }

    .page-about-rollout .about-rollout-quote span {
        font-size: 1rem;
    }
}

.page-about-rollout .about-rollout-quote.about-rollout-quote-artistic .quote-glow-text {
    display: block;
    color: #f3d37c;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
    text-shadow:
        0 0 8px rgba(243,211,124,0.30),
        0 0 18px rgba(243,211,124,0.14);
    animation: artisticQuotePulse 4.2s ease-in-out infinite;
}

