.we-workshop-events {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100vw;
    justify-content: space-between;
}

@media (max-width: 467px) {
  .we-workshop-events {
    flex-direction: column;
    align-content: center;
  }

}

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

@media (max-width: 467px) {
  .we-events {
    width: 100%;
  }
}

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

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

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

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

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

.we-title a {
    text-decoration: none;
}

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

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

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

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

.we-more-workshops-wrapper {
    display: flex;
    justify-content: center;
}

.we-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;
    margin-left: auto;
}

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

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