:root {
    --primary-color: #ff5454;
    --primary-soft: #f07267;
    --secondary-color: #1a1a1c;
    --accent-color: #ff8f87;
    --text-light: #ffffff;
    --text-dark: #171718;
    --bg-dark: #101012;
    --bg-card: #17181b;
    --bg-card-soft: #1d1f23;
    --border-color: rgba(255, 84, 84, 0.18);
    --success-color: #3fb980;
    --danger-color: #d95f76;
    --muted-color: #8f8f97;
    --shadow-color: rgba(0, 0, 0, 0.32);
    --panel-outline: rgba(255, 255, 255, 0.05);
}

@font-face {
    font-family: 'Proxima Nova Alt Bold Italic';
    src: url('../font/ProximaNovaAltBoldItalic.otf') format('opentype');
    font-style: italic;
    font-weight: 900;
    font-display: swap;
}

@font-face {
    font-family: 'Proxima Nova';
    src: url('../font/ProximaNovaFont.otf') format('opentype');
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: 'Proxima Nova', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(255, 84, 84, 0.08), transparent 28%),
        linear-gradient(180deg, #101012 0%, #0e0e10 100%);
    color: var(--text-light);
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(70px);
    opacity: 0.28;
}

body::before {
    top: -80px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: rgba(255, 84, 84, 0.24);
}

body::after {
    right: 8%;
    bottom: 8%;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    background: rgba(255, 118, 118, 0.12);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px;
    position: relative;
    z-index: 1;
}

.auth-wrap {
    width: 100%;
    max-width: 520px;
}

.auth-card,
.panel-card,
.stat-card {
    background: linear-gradient(180deg, rgba(27, 27, 30, 0.98), rgba(20, 20, 24, 0.98));
    border: 1px solid var(--panel-outline);
    border-radius: 18px;
    box-shadow: 0 24px 60px var(--shadow-color);
}

.auth-card {
    padding: 36px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #2f191b;
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 12px;
    font-family: 'Proxima Nova Alt Bold Italic', serif;
    font-size: 64px;
    line-height: 0.96;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 12px;
    font-family: 'Proxima Nova Alt Bold Italic', serif;
    font-size: 36px;
    line-height: 1;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
}

p {
    color: var(--muted-color);
    line-height: 1.6;
    font-size: 16px;
}

.alert {
    margin: 20px 0;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 14px;
}

.alert.error {
    background: rgba(217, 95, 118, 0.14);
    border: 1px solid rgba(217, 95, 118, 0.32);
    color: #ffd6de;
}

.alert.success {
    background: rgba(63, 185, 128, 0.14);
    border: 1px solid rgba(63, 185, 128, 0.32);
    color: #cef7df;
}

.alert.warning {
    background: rgba(255, 84, 84, 0.08);
    border: 1px solid rgba(255, 84, 84, 0.22);
    color: #ffc6c1;
}

.alert code {
    display: block;
    margin-top: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.22);
    color: #ffd3cf;
    overflow-x: auto;
}

.panel-form {
    display: grid;
    gap: 18px;
}

.panel-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
}

.panel-form span {
    color: #f3f4fb;
}

.panel-form input,
.panel-form select {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #363637;
    color: var(--text-light);
    outline: none;
}

.panel-form input:focus,
.panel-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 84, 84, 0.14);
}

.panel-form select[multiple] {
    min-height: 170px;
    padding: 10px 12px;
}

.panel-form select option {
    padding: 10px 12px;
}

.select-dropdown {
    position: relative;
}

.select-dropdown[data-disabled="1"] {
    opacity: 0.7;
    pointer-events: none;
}

.select-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 52px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #363637;
    color: var(--text-light);
    cursor: pointer;
    list-style: none;
}

.select-dropdown-trigger::-webkit-details-marker {
    display: none;
}

.select-dropdown[open] .select-dropdown-trigger {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 84, 84, 0.14);
}

.select-dropdown-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 8px;
    max-height: 260px;
    overflow-y: auto;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #232427;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.select-dropdown-option {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
}

.select-dropdown-option:hover {
    background: rgba(255, 84, 84, 0.08);
}

.select-dropdown-option input {
    width: 18px;
    height: 18px;
}

.select-dropdown-empty {
    padding: 10px 12px;
    color: var(--muted-color);
}

.btn,
.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 400;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    font-size: 18px;
}

.btn:hover,
.ghost-link:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(180deg, #ea7a6e 0%, #e76b5f 100%);
    color: #ffffff;
    border-color: #ea7a6e;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #333333;
}

.btn-primary:hover,
.table-action-button:hover {
    background: transparent;
    color: #ea7a6e;
    border-color: #ea7a6e;
    box-shadow: 0 10px 30px rgba(255, 84, 84, 0.24);
}

.btn-secondary:hover,
.ghost-link:hover {
    background: #2a2a2d;
    color: #ffffff;
    border-color: #2a2a2d;
}

.panel-shell {
    display: grid;
    grid-template-columns: 290px 1fr;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 30px 26px;
    background: rgba(16, 16, 18, 0.96);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    position: sticky;
    top: 0;
    height: 100vh;
    min-width: 0;
    overflow: hidden;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    text-align: center;
}

.brand strong,
.user-chip strong {
    display: block;
}

.brand small,
.user-chip small {
    color: var(--muted-color);
}

.brand-mark,
.user-avatar {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
}

.brand-mark {
    overflow: hidden;
    box-shadow: 0 0 18px rgba(255, 84, 84, 0.18);
}

.brand-logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 0 10px rgba(255, 84, 84, 0.22));
}

.user-avatar {
    background: linear-gradient(180deg, var(--primary-soft), var(--primary-color));
    color: #ffffff;
    font-weight: 800;
}

.brand strong {
    font-family: 'Proxima Nova Alt Bold Italic', serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    text-align: center;
}

.brand strong span {
    color: #ffffff;
}

.brand small {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.sidebar-section-label {
    color: #666666;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sidebar-nav {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 0;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    color: #666666;
    font-size: 18px;
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
    background: rgba(255, 84, 84, 0.12);
    color: #ffffff;
}

.sidebar-footer {
    display: grid;
    gap: 16px;
    margin-top: auto;
    min-width: 0;
}

.user-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    min-width: 0;
    overflow: hidden;
}

.user-chip > div {
    min-width: 0;
    flex: 1;
}

.user-chip strong,
.user-chip small {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.ghost-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    width: 100%;
}

.main-content {
    padding: 36px;
    position: relative;
    min-width: 0;
}

.page-header {
    margin-bottom: 24px;
}

.page-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.hero-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-footnote,
.activity-main span {
    color: var(--muted-color);
}

.compact-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-grid,
.content-grid {
    display: grid;
    gap: 20px;
}

.stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
}

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

.stat-card,
.panel-card {
    padding: 24px;
}

.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: auto -30px -50px auto;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(255, 84, 84, 0.06);
}

.stat-card-accent {
    border-color: rgba(255, 84, 84, 0.18);
    background:
        radial-gradient(circle at top right, rgba(255, 84, 84, 0.16), transparent 45%),
        rgba(27, 27, 30, 0.98);
}

.stat-label {
    display: block;
    margin-bottom: 12px;
    color: var(--muted-color);
    font-size: 14px;
}

.stat-card strong {
    font-family: 'Proxima Nova Alt Bold Italic', serif;
    font-size: 36px;
    font-style: italic;
    font-weight: 900;
}

.stat-compact {
    font-size: 24px !important;
    line-height: 1.3;
    word-break: break-word;
}

.panel-list {
    margin: 0;
    padding-left: 20px;
    color: var(--muted-color);
    line-height: 1.9;
}

.dashboard-card {
    min-height: 100%;
}

.card-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.text-link {
    color: var(--accent-color);
    font-weight: 700;
}

.text-link:hover {
    color: var(--text-light);
}

.activity-list,
.calendar-entry-list {
    display: grid;
    gap: 14px;
}

.activity-item,
.calendar-entry-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-main {
    min-width: 0;
}

.activity-main strong {
    display: block;
    margin-bottom: 6px;
}

.activity-main span {
    display: block;
    overflow-wrap: anywhere;
}

.activity-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.empty-state-inline {
    align-items: flex-start;
    flex-direction: column;
}

.calendar-form {
    margin-bottom: 20px;
}

.calendar-month-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 10px 0 14px;
}

.calendar-month-header h2,
.calendar-month-header h3 {
    margin: 0;
    font-size: 26px;
    font-family: 'Proxima Nova Alt Bold Italic', serif;
    font-style: italic;
    text-transform: uppercase;
}

.calendar-month-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 15px;
}

.calendar-weekdays,
.calendar-month-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.calendar-weekdays {
    margin-bottom: 10px;
}

.calendar-weekdays span {
    display: block;
    padding: 8px 10px;
    color: var(--muted-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calendar-month-grid {
    margin-bottom: 20px;
}

.calendar-day-cell {
    min-height: 134px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.03);
}

.calendar-day-cell.is-outside {
    opacity: 0.38;
}

.calendar-day-cell.is-today {
    border-color: rgba(255, 84, 84, 0.28);
    box-shadow: 0 0 0 1px rgba(255, 84, 84, 0.16) inset;
}

.calendar-day-number {
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
}

.calendar-day-entry {
    display: block;
    margin-bottom: 8px;
    padding: 7px 9px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.35;
    color: #ffffff;
}

.calendar-category-plugin_update {
    background: rgba(90, 156, 255, 0.14);
    border: 1px solid rgba(90, 156, 255, 0.24);
}

.calendar-category-plugin_release {
    background: rgba(255, 84, 84, 0.14);
    border: 1px solid rgba(255, 84, 84, 0.22);
}

.calendar-category-coding {
    background: rgba(74, 220, 153, 0.14);
    border: 1px solid rgba(74, 220, 153, 0.22);
}

.calendar-category-release {
    background: rgba(255, 132, 92, 0.14);
    border: 1px solid rgba(255, 132, 92, 0.22);
}

.calendar-category-serverwartung {
    background: rgba(255, 180, 84, 0.14);
    border: 1px solid rgba(255, 180, 84, 0.22);
}

.calendar-category-teammeeting {
    background: rgba(145, 96, 255, 0.14);
    border: 1px solid rgba(145, 96, 255, 0.22);
}

.calendar-category-intern {
    background: rgba(132, 132, 148, 0.16);
    border: 1px solid rgba(132, 132, 148, 0.24);
}

.calendar-category-pill.calendar-category-plugin_update,
.calendar-category-pill.calendar-category-plugin_release,
.calendar-category-pill.calendar-category-coding,
.calendar-category-pill.calendar-category-release,
.calendar-category-pill.calendar-category-serverwartung,
.calendar-category-pill.calendar-category-teammeeting,
.calendar-category-pill.calendar-category-intern {
    color: #ffffff;
}

.calendar-day-entry:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.calendar-day-entry span {
    display: block;
}

.calendar-category-pill {
    width: fit-content;
}

.calendar-month-grid .calendar-day-entry {
    text-decoration: none;
}

.calendar-list-wide {
    margin-top: 20px;
}

.calendar-category-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.calendar-category-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    font-size: 13px;
}

.calendar-category-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.calendar-dot-plugin_update {
    background: #5a9cff;
}

.calendar-dot-plugin_release {
    background: #ff5454;
}

.calendar-dot-coding {
    background: #4adc99;
}

.calendar-dot-release {
    background: #ff845c;
}

.calendar-dot-serverwartung {
    background: #ffb454;
}

.calendar-dot-teammeeting {
    background: #9160ff;
}

.calendar-dot-intern {
    background: #848494;
}

.calendar-entry-item {
    align-items: flex-start;
}

.calendar-entry-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 0 0 78px;
    width: 78px;
    min-height: 78px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 84, 84, 0.12);
    border: 1px solid rgba(255, 84, 84, 0.18);
    text-align: center;
}

.calendar-entry-date strong {
    margin: 0;
    font-family: 'Proxima Nova Alt Bold Italic', serif;
    font-size: 28px;
    line-height: 1;
    font-style: italic;
    font-weight: 900;
    color: #ffffff;
}

.calendar-entry-date span {
    margin: 0;
    color: var(--muted-color);
    font-size: 12px;
    line-height: 1;
}

.calendar-entry-content {
    min-width: 0;
    flex: 1;
}

.calendar-entry-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.calendar-entry-content strong {
    display: block;
    margin: 0;
    overflow-wrap: anywhere;
}

.calendar-category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.calendar-entry-content span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted-color);
}

.calendar-entry-meta {
    overflow-wrap: anywhere;
}

.calendar-entry-content p {
    margin-bottom: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.panel-form textarea {
    width: 100%;
    min-height: 140px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: #363637;
    color: var(--text-light);
    outline: none;
    resize: vertical;
}

.panel-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 84, 84, 0.14);
}

.checkbox-row {
    display: flex !important;
    align-items: center;
    gap: 12px;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.version-grid {
    align-items: start;
}

.table-card {
    overflow: hidden;
}

.table-wrap {
    overflow-x: auto;
}

.panel-table {
    width: 100%;
    border-collapse: collapse;
}

.panel-table th,
.panel-table td {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
}

.panel-table th {
    color: var(--accent-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.panel-table td {
    color: #edf0fa;
}

.table-action-link {
    color: var(--primary-color);
    font-weight: 400;
}

.table-action-link:hover {
    color: var(--text-light);
}

.table-action-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.25);
}

.table-action-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.table-action-group form {
    margin: 0;
}

.table-action-button {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.18s ease;
}

.table-action-button.danger {
    border-color: rgba(217, 95, 118, 0.28);
    background: rgba(217, 95, 118, 0.12);
    color: #ffd1da;
}

.version-changelog-cell {
    min-width: 260px;
    line-height: 1.7;
    white-space: normal;
}

.muted-copy {
    color: var(--muted-color);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-active {
    background: rgba(63, 185, 128, 0.16);
    color: #9ef0c6;
}

.status-inactive {
    background: rgba(217, 95, 118, 0.16);
    color: #ffb7c4;
}

@media (max-width: 1120px) {
    .stats-grid,
    .content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 920px) {
    .panel-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        gap: 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        position: static;
        top: auto;
        height: auto;
    }

    .sidebar-nav {
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .stats-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .auth-shell,
    .main-content {
        padding: 20px;
    }

    .auth-card,
    .stat-card,
    .panel-card {
        padding: 20px;
        border-radius: 16px;
    }

    .stats-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .page-header-row,
    .form-actions,
    .form-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

    .card-header-row,
    .activity-item,
    .activity-meta,
    .calendar-entry-item {
        flex-direction: column;
        align-items: stretch;
    }

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

    h1 {
        font-size: 42px;
    }
}
