/* ==========================================================
   ABOUT + CAREER SECTION
   ----------------------------------------------------------
   Left: About Me (paragraphs) | Right: Career Timeline
   50/50 grid with center divider.
   ========================================================== */

.about-career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.about-career-grid > .about-column {
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-career-grid > .about-column .leadership-quote {
    margin-top: auto;
    margin-bottom: auto;
}

.about-career-grid > .career {
    padding-left: 40px;
    border-left: 1px solid rgba(0, 168, 255, .12);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.about-section-title {
    color: white;
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 700;
    letter-spacing: .04em;
}

/* ----- Bemutatkozó bekezdések ----- */

.about-blocks {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-blocks p {
    overflow-wrap: break-word;
    word-break: break-word;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 500;
    text-align: justify;
}

.about-blocks p:first-child {
    color: var(--color-white);
    font-weight: 500;
}

/* ----- Idővonal-címkék ----- */

.career-timeline-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin: 0;
}

.career-timeline-tag {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.career-timeline-item:nth-child(1) .career-timeline-tag {
    color: var(--color-cyan);
    border: 1px solid rgba(63, 210, 255, .3);
    background: rgba(63, 210, 255, .08);
}

.career-timeline-item:nth-child(2) .career-timeline-tag {
    color: var(--color-violet);
    border: 1px solid rgba(154, 107, 255, .3);
    background: rgba(154, 107, 255, .08);
}

.career-timeline-item:nth-child(3) .career-timeline-tag {
    color: var(--color-secondary);
    border: 1px solid rgba(168, 77, 255, .3);
    background: rgba(168, 77, 255, .08);
}
