/* ============================================================
   Pure Fox — ABOUT PAGE
   All colors driven by design tokens (css/base.css :root).
   ============================================================ */

/* ── PAGE HERO (About) ── */
.page-hero {
    background-image: url('../images/banner/banner-1.webp');
}

/* ── STORY SECTION ── */
.story-img-wrap {
    position: relative;
}

.story-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-img-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.story-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-primary);
    color: var(--text-on-dark);
    border-radius: 10px;
    padding: 20px 24px;
    text-align: center;
    min-width: 130px;
    box-shadow: var(--shadow-strong);
    /* subtle continuous float (animations.md: Float Animation — 3s ease-in-out) */
    animation: float 3s ease-in-out infinite;
}

.badge-num {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 700;
    color: var(--color-gold);
}

.badge-label {
    font-size: 12px;
    opacity: 0.85;
    margin-top: 2px;
}

.story-img-small {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 130px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    border: 4px solid var(--surface-card);
    box-shadow: var(--shadow-sm);
}

.story-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── CHECK LIST (2-column grid: 4 points in 2 lines) ── */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-body);
}

.check-list li i {
    color: var(--color-primary);
    font-size: 17px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ── STATS ROW ── */
.stat-box {
    text-align: center;
    padding: 32px 20px;
    border-radius: 10px;
}

.stat-box .num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-box .lbl {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ── TIMELINE ── */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary-soft);
}

.tl-item {
    position: relative;
    margin-bottom: 36px;
}

.tl-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--surface-card);
    box-shadow: 0 0 0 2px var(--color-primary);
    flex-shrink: 0;
}

.tl-year {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.tl-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.tl-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ── VALUES CARD ── */
.value-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 28px 24px;
    background: var(--surface-card);
    height: 100%;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-icon i {
    font-size: 22px;
    color: var(--color-primary);
}