#experience {
    background: #fff;
}

#education {
    background: var(--bg-soft);
}

.exp-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

.exp-item:first-of-type {
    border-top: 1px solid var(--border);
}

.exp-date {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    padding-top: 4px;
    line-height: 1.6;
}

.exp-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.exp-content .position {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.exp-content p {
    font-size: 14px;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.exp-stack {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 12px;
    background: var(--bg-soft);
    border-left: 3px solid var(--text);
    padding: 10px 14px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.exp-stack strong {
    display: block;
    color: var(--text-soft);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.exp-stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.exp-stack-tags span {
    padding: 3px 10px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 11px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.6;
}

.exp-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.exp-bullets li {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    padding-left: 16px;
    position: relative;
}

.exp-bullets li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--text-soft);
    font-weight: 400;
    font-size: 11px;
}

.exp-sub-item {
    margin-top: 20px;
    padding: 16px 18px;
    border-left: 2px solid var(--border);
    background: var(--bg-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.exp-sub-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.exp-sub-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.exp-sub-item .exp-stack {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .exp-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
