.events {
    padding: 90px 20px;
    background: var(--bg-events);
    text-align: center;
}

.events-card {
    max-width: 680px;
    margin: 40px auto 0;
}

.event-item {
    background: var(--white);
    padding: 26px 22px;
    border-radius: 18px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.event-name {
    margin-bottom: 6px;
}

.event-date {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.event-time {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 10px;
}

.event-location {
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 12px;
}

.event-address {
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.75;
    margin-bottom: 12px;
}

.maps-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 14px;
    font-size: 0.75rem;
    border-radius: 999px;
    background: var(--bt-btn-1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.maps-button:hover {
    background: #222;
    color: var(--white);
}

.event-dresscode {
    margin-top: 14px;
    font-size: 0.75rem;
    opacity: 0.8;
}

.event-notes {
    margin-top: 10px;
    font-size: 0.75rem;
    font-style: italic;
    opacity: 0.7;
}

.divider-floral {
    margin: 10px 0 40px;
    font-size: 1.2rem;
    opacity: 0.3;
}

.event-item.empty {
    background: transparent;
    box-shadow: none;
}

.no-event {
    font-size: 0.85rem;
    opacity: 0.6;
}

.event-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--bt-btn-2);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.event-icon i {
    font-size: 26px;
    color: var(--white);
}

.gcalendar-wrapper {
    text-align: center;
    margin: 1.5rem 0 2rem 0;
}

.gcalendar-btn {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem 1rem 1rem;
    border: solid 1px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

.gcalendar-btn:hover {
    opacity: 0.8;
}

.gcalendar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 1.2em;
    height: 1.2em;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}