.workshop-events {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
    max-width: 100vw;
}

.events {
    display: flex;
    width: 350px;
    height: 150px;
    flex-shrink: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.left {
    width: 80px;
    background: #002D72;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.month {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date {
    font-size: 36px;
    font-weight: bold;
    margin-top: 5px;
}

.right {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin-bottom: 10px;
}

.time {
    font-size: 14px;
    color: #000000;
    display: flex;
    align-items: center;
    font-style: italic;
}

.time::before {
    margin-right: 6px;
}

.workshop-events-wrapper {
    width: 100%;
}

.hidden-card {
    display: none !important;
}

.more-workshops-wrapper {
    display: flex;
    justify-content: center;
    padding: 0px 40px 0px 0px;
}

.more-workshops-btn {
    background-color: #002D72;
    color: white;
    border: none;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.more-workshops-btn:hover {
    background-color: #003d99;
}

.more-workshops-btn:active {
    transform: scale(0.98);
}