/* ==========================================================================
   Central ICT Club Bangladesh
   About page
   The hero, stats card, focus cards, and CTA all come from style.css. This
   file only adds the pull quote and the journey timeline.
   ========================================================================== */

/* ---- Story pull quote ------------------------------------------------- */
.quote-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    min-height: 320px;
    padding: clamp(32px, 4vw, 48px);
    border-radius: var(--r-lg);
    background: var(--grad-brand);
    color: var(--white);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}

/* faint circuit texture, same language as the rest of the site */
.quote-card__circuit {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 85% 14%, rgba(255, 255, 255, 0.16), transparent 30%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 56px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 56px);
    pointer-events: none;
}

.quote-card__mark {
    position: relative;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 4.5rem;
    line-height: 0.6;
    opacity: 0.45;
}

.quote-card__text {
    position: relative;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.3rem, 1.1rem + 1vw, 1.7rem);
    line-height: 1.35;
    margin: 0;
}

.quote-card__by {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* ---- Journey timeline ------------------------------------------------- */
.timeline {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

/* the vertical spine, aligned to the centre of the dots */
.timeline::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(var(--green-500), var(--blue-500));
}

.tl-item {
    position: relative;
    padding-left: 44px;
    padding-bottom: 38px;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--green-500);
    box-shadow: 0 0 0 4px rgba(22, 163, 93, 0.15);
}

.tl-year {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: var(--green-600);
    margin-bottom: 6px;
}

.tl-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 8px;
}

.tl-text {
    color: var(--slate-500);
    margin: 0;
}
