.s2s-calendar-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
    width: 100%;
    max-width: 1440px;
}

.month-column, .event-list {
    display: flex;
    width:100%;
    gap: 1rem;
    align-items: center;
    flex-direction: column;
}
.event-list  {
    gap:0.5rem;
}

.month-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    display:flex;
    width: 100%;
    text-align:left;
}

.event-card {
    display: flex;
    padding:1rem;
    border: 0.5px solid #eee;
    flex-direction: column;
    border-radius: 12px;
    width: 100%;
    transition: all 0.2s ease;
    background-color: #fff;
    align-items: center;
    z-index: 1;
}
.event-card:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(0,0,0,0.15));
    border-color: #ccc;
    z-index: 2;
}
.event-list .event-card:nth-of-type(odd){
    background-color: #fefefe;
}

.event-date {
    font-weight: bold;
    font-size: 1.1rem;
    color: #0073aa;
    min-width: 40px;
    display: none;
}
.event-content {
    display: flex;
    flex-direction: column;
    width:100%;
    text-align: left;
}
.event-content h4 {
    margin: 0 0 1rem 0;
    font-weight: 400;
    text-wrap: balance;
}

.event-content p,
.event-content li,
.event-content ul {
    font-size: 18px;
    font-weight: 100;
    line-height: 1.2em;
    color: #5d677b;
    padding-bottom: 0px;
    margin-bottom: 1rem;
    padding-right: 0px;
    width: 100%;
    text-wrap: balance;
    font-weight: 400;
}
.event-content li {
    margin-bottom: 1rem;
    padding-left: 1em;
}
.event-content ul li:after {
     position: absolute;
    left: 0px;
    background-color: #95c11f;
    width: 0.5em;
    height: 0.5em;
    border-radius: 100%;
    top: 0.35em;
    content: "";
}
.event-content :last-child {
    margin-bottom: 0 !important;
}

.event-content a {
    text-decoration: underline;
}

/* Distinguish between Manual Entries and Posts */
/*.event-card.manual { border-left: 3px solid #ffb900; padding-left: 10px; }*/

.category-badge {
    font-size: 12px;
    text-transform: uppercase;
    padding: 1rem;
    border-radius: 11px 11px 0 0;
    display: inline-block;
    margin-bottom: 5px;
    background: #f2f2f2;
    position: relative;
    margin: calc((1rem + 0.5px) * -1) calc((1rem + 0.5px) * -1) 1rem calc((1rem + 0.5px) * -1);
    width: calc(100% + 2rem);
}

/* Specific Category Styling */
.event-card.cat-workshop .category-badge { background: #e3f2fd; color: #1976d2; }
.event-card.cat-workshop { border-left: 4px solid #1976d2; }

.event-card.cat-social .category-badge { background: #fce4ec; color: #c2185b; }
.event-card.cat-social { border-left: 4px solid #c2185b; }

.event-card.cat-major-event {
    background-color: #3ba8e0 !important;
}
.event-card.cat-major-event * {
    color:#fff;
}
.event-card.cat-major-event .category-badge {
    color:#040404;
}
.event-card.cat-major-event ul li:after {
    background-color: #fff !important;
}