/* ══ EXPERIENCE ══ */

:root {
    --exp-yellow: #FFF37E;
    --exp-dark:   #111111;
}

.experience-section {
    background: var(--exp-yellow);
    border-bottom: 3px solid var(--black);
}

/* Experience section label: centered */
.exp-label-row {
    padding: 24px 6% 0;
    text-align: center;
}

.experience-section .section-label {
    color: var(--exp-dark);
    border-left-color: var(--exp-dark);
    display: block;
    text-align: center;
    border-left: none;
    padding-left: 0;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
}

.exp-section-title { display: none; }

/* ── Card ── */
.experience-list {
    display: flex;
    flex-direction: column;
}

.experience-item {
    display: flex;
    flex-direction: column;
}

/* Company + tags row */
.exp-card-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 6% 14px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
}

.exp-company-top {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.experience-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.experience-company {
    font-family: var(--f-cond);
    font-weight: 900;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--exp-dark);
    margin: 0;
}

.experience-role {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    color: rgba(0,0,0,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.experience-duration {
    font-family: var(--f-body);
    font-weight: 700;
    font-size: 0.72rem;
    color: rgba(0,0,0,0.5);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.experience-location {
    font-family: var(--f-body);
    font-size: 0.68rem;
    color: rgba(0,0,0,0.38);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.experience-location::before {
    content: '·';
    margin-right: 8px;
    color: rgba(0,0,0,0.25);
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-end;
    align-self: center;
}

.experience-tags .tech-tag {
    font-family: var(--f-mono);
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    background: rgba(0,0,0,0.07);
    color: rgba(0,0,0,0.6);
    border: 1px solid rgba(0,0,0,0.15);
    padding: 3px 10px;
    transition: background 0.15s, color 0.15s;
    cursor: default;
}

.experience-tags .tech-tag:hover {
    background: var(--exp-dark);
    color: var(--exp-yellow);
}

/* Bullets */
.exp-body {
    padding: 4px 6% 20px;
}

.experience-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-points li {
    font-family: var(--f-body);
    font-size: 0.92rem;
    color: rgba(0,0,0,0.72);
    line-height: 1.6;
    padding: 7px 0 7px 22px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    position: relative;
    transition: color 0.14s, padding-left 0.14s;
}

.experience-points li:last-child {
    border-bottom: none;
}

.experience-points li:hover {
    color: rgba(0,0,0,0.95);
    padding-left: 28px;
}

.experience-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 0.78rem;
    color: rgba(0,0,0,0.35);
    line-height: 1.6;
    transition: left 0.14s, color 0.14s;
}

.experience-points li:hover::before {
    left: 5px;
    color: rgba(0,0,0,0.7);
}

.experience-link {
    color: var(--exp-dark);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(0,0,0,0.3);
    padding-bottom: 1px;
    transition: border-color 0.15s;
    user-select: text;
    -webkit-user-select: text;
}

.experience-link:hover { border-color: var(--exp-dark); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .exp-card-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 5% 14px;
    }

    .experience-tags { justify-content: flex-start; align-self: flex-start; }

    .exp-body { padding: 4px 5% 20px; }
}

@media (max-width: 480px) {
    .exp-label-row { padding: 16px 4% 0; }
    .exp-card-left { padding: 12px 4% 10px; }
    .exp-body { padding: 4px 4% 16px; }
    .experience-points li { font-size: 0.88rem; }
}
