.featured-experiences {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

/* Desktop-specific styles */
.featured-experiences .experience-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}

/* View More Button Styles */
.view-more-container {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.view-more-btn {
    background-color: black;
    color: white !important;
    border: none;
    padding: 20px 40px;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 0;
    transition: background-color 0.3s ease;
    font-family: sans-serif;
    text-decoration: none;
    display: inline-block;
}

.view-more-btn:visited {
    color: white;
}

.view-more-btn:hover {
    background-color: #333;
}

/* Hidden experiences container - maintain 3-column grid */
.hidden-experiences {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.hidden-experiences .experience-item {
    flex: 1 1 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
}