.exp-section {
    max-width: 100%;
    margin: 40px auto;
    padding: 50px;
    font-family: system-ui, sans-serif;
    background: var(--secondary);
}

.exp-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.exp-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 50px 20%;
}

.exp-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--background);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px var(--shadow);
}

.exp-logo {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: contain;
    background: var(--background);
    padding: 8px;
}

.exp-details {
    flex: 1;
}

.exp-company {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.exp-company a {
    text-decoration: none;
    color: var(--text);
}

.exp-role {
    font-size: 16px;
    font-weight: 500;
    color: var(--textLighter);
    margin-bottom: 6px;
}

.exp-dates {
    font-size: 14px;
    color: var(--textLighter);
}

/* Mobile layout */
@media (max-width: 600px) {
    .exp-card {
        flex-direction: column;
        text-align: center;
    }
}
