.ws-wrapper-290f928a {
    font-family: sans-serif;
    text-align: center;
    padding: 80px 20px;
    background: #F7F4EE; /* Updated background color */
    width: 100%;
}

.ws-header {
    margin-bottom: 70px;
}

.ws-subtitle {
    color: #c4a165;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ws-title {
    color: #0d1b2a;
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 35px 0;
}

.ws-divider {
    width: 100px;
    height: 4px;
    background: #c4a165;
    margin: 0 auto;
}

.ws-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 30px;
    width: 100%;
    max-width: 1800px; /* Increased from 1600px to allow larger cards */
    margin: 0 auto;
}

.ws-card {
    background: #1e3a5f;
    border-radius: 20px;
    padding: 60px 30px 40px 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 2px solid transparent;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.ws-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.ws-card-highlight {
    background: #0d1b2a;
    border-color: #c4a165;
    z-index: 2;
}

.ws-highlight-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #c4a165;
    color: #0d1b2a;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.ws-card-pretitle {
    color: #c4a165;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ws-card-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 40px 0;
    word-break: break-word;
}

.ws-card-time {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 24px;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.ws-card-highlight .ws-card-time {
    background: #1b2a3a;
    color: #c4a165;
}

.ws-day {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
}

.ws-hour {
    font-size: 18px;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .ws-cards-container {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .ws-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ws-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .ws-wrapper-290f928a {
        padding: 60px 15px;
    }

    .ws-cards-container {
        grid-template-columns: 1fr;
    }

    .ws-title {
        font-size: 32px;
    }
    
    .ws-card {
        padding: 50px 20px 30px 20px;
        min-height: auto;
    }
}