/* =====================================================
   GLOBAL
===================================================== */

body {
    margin: 0;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #2c3e50;
    background: #fafafa;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #666;
    margin-bottom: 3rem;
}

/* =====================================================
   HOMEPAGE
===================================================== */

.meeting-list {
    display: grid;
    gap: 1rem;
}

.meeting-card {
    display: block;
    padding: 1.5rem;
    border-radius: 14px;
    background: white;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.meeting-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.meeting-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 0.5rem;
}

.meeting-title {
    font-size: 1.2rem;
    font-weight: 700;
}

/* =====================================================
   REVEAL.JS VIDEO SLIDES
===================================================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5vh 1.5vw;
    width: 100%;
    margin-top: 2vh;
}

.video-card {
    background: rgba(245,245,245,0.95);
    border-radius: 12px;
    padding: 1vh;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

}
