:root {
    --bg: #f7f8fc;
    --surface: #ffffff;
    --surface-soft: #f1f3f9;
    --text: #171923;
    --text-soft: #6b7280;
    --border: #e5e7eb;
    --primary: #675cff;
    --primary-dark: #5046e5;
    --purple: #8b5cf6;
    --orange: #f59e0b;
    --shadow: 0 10px 30px rgba(20,25,40,.07);
    --shadow-hover: 0 18px 45px rgba(20,25,40,.14);
    --radius: 22px;
    --transition: .3s cubic-bezier(.2,.8,.2,1);
}

body.dark-mode {
    --bg: #0d0f14;
    --surface: #151820;
    --surface-soft: #1c202a;
    --text: #f5f7fb;
    --text-soft: #9ca3af;
    --border: #292e39;
    --shadow: 0 10px 30px rgba(0,0,0,.25);
    --shadow-hover: 0 18px 45px rgba(0,0,0,.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: background var(--transition), color var(--transition);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { border: 0; cursor: pointer; }






/* =========================================================
   SIDEBAR / BRAND / MENU
   One authoritative layout - no conflicting duplicate rules
========================================================= */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;

    width: 260px;
    height: 100vh;

    display: block;

    padding: 28px 18px;

    background: var(--surface);
    border-right: 1px solid var(--border);

    overflow-x: hidden;
    overflow-y: auto;

    scrollbar-width: thin;
}

/* Brand stays in its own row */
.sidebar .brand {
    width: 100%;
    min-width: 0;
    min-height: 58px;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 12px;

    margin: 0 0 18px;
    padding: 0 10px;
}

/* Circular SR logo */
.sidebar .brand-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;
    max-width: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    overflow: hidden;
    border-radius: 50%;

    background: #fff;
    border: 2px solid rgba(103, 92, 255, .16);

    box-shadow: 0 8px 22px rgba(20,25,40,.12);

    transition: transform var(--transition), box-shadow var(--transition);
}

.sidebar .brand-icon img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    border-radius: 50%;
}

.sidebar .brand:hover .brand-icon {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(103,92,255,.22);
}

.sidebar .brand-text {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.sidebar .brand-text h2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: -.4px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar .brand-text span {
    display: block;
    margin-top: 4px;

    color: var(--text-soft);
    font-size: 11px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Menu button is a full-width block UNDER the brand */
.sidebar > .sidebar-menu-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    height: 48px;
    min-height: 48px;

    margin: 0;
    padding: 0 14px;

    position: relative;

    border-radius: 14px;
    border: 1px solid transparent;

    color: var(--text);
    background: var(--surface-soft);

    font-size: 14px;
    font-weight: 700;

    box-sizing: border-box;

    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.sidebar > .sidebar-menu-btn:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            rgba(103,92,255,.11),
            rgba(139,92,246,.08)
        );

    border-color: rgba(103,92,255,.15);

    box-shadow: 0 8px 22px rgba(103,92,255,.10);
}

.sidebar .menu-left {
    display: flex;
    align-items: center;

    gap: 12px;
    min-width: 0;
}

.sidebar .menu-button-icon {
    width: 30px;
    height: 30px;

    min-width: 30px;

    flex: 0 0 30px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--purple)
        );

    font-size: 14px;

    box-shadow: 0 5px 14px rgba(103,92,255,.25);
}

.sidebar .menu-chevron {
    color: var(--text-soft);
    font-size: 12px;

    transition: transform var(--transition);
}

.sidebar .sidebar-menu-btn.open .menu-chevron {
    transform: rotate(180deg);
}

/* Navigation is ALWAYS below the menu button */
.sidebar > .navigation {
    display: block;

    width: 100%;

    max-height: 0;

    margin: 0;
    padding: 0;

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        max-height .4s ease,
        opacity .25s ease,
        transform .3s ease,
        margin .3s ease;
}

.sidebar > .navigation.open {
    display: block;

    width: 100%;

    max-height: 500px;

    margin: 12px 0 0;
    padding: 0;

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* Each link is a separate full-width row */
.sidebar > .navigation .nav-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    min-width: 0;
    height: 46px;
    min-height: 46px;

    margin: 0 0 5px;
    padding: 0 14px;

    border-radius: 14px;

    color: var(--text-soft);

    font-size: 14px;
    font-weight: 600;

    box-sizing: border-box;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.sidebar > .navigation .nav-item:hover {
    color: var(--text);
    background: var(--surface-soft);
    transform: translateX(4px);
}

.sidebar > .navigation .nav-item.active {
    color: var(--primary);

    background:
        linear-gradient(
            90deg,
            rgba(103,92,255,.12),
            rgba(139,92,246,.07)
        );

    box-shadow: inset 3px 0 0 var(--primary);
}

.sidebar > .navigation .nav-icon {
    width: 24px;
    min-width: 24px;

    flex: 0 0 24px;

    display: grid;
    place-items: center;

    font-size: 15px;

    transition: transform var(--transition);
}

.sidebar > .navigation .nav-item:hover .nav-icon {
    transform: scale(1.12);
}

/* Dark mode stays as the last vertical item */
.sidebar > .navigation .theme-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    height: 46px;
    min-height: 46px;

    margin: 7px 0 0;
    padding: 0 14px;

    border-radius: 14px;

    color: var(--text);
    background: var(--surface-soft);

    font-size: 14px;
    font-weight: 600;
    text-align: left;

    box-sizing: border-box;

    transition: var(--transition);
}

.sidebar > .navigation .theme-btn:hover {
    transform: translateX(4px);
    color: var(--primary);
    background: rgba(103,92,255,.09);
}

/* Desktop content leaves room for fixed sidebar */
.main-content {
    width: calc(100% - 260px);

    min-width: 0;
    min-height: 100vh;

    margin-left: 260px;

    padding: 0 42px 50px;

    display: flex;
    flex-direction: column;
}

.main-content {
    width: calc(100% - 260px);

    min-width: 0;
    min-height: 100vh;

    margin-left: 260px;

    padding: 0 42px 50px;

    display: flex;
    flex-direction: column;
}

.top-header { width: 100%; padding: 22px 0 8px; }
.search-wrapper {
    position: relative; width: 100%; height: 56px; display: flex; align-items: center;
    background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
    box-shadow: 0 5px 20px rgba(20,25,40,.04);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.search-wrapper:focus-within { border-color: rgba(103,92,255,.35); box-shadow: 0 8px 30px rgba(103,92,255,.10); transform: translateY(-1px); }
.search-icon { width: 58px; display: grid; place-items: center; color: var(--text-soft); font-size: 24px; }
.search-wrapper input { flex: 1; width: 100%; height: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font-size: 14px; }
.search-wrapper input::placeholder { color: var(--text-soft); opacity: .85; }
.search-clear {
    width: 42px; height: 42px; margin-right: 7px; display: grid; place-items: center;
    border-radius: 12px; color: var(--text-soft); background: transparent; font-size: 20px;
    opacity: 0; pointer-events: none; transition: var(--transition);
}
.search-clear.visible { opacity: 1; pointer-events: auto; }
.search-clear:hover { color: var(--text); background: var(--surface-soft); }

.title-section { margin-top: 35px; margin-bottom: 25px; }
.title-section h1 { margin-top: 6px; font-size: clamp(34px,4vw,48px); line-height: 1; letter-spacing: -2px; }
.section-label { display: inline-block; color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; }
.current-date-time { display: flex; align-items: center; gap: 9px; margin-top: 13px; color: var(--text-soft); font-size: 13px; font-weight: 600; }
.date-separator { color: var(--primary); font-size: 10px; }

.hero {
    position: relative; min-height: 450px; overflow: hidden; border-radius: 30px; padding: 60px;
    display: flex; align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(168,85,247,.25), transparent 35%), radial-gradient(circle at 20% 100%, rgba(103,92,255,.25), transparent 40%), var(--surface);
    border: 1px solid var(--border); box-shadow: var(--shadow);
}
.hero-content { position: relative; z-index: 2; max-width: 580px; }
.eyebrow { color: var(--primary); font-size: 11px; font-weight: 800; letter-spacing: 1.5px; }
.hero h2 { margin-top: 15px; font-size: clamp(38px,5vw,62px); line-height: 1.03; letter-spacing: -3px; }
.hero h2 span { display: block; background: linear-gradient(90deg, var(--primary), var(--purple)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { max-width: 500px; margin-top: 22px; color: var(--text-soft); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.primary-btn, .secondary-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    min-height: 48px; padding: 0 21px; border-radius: 14px; font-size: 13px; font-weight: 750; transition: var(--transition);
}
.primary-btn { color: white; background: linear-gradient(135deg, var(--primary), var(--purple)); box-shadow: 0 10px 25px rgba(103,92,255,.25); }
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(103,92,255,.35); }
.secondary-btn { color: var(--text); background: var(--surface-soft); border: 1px solid var(--border); }
.secondary-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.hero-preview { position: absolute; right: 40px; width: 420px; height: 360px; }
.preview-card {
    position: absolute; width: 240px; height: 300px; overflow: hidden; border: 7px solid var(--surface);
    border-radius: 24px; box-shadow: 0 25px 50px rgba(0,0,0,.2); transition: var(--transition);
}
.preview-card img { width: 100%; height: 100%; display: block; object-fit: cover; }
.preview-one { right: 40px; top: 15px; transform: rotate(9deg); z-index: 1; }
.preview-two { right: 135px; top: 35px; transform: rotate(-4deg); z-index: 2; }
.preview-three { right: 80px; top: 5px; transform: rotate(3deg); z-index: 3; }
.hero-preview:hover .preview-one { transform: rotate(14deg) translate(15px,-5px); }
.hero-preview:hover .preview-two { transform: rotate(-8deg) translate(-15px,5px); }

.section, .page-section { margin-top: 60px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.section-heading h2 { margin-top: 5px; font-size: 26px; letter-spacing: -1px; }
.text-link { color: var(--primary); font-size: 13px; font-weight: 700; }
.photo-count { color: var(--text-soft); font-size: 13px; font-weight: 600; }

.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 17px; }
.category-card {
    position: relative; display: flex; align-items: center; gap: 15px; padding: 22px;
    background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow); transition: var(--transition);
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.category-icon {
    width: 52px; height: 52px; flex-shrink: 0; display: grid; place-items: center; border-radius: 16px;
    color: var(--primary); background: rgba(103,92,255,.11); font-size: 23px;
}
.category-icon.purple { color: var(--purple); background: rgba(139,92,246,.11); }
.category-icon.orange { color: var(--orange); background: rgba(245,158,11,.11); }
.category-info h3 { font-size: 15px; }
.category-info p { margin-top: 4px; color: var(--text-soft); font-size: 12px; }
.card-arrow { margin-left: auto; color: var(--text-soft); transition: var(--transition); }
.category-card:hover .card-arrow { color: var(--primary); transform: translateX(4px); }

.photo-grid {
    display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 230px; gap: 15px;
}
.photo-card {
    position: relative; overflow: hidden; min-height: 220px; border-radius: 20px;
    background: var(--surface); border: 1px solid var(--border); box-shadow: var(--shadow); transition: var(--transition);
}
.photo-card.large { grid-column: span 2; grid-row: span 2; }
.photo-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.photo-card:hover img { transform: scale(1.07); }
.photo-overlay {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 35px 17px 17px; color: white;
    background: linear-gradient(transparent, rgba(0,0,0,.78));
}
.photo-overlay span { display: block; margin-bottom: 3px; font-size: 10px; opacity: .75; }
.photo-overlay strong { font-size: 14px; }

.year-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.year-card {
    overflow: hidden; border-radius: 24px; background: var(--surface); border: 1px solid var(--border);
    box-shadow: var(--shadow); transition: var(--transition);
}
.year-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.year-image { position: relative; height: 280px; overflow: hidden; }
.year-image img { width: 100%; height: 100%; object-fit: cover; transition: .6s ease; }
.year-card:hover .year-image img { transform: scale(1.06); }
.year-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 22px; background: linear-gradient(transparent 45%, rgba(0,0,0,.65)); }
.year-overlay span { color: white; font-size: 38px; font-weight: 800; letter-spacing: -2px; }
.year-content { padding: 20px; }
.year-content h3 { font-size: 20px; }
.year-content p { margin-top: 4px; color: var(--text-soft); font-size: 13px; }
.view-button {
    display: inline-block; margin-top: 17px; padding: 10px 15px; border-radius: 11px;
    color: var(--primary); background: rgba(103,92,255,.09); font-size: 12px; font-weight: 700; transition: var(--transition);
}
.year-card:hover .view-button { color: white; background: var(--primary); }

.month-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.month-card {
    overflow: hidden; border-radius: 20px; background: var(--surface); border: 1px solid var(--border);
    box-shadow: var(--shadow); transition: var(--transition);
}
.month-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.month-image { position: relative; height: 210px; overflow: hidden; }
.month-image img { width: 100%; height: 100%; object-fit: cover; transition: .6s ease; }
.month-card:hover .month-image img { transform: scale(1.07); }
.month-number {
    position: absolute; top: 13px; right: 13px; padding: 7px 9px; border-radius: 9px;
    color: white; background: rgba(0,0,0,.45); backdrop-filter: blur(8px); font-size: 11px; font-weight: 700;
}
.month-content { padding: 17px; display: flex; align-items: center; justify-content: space-between; }
.month-content h3 { font-size: 16px; }
.month-content p { margin-top: 3px; color: var(--text-soft); font-size: 12px; }
.month-content > span { color: var(--primary); font-size: 20px; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin: -4px 0 18px; }
.filter-chip {
    display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px;
    color: var(--text-soft); background: var(--surface-soft); border: 1px solid var(--border); font-size: 11px; font-weight: 700;
}
.filter-chip strong { color: var(--text); }

.empty-state {
    padding: 45px 20px; border: 1px dashed var(--border); border-radius: 20px;
    text-align: center; color: var(--text-soft); background: var(--surface);
}
.hidden { display: none !important; }

.site-footer {
    width: 100%; margin-top: 80px; padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
    gap: 20px; border-top: 1px solid var(--border); color: var(--text-soft); font-size: 11px; font-weight: 600;
}
.site-footer div:last-child { color: var(--primary); text-align: right; }

.viewer-page {
    min-height: 100vh; display: flex; flex-direction: column; background: #08090c; color: white;
}
.viewer-topbar {
    width: 100%; height: 80px; flex-shrink: 0; padding: 0 25px; display: flex; align-items: center;
    justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.back-button {
    padding: 10px 15px; border-radius: 12px; color: rgba(255,255,255,.75);
    background: rgba(255,255,255,.07); font-size: 13px; transition: var(--transition);
}
.back-button:hover { color: white; background: rgba(255,255,255,.13); transform: translateX(-2px); }
.viewer-title { text-align: center; }
.viewer-title span { display: block; color: rgba(255,255,255,.45); font-size: 11px; }
.viewer-title strong { display: block; margin-top: 3px; font-size: 14px; }
.icon-button {
    width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
    color: white; background: rgba(255,255,255,.07); transition: var(--transition);
}
.icon-button:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.viewer-container {
    flex: 1; width: 100%; min-height: calc(100vh - 135px); display: flex; flex-direction: column;
    align-items: center; justify-content: center; padding: 25px;
}
.viewer-image-wrapper {
    width: min(1100px,100%); height: min(72vh,720px); display: flex; align-items: center; justify-content: center;
}
.viewer-image-wrapper img {
    max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,.5); transition: opacity .18s ease;
}
.viewer-controls {
    display: flex; align-items: center; gap: 30px; margin-top: 20px; color: rgba(255,255,255,.55); font-size: 12px;
}
.viewer-control {
    padding: 10px 15px; border-radius: 10px; color: white; background: rgba(255,255,255,.07); transition: var(--transition);
}
.viewer-control:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.viewer-footer {
    min-height: 55px; flex-shrink: 0; padding: 0 25px; display: flex; align-items: center; justify-content: space-between;
    gap: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.45); font-size: 10px;
}
.viewer-footer span:last-child { color: rgba(255,255,255,.65); }

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .hero-preview {
        right: -80px;
        opacity: .45;
    }

    .photo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .month-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    body {
        display: block;
    }

    /* Sticky mobile header/sidebar */
    .sidebar {
        position: sticky;
        top: 0;
        left: auto;

        width: 100%;
        height: auto;
        min-height: 0;

        padding: 18px 16px;

        border-right: 0;
        border-bottom: 1px solid var(--border);

        overflow: visible;
    }

    .sidebar .brand {
        margin-bottom: 16px;
    }

    .sidebar .brand-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        max-width: 42px;
        flex-basis: 42px;
    }

    .main-content {
        width: 100%;
        margin-left: 0;
        padding: 0 22px 40px;
    }

    .hero-preview {
        right: -80px;
        opacity: .45;
    }

    .category-grid,
    .year-grid {
        grid-template-columns: 1fr;
    }

    .month-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .sidebar {
        padding: 16px 14px;
    }

    .sidebar .brand {
        padding: 0 5px;
        min-height: 55px;
    }

    .sidebar .brand-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        max-width: 40px;
        flex-basis: 40px;
    }

    .sidebar .brand-text h2 {
        font-size: 16px;
    }

    .sidebar > .sidebar-menu-btn {
        height: 45px;
        min-height: 45px;
    }

    .main-content {
        width: 100%;
        margin-left: 0;
        padding: 0 14px 35px;
    }

    .top-header {
        padding-top: 18px;
    }

    .search-wrapper {
        height: 52px;
        border-radius: 16px;
    }

    .title-section {
        margin-top: 30px;
    }

    .title-section h1 {
        font-size: 36px;
    }

    .hero {
        min-height: 520px;
        padding: 35px 25px;
        border-radius: 24px;
    }

    .hero h2 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-preview {
        right: -170px;
        bottom: -30px;
        top: auto;
        opacity: .18;
    }

    .section,
    .page-section {
        margin-top: 42px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 10px;
    }

    .photo-card {
        min-height: 170px;
        border-radius: 15px;
    }

    .photo-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .year-image {
        height: 230px;
    }

    .month-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .month-image {
        height: 155px;
    }

    .site-footer {
        margin-top: 55px;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
        font-size: 10px;
    }

    .site-footer div:last-child {
        text-align: left;
    }

    .viewer-topbar {
        height: 70px;
        padding: 0 12px;
    }

    .viewer-container {
        padding: 12px;
    }

    .viewer-image-wrapper {
        height: 70vh;
    }

    .viewer-controls {
        gap: 10px;
    }

    .viewer-footer {
        padding: 14px;
        min-height: auto;
        flex-direction: column;
        align-items: flex-start;
        font-size: 9px;
    }
}

@media (max-width: 420px) {
    .search-icon {
        width: 48px;
    }

    .search-wrapper input {
        font-size: 13px;
    }

    .hero h2 {
        font-size: 34px;
    }

    .photo-grid {
        grid-auto-rows: 155px;
    }

    .month-content {
        padding: 12px;
    }

    .month-content h3 {
        font-size: 14px;
    }
}