﻿:root {
    --brand: #0067b8;
    --brand-dark: #005a9e;
    --brand-light: #deecf9;
    --text: #1a1a1a;
    --text-secondary: #505050;
    --muted: #5f6368;
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --bg-hero: #0a1628;
}
.section--community-bg {
    background: linear-gradient(135deg, #d4edda 0%, #e8f4ec 30%, #f0f7f4 60%, #f5f9f7 100%);
}
.section-bg1 {
    background: #0a1628;
}
.section__title {
    color: var(--text);
}
.section__lead {
    color: var(--text-secondary);
}
/* ===== Event Card ===== */

.event-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 24px;
    align-items: start;
    padding: 24px;
    background: var(--card-bg);
    transition: box-shadow var(--transition);
}

    .event-card:hover {
        box-shadow: var(--card-shadow);
    }

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    background: var(--brand);
    color: #fff;
    border-radius: var(--radius);
    text-align: center;
    line-height: 1.2;
}

.event-date__month {
    text-transform: uppercase;
}

.event-date__day {
    font-weight: 700;
}

.event-date__year {
    opacity: 0.8;
}
.event-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    
}

.event-tag--microsoft {
    background: var(--brand-light);
    color: var(--brand-dark);
}

.event-tag--council {
    background: #e8f5e9;
    color: #2e7d32;
}

.event-tag--community {
    background: #fff3e0;
    color: #c04400;
}

.event-tag--council-member {
    background: #e0f2f1;
    color: #00695c;
}

.event-tag--other {
    background: #f3e5f5;
    color: #6a1b9a;
}
.community-section {
    background: linear-gradient(135deg, #d4edda 0%, #e8f4ec 30%, #f0f7f4 60%, #f5f9f7 100%);
   
}
.community-pane {
    background: rgba(255, 255, 255, 0.75);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    
}

    .schedule-table th,
    .schedule-table td {
        text-align: left;
       
    }

    .schedule-table thead th {
        background: var(--bg-alt);
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .schedule-table.table tr:last-child td, .schedule-table.table tr:last-child th {
        border-bottom-color: #d2d2d2;
    }

.event-banner {
    background: linear-gradient(135deg, #d4edda 0%, #e8f4ec 30%, #f0f7f4 60%, #f5f9f7 100%);
}
.archive-tag--community {
    color: rgb(21, 101, 192);
    background: rgb(227, 242, 253);
}
.archive-tag--handson {
    color: rgb(198, 40, 40);
    background: rgb(252, 228, 236);
}
.archive-tag--meetup {
    background: #e8f5e9;
    color: #2e7d32;
}
.archive-tag--seminar {
    color: rgb(106, 27, 154);
    background: rgb(243, 229, 245);
}

.archive-tag--workshop {
    background: #fff3e0;
    color: #c04400;
}
    @media (max-width: 768px) {
        .event-card {
            grid-template-columns: 80px 1fr;
        }
    }

    @media (max-width: 480px) {
        .event-card {
            grid-template-columns: 1fr;
        }

        .event-date {
            flex-direction: row;
            gap: 8px;
            width: fit-content;
        }

        .direction-item {
            grid-template-columns: 1fr;
        }

        .direction-item__icon {
            width: 36px;
            height: 36px;
            font-size: 16px;
        }
    }