#experience-list {
    display: flex;
}

.experience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
}

.experience-card:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 6px 24px rgba(44,62,80,0.22);
}

.experience-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    text-align: center;
}

.experience-card a {
    color: #7ec7ff;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.experience-card a:hover {
    color: #fff;
    text-shadow: 0 0 8px #7ec7ff88;
}

.experience-position {
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-align: center;
}

.experience-dates {
    font-size: 0.98rem;
    color: #b3cbe7;
    margin-bottom: 0.5rem;
    text-align: center;
}

.experience-description {
    font-size: 1rem;
    color: #eaf6ff;
    text-align: center;
}