:root {
    --bg: #efe7dc;
    --panel: #fffdf8;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #e7dfd4;
    --brand: #0f766e;
    --brand-dark: #12313a;
    --danger: #dc2626;
    --success: #15803d;
    --warning: #b45309;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at top left, #dcebe4, transparent 34rem), var(--bg);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
}

strong,
span,
p,
h1,
h2,
h3,
h4,
td,
th,
label,
input,
select,
button,
a {
    overflow-wrap: anywhere;
}

body.login-page {
    background: #e9eeeb;
}

.login-shell {
    min-height: calc(100dvh - 44px);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
    align-items: stretch;
    width: 100%;
    margin: 0;
}

.login-copy,
.login-panel {
    width: 100%;
    min-width: 0;
}

.card,
.table-card,
.form-card,
.metric-card,
.hero-card {
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(31, 41, 55, 0.12);
}

.login-copy {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100dvh - 44px);
    padding: 4.5rem 5rem 3.5rem;
    border-left: 8px solid #b96863;
    background: #19363c;
    color: #f8fafc;
}

.login-copy::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 5rem;
    right: -10rem;
    width: 22rem;
    height: 22rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.login-copy::after {
    content: "FIEI";
    position: absolute;
    z-index: -1;
    right: 2rem;
    bottom: 1rem;
    color: rgba(255, 255, 255, 0.035);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 9rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    pointer-events: none;
}

.login-copy-inner {
    display: grid;
    align-content: center;
    gap: 3rem;
    width: min(100%, 760px);
    min-height: 100%;
}

.login-logo-wrapper {
    display: inline-grid;
    place-items: center;
    justify-self: start;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
}

.login-logo {
    width: 310px;
    max-width: 100%;
    display: block;
}

.login-copy-branding {
    display: grid;
    gap: 0.8rem;
    max-width: 690px;
}

.login-copy h1 {
    max-width: 690px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4rem;
    line-height: 1.03;
    letter-spacing: 0;
}

.login-copy p {
    margin: 0;
    color: rgba(248, 250, 252, 0.82);
}

.login-copy .eyebrow {
    margin: 0;
    color: rgba(248, 250, 252, 0.8);
    letter-spacing: 0;
}

.login-university {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 800;
}

.login-lead {
    max-width: 620px;
    margin-top: 0.45rem !important;
    font-size: 1.05rem;
    line-height: 1.65;
}

.login-copy-footer {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.login-copy-footer > span {
    width: 64px;
    height: 2px;
    background: #cf7771;
}

.login-panel {
    display: grid;
    place-items: center;
    min-height: calc(100dvh - 44px);
    padding: 4rem;
    border-left: 1px solid rgba(25, 54, 60, 0.12);
    background: #fbfaf7;
}

.login-panel-inner {
    width: min(100%, 460px);
}

.login-panel-header {
    margin-bottom: 2rem;
}

.login-panel-header .eyebrow {
    margin-bottom: 0.65rem;
    color: var(--brand);
    letter-spacing: 0;
}

.login-panel h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.login-panel-header .muted {
    margin: 0.85rem 0 0;
    max-width: 390px;
    line-height: 1.6;
}

.login-form {
    grid-template-columns: 1fr;
    gap: 1.1rem;
}

.login-form input {
    min-height: 54px;
    border-radius: 8px;
    border-color: rgba(25, 54, 60, 0.2);
}

.login-submit {
    width: 100%;
    min-height: 54px;
    border-radius: 8px;
}

.student-query-access {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(25, 54, 60, 0.13);
}

.student-query-access > span {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.student-query-button {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
}

.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    background: #21303d;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-backdrop {
    display: none;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand);
    font-weight: 900;
}

.brand strong,
.brand small {
    display: block;
}

.sidebar-user {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
}

.sidebar-user h2 {
    margin: 4px 0;
    font-size: 18px;
}

.nav {
    display: grid;
    gap: 8px;
}

.nav-link {
    padding: 13px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
}

.nav-link.is-active,
.nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.logout-link {
    margin-top: auto;
}

.shell-main {
    min-width: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar {
    padding: 28px 32px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 14px;
    background: #21303d;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #fff;
}

.topbar h1,
.page-title {
    margin: 0;
    font-family: Georgia, serif;
    font-size: clamp(28px, 4vw, 34px);
}

.page {
    flex: 1 1 auto;
    padding: 24px 32px 56px;
    display: grid;
    gap: 22px;
}

.eyebrow {
    margin: 0 0 6px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
}

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

.hero-card,
.form-card,
.table-card,
.card {
    padding: 24px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.metric-card {
    padding: 20px;
}

.metric-value {
    margin: 0;
    font-size: 34px;
    font-weight: 900;
}

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

.field-full {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
}

input,
select,
button {
    font: inherit;
}

input,
select {
    min-width: 0;
    width: 100%;
    border: 1px solid #d8d2c9;
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
    color: var(--ink);
}

.btn,
.btn-secondary,
button.btn,
button.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.btn {
    background: var(--brand);
    color: #fff;
}

.btn-secondary {
    background: #ebe8e2;
    color: var(--ink);
}

.button-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.button-row > * {
    max-width: 100%;
}

.table-wrap {
    overflow-x: auto;
    max-width: 100%;
}

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

th,
td {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
    min-width: 0;
}

th {
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
    overflow-wrap: normal;
}

.badge-success {
    color: var(--success);
    background: #dcefe2;
}

.badge-danger {
    color: var(--danger);
    background: #f5dcd8;
}

.badge-warning {
    color: var(--warning);
    background: #f2e3c9;
}

.badge-muted {
    color: #4b5563;
    background: #e5e7eb;
}

.flash {
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800;
}

.flash-success {
    background: #dcefe2;
    color: var(--success);
}

.flash-error {
    background: #f5dcd8;
    color: var(--danger);
}

.public-results {
    margin-top: 20px;
}

body.public-query-page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #edf1ee;
}

.public-query-header {
    flex: 0 0 auto;
    border-top: 6px solid #b96863;
    background: #19363c;
    color: #f8fafc;
}

.public-query-header-inner {
    width: min(100%, 1180px);
    min-height: 118px;
    margin: 0 auto;
    padding: 1.35rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.public-query-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: inherit;
    text-decoration: none;
}

.public-query-logo {
    width: 230px;
    max-width: 100%;
    display: block;
}

.public-query-brand > span {
    width: 1px;
    height: 52px;
    flex: 0 0 1px;
    background: rgba(255, 255, 255, 0.2);
}

.public-query-brand div {
    min-width: 0;
    display: grid;
    gap: 0.3rem;
}

.public-query-brand small {
    color: rgba(248, 250, 252, 0.72);
    font-size: 0.74rem;
}

.public-query-brand strong {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1.12;
}

.public-admin-link {
    min-height: 46px;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.public-admin-link:hover {
    background: rgba(255, 255, 255, 0.09);
}

.public-query-main {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    display: grid;
    align-content: start;
    gap: 2rem;
    flex: 1 1 auto;
}

.public-query-intro {
    max-width: 780px;
}

.public-query-intro .eyebrow {
    margin-bottom: 0.75rem;
    color: var(--brand);
    letter-spacing: 0;
}

.public-query-instruction {
    max-width: 760px;
    margin: 0;
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
}

.public-query-form-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(25, 54, 60, 0.15);
    border-bottom: 1px solid rgba(25, 54, 60, 0.15);
}

.public-query-form {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.8fr) auto;
    align-items: end;
    gap: 1rem;
}

.public-query-form input,
.public-query-form select {
    min-height: 54px;
    border-radius: 8px;
    border-color: rgba(25, 54, 60, 0.2);
}

.public-query-submit .btn {
    min-width: 176px;
    min-height: 54px;
    border-radius: 8px;
}

.public-result-card {
    padding: 1.5rem;
    border-radius: 8px;
    border-color: rgba(25, 54, 60, 0.14);
    box-shadow: 0 14px 34px rgba(31, 41, 55, 0.08);
}

.public-result-card h2 {
    margin-top: 0;
}

.public-query-page .login-footer {
    flex: 0 0 auto;
    margin-top: auto;
    background: #e3e9e5;
    color: rgba(31, 41, 55, 0.62);
    font-weight: 700;
}

.app-footer,
.login-footer {
    text-align: center;
    color: rgba(31, 41, 55, 0.46);
    padding: 16px;
    font-size: 12px;
}

@media (max-width: 1180px) {
    .shell {
        display: block;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 30;
        width: min(82vw, 300px);
        height: 100dvh;
        transform: translateX(-104%);
        transition: transform 180ms ease;
        box-shadow: 20px 0 48px rgba(31, 41, 55, 0.2);
        overflow-y: auto;
    }

    .shell.is-nav-open .sidebar {
        transform: translateX(0);
    }

    .sidebar-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 20;
        width: 100%;
        height: 100%;
        border: 0;
        padding: 0;
        background: rgba(17, 24, 39, 0.38);
        cursor: pointer;
    }

    .shell.is-nav-open .sidebar-backdrop {
        display: block;
    }

    .topbar {
        position: sticky;
        top: 0;
        z-index: 10;
        padding: 16px 18px;
        background: rgba(239, 231, 220, 0.92);
        backdrop-filter: blur(12px);
        align-items: flex-start;
        justify-content: flex-start;
    }

    .nav-toggle {
        display: inline-block;
    }

    .topbar .btn-secondary {
        margin-left: auto;
    }

    .page {
        padding: 18px 16px 36px;
        gap: 16px;
    }
}

@media (max-width: 900px) {
    .metrics-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .form-card,
    .table-card,
    .card,
    .metric-card {
        border-radius: 18px;
        padding: 20px;
    }

    .metrics-grid {
        gap: 12px;
    }

    .button-row {
        align-items: stretch;
    }

    .button-row .btn,
    .button-row .btn-secondary,
    .button-row button,
    .button-row input,
    .button-row select {
        flex: 1 1 180px;
    }

    .app-footer,
    .login-footer {
        padding: 14px 16px;
    }
}

@media (max-width: 760px) {
    .topbar {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        align-items: center;
    }

    .topbar .btn-secondary {
        grid-column: 1 / -1;
        width: 100%;
    }

    .table-wrap {
        overflow: visible;
    }

    table,
    thead,
    tbody,
    tr,
    th,
    td {
        display: block;
        width: 100%;
    }

    thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    tbody tr {
        margin-bottom: 12px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.72);
    }

    td {
        display: grid;
        grid-template-columns: minmax(96px, 36%) minmax(0, 1fr);
        gap: 10px;
        align-items: start;
        padding: 9px 0;
        border-bottom: 1px solid rgba(231, 223, 212, 0.8);
    }

    td:last-child {
        border-bottom: 0;
    }

    td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    td[colspan] {
        display: block;
    }

    td[colspan]::before {
        content: "";
        display: none;
    }

    td .button-row,
    td form.button-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    td input,
    td select,
    td button,
    td .btn,
    td .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .topbar h1,
    .page-title {
        font-size: 27px;
    }

    .hero-card,
    .form-card,
    .table-card,
    .card,
    .metric-card {
        padding: 16px;
        border-radius: 16px;
    }

    .field,
    .field-full {
        min-width: 0;
    }

    .btn,
    .btn-secondary,
    button.btn,
    button.btn-secondary {
        width: 100%;
        min-height: 42px;
        padding: 0 14px;
    }

    td {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .badge {
        max-width: 100%;
    }
}

@media (max-width: 1040px) {
    .login-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .login-copy {
        order: 1;
        min-height: auto;
        padding: 2.75rem 2.5rem 2.5rem;
        border-top: 6px solid #b96863;
        border-left: 0;
    }

    .login-panel {
        order: 2;
        min-height: auto;
        padding: 3rem 2.5rem 3.5rem;
        border-top: 1px solid rgba(25, 54, 60, 0.12);
        border-left: 0;
    }

    .login-copy-inner {
        gap: 1.75rem;
        min-height: auto;
    }

    .login-copy h1 {
        font-size: 2.8rem;
    }

    .login-copy::after {
        right: 1.5rem;
        bottom: 0.5rem;
        font-size: 6rem;
    }
}

@media (max-width: 580px) {
    .login-copy {
        padding: 1.75rem 1.25rem 2rem;
        border-top-width: 5px;
    }

    .login-copy-inner {
        gap: 1.35rem;
    }

    .login-logo-wrapper {
        padding: 0.7rem 0.8rem;
    }

    .login-logo {
        width: 225px;
    }

    .login-copy-branding {
        gap: 0.6rem;
    }

    .login-university {
        font-size: 0.92rem;
    }

    .login-copy h1 {
        font-size: 2.15rem;
        line-height: 1.06;
    }

    .login-lead {
        margin-top: 0.25rem !important;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .login-copy-footer {
        margin-top: 1.5rem;
    }

    .login-copy-footer > span {
        width: 44px;
    }

    .login-copy::before {
        display: none;
    }

    .login-copy::after {
        right: 1rem;
        font-size: 4.5rem;
    }

    .login-panel {
        padding: 2.25rem 1.25rem 2.75rem;
    }

    .login-panel-header {
        margin-bottom: 1.5rem;
    }

    .login-panel h2 {
        font-size: 2rem;
    }

    .login-panel-header .muted {
        margin-top: 0.65rem;
        line-height: 1.5;
    }

    .login-form {
        gap: 1rem;
    }

    .login-form input,
    .login-submit,
    .student-query-button {
        min-height: 52px;
    }

    .login-footer {
        padding-inline: 0.75rem;
        font-size: 0.68rem;
    }
}

@media (max-width: 360px) {
    .login-copy,
    .login-panel {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .login-logo {
        width: 205px;
    }

    .login-copy h1 {
        font-size: 1.95rem;
    }
}

@media (max-width: 860px) {
    .public-query-header-inner {
        min-height: auto;
        padding: 1.5rem 2rem;
        display: grid;
        justify-content: stretch;
        gap: 1.25rem;
    }

    .public-admin-link {
        justify-self: start;
    }

    .public-query-main {
        padding: 2.5rem 2rem 3.5rem;
    }

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

    .public-query-submit {
        grid-column: 1 / -1;
    }

    .public-query-submit .btn {
        width: 100%;
    }
}

@media (max-width: 580px) {
    .public-query-header {
        border-top-width: 5px;
    }

    .public-query-header-inner {
        padding: 1.35rem 1.25rem 1.5rem;
    }

    .public-query-brand {
        display: grid;
        gap: 0.8rem;
    }

    .public-query-brand > span {
        display: none;
    }

    .public-query-logo {
        width: 210px;
    }

    .public-query-brand strong {
        font-size: 1.15rem;
    }

    .public-admin-link {
        width: 100%;
    }

    .public-query-main {
        padding: 2rem 1.25rem 3rem;
        gap: 1.6rem;
    }

    .public-query-instruction {
        font-size: 1.18rem;
        line-height: 1.5;
    }

    .public-query-form-section {
        padding: 1.5rem 0;
    }

    .public-query-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .public-query-submit {
        grid-column: auto;
    }

    .public-query-form input,
    .public-query-form select,
    .public-query-submit .btn {
        min-height: 52px;
    }

    .public-result-card {
        padding: 1.1rem;
        border-radius: 8px;
    }

    .public-query-page .login-footer {
        padding-inline: 0.75rem;
        font-size: 0.68rem;
    }
}

@media (max-width: 360px) {
    .public-query-header-inner,
    .public-query-main {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .public-query-logo {
        width: 195px;
    }

    .public-query-instruction {
        font-size: 1.1rem;
    }
}

@media (max-width: 960px) {
    .public-result-card {
        padding: 1.25rem;
        border-radius: 8px;
    }

    .public-results {
        overflow: visible;
    }

    .public-results table,
    .public-results thead,
    .public-results tbody,
    .public-results tr,
    .public-results th,
    .public-results td {
        display: block;
        width: 100%;
    }

    .public-results thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .public-results tbody {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .public-results tbody tr {
        min-width: 0;
        margin: 0;
        padding: 1rem;
        border: 1px solid rgba(25, 54, 60, 0.14);
        border-radius: 8px;
        background: #ffffff;
    }

    .public-results td {
        min-width: 0;
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 0.75rem;
        align-items: start;
        padding: 0.55rem 0;
        border-bottom: 1px solid rgba(231, 223, 212, 0.82);
        overflow-wrap: break-word;
    }

    .public-results td:last-child {
        border-bottom: 0;
    }

    .public-results td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 0.68rem;
        font-weight: 900;
        line-height: 1.35;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .public-results td[colspan] {
        display: block;
        grid-column: 1 / -1;
        border-bottom: 0;
    }

    .public-results td[colspan]::before {
        display: none;
        content: "";
    }

    .public-results .badge {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    .public-results tbody {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 380px) {
    .public-results td {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 0.6rem;
    }
}
