.experience-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.experience-box {
    background-color: var(--white);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 6px;
    width: 260px;
    height: 260px;
    
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 30px;
    padding-bottom: 40px;
}
.experience-box .experience-title {
    color: var(--darkMaroon);
    text-align: center;
    font-family: var(--font-AvantGardeDemi);
    font-size: var(--cardHeadingFont);
    font-style: normal;
    font-weight: normal;
    line-height: var(--cardHeadingLh);
}

@media (max-width: 621px) {
    .experience-grid {
        justify-content: center;
    }
}