﻿@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-bold-webfont.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #14213d;
  --ink: #1b2533;
  --muted: #657386;
  --soft: #f2f5f9;
  --paper: #ffffff;
  --orange: #c85f25;
  --orange-dark: #8f3f18;
  --line: #dce2ea;
  --green: #2f6f62;
  --shadow: 0 20px 60px rgba(17, 24, 39, 0.14);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(200, 95, 37, 0.5);
  outline-offset: 3px;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  margin: 0;
  clip: auto;
  color: #fff;
  background: var(--navy);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 0.75rem 1rem;
  color: #fff;
  background: rgba(17, 24, 39, 0.96);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  font-family: "Poppins", system-ui, sans-serif;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--orange);
  font-weight: 700;
}

.nav-toggle {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  color: #fff;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  position: absolute;
  top: 72px;
  right: 1rem;
  left: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #121a27;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 0.9rem;
  border-radius: var(--radius);
  color: #eef2f7;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-pill {
  color: #fff;
  background: var(--orange);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.18), rgba(17, 24, 39, 0.82));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5.2rem 0 4.2rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  line-height: 1.15;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.35rem, 8vw, 5.4rem);
}

h2 {
  font-size: clamp(1.85rem, 5vw, 3rem);
}

h3 {
  font-size: 1.12rem;
}

.hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 1.2rem 0 0;
  color: #e6edf5;
  font-size: 1.08rem;
}

.hero-actions,
.section-head,
.portal-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.hero-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 24, 39, 0.72);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.22);
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.home-game,
.portal-card-grid {
  display: grid;
  gap: 1rem;
}

.home-game article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.home-game span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--orange-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.home-game strong {
  display: block;
  color: var(--navy);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.btn,
.document-list button,
.portal-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.05rem;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
}

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

.btn-primary:hover {
  background: var(--orange-dark);
}

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

.btn-dark,
.btn-small {
  color: #fff;
  background: var(--navy);
}

.btn-small {
  min-height: 42px;
  padding: 0.55rem 0.85rem;
}

.notice-band {
  padding: 1rem 0;
  color: #fff;
  background: var(--navy);
}

.notice-grid {
  display: grid;
  gap: 0.8rem;
}

.notice-grid p,
.site-footer p {
  margin: 0;
}

.section {
  padding: 4.25rem 0;
}

.section.alt {
  background: var(--soft);
}

.split,
.contact-grid,
.portal-shell,
.team-layout {
  display: grid;
  gap: 2rem;
}

.lead {
  max-width: 720px;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.text-link {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-card figcaption {
  padding: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.news-card,
.mini-card,
.team-card,
.event-list article,
.metric-card,
.metric-grid article,
.form-card,
.login-panel,
.portal-view,
.table-list div,
.document-list article,
.upload-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.news-card:hover,
.mini-card:hover,
.team-card:hover,
.event-list article:hover,
.feature-card:hover,
.article-card:hover,
.pricing-card:hover,
.process-card:hover,
.community-card:hover,
.admin-card:hover,
.timeline-card:hover,
.gallery-card:hover,
.profile-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 111, 31, 0.32);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
}

.news-card {
  overflow: hidden;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-card div,
.mini-card,
.team-card {
  padding: 1rem;
}

.tag,
.team-card span,
.metric-card span,
.metric-grid span {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-card p,
.news-card p,
.team-card p,
.event-list p {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.team-card {
  min-height: 170px;
}

.court-section {
  color: #fff;
  background: var(--navy);
}

.court-section .muted {
  color: #c9d4e1;
}

.schedule {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.schedule article {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.location {
  margin: 0 0 0.4rem;
}

.event-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.event-list article {
  padding: 1rem;
}

.event-list time {
  color: var(--green);
  font-weight: 700;
}

.portal-teaser {
  color: #fff;
  background: linear-gradient(135deg, #111827 0%, #252f3d 100%);
}

.portal-teaser p:not(.eyebrow) {
  color: #dbe5ef;
}

.contact-grid address {
  margin-top: 1rem;
  font-style: normal;
  color: var(--muted);
}

.form-card,
.login-panel,
.portal-view {
  padding: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem;
  border: 1px solid #c8d2de;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.form-card,
.login-form,
.form-grid {
  display: grid;
  gap: 0.9rem;
}

.login-section {
  background: #eef2f7;
}

.portal-shell {
  align-items: start;
}

.credential-grid,
.metric-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.credential-grid div {
  padding: 0.9rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
}

.login-choice-grid button {
  display: grid;
  gap: 0.18rem;
  width: 100%;
  min-height: auto;
  padding: 0.9rem;
  border: 1px solid rgba(20, 33, 61, 0.12);
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
  text-align: left;
  cursor: pointer;
}

.login-choice-grid button:hover,
.login-choice-grid button:focus-visible {
  background: #223456;
}

.credential-grid span,
.credential-grid small {
  display: block;
}

.credential-grid span {
  font-size: 1.05rem;
  font-weight: 700;
}

.login-choice-grid span {
  font-size: 0.92rem;
  font-weight: 500;
}

.form-error {
  min-height: 1.5rem;
  margin: 0;
  color: #9f2415;
  font-weight: 700;
}

.portal-view {
  display: none;
  overflow: hidden;
}

.portal-view.is-active {
  display: block;
}

[data-portal-empty] img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
}

.info-note {
  padding: 0.9rem;
  border-left: 4px solid var(--orange);
  background: #fff6ed;
}

.portal-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 1rem -0.2rem;
  padding: 0.2rem;
  overflow-x: auto;
}

.portal-tabs button {
  min-width: max-content;
  min-height: 44px;
  color: var(--navy);
  background: #eef2f7;
}

.portal-tabs button.is-active {
  color: #fff;
  background: var(--orange);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: grid;
  gap: 1.25rem;
}

.metric-card,
.metric-grid article {
  padding: 1.15rem;
}

.metric-card strong,
.metric-grid strong {
  display: block;
  color: var(--navy);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 1.65rem;
}

.message-list {
  display: grid;
  gap: 0.65rem;
}

.message-list p {
  margin: 0;
  padding: 0.85rem;
  border-radius: var(--radius);
  background: #f6f8fb;
}

.message-list.rich article,
.contact-person-list article {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.message-list.rich article > div,
.document-list article > div {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.message-list.rich strong,
.document-list strong {
  display: block;
}

.document-list span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.message-list.rich span,
.contact-person-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-person-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.article-meta span {
  color: var(--orange-dark);
  text-transform: uppercase;
}

.document-list,
.table-list {
  display: grid;
  gap: 0.65rem;
}

.document-list article,
.table-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
}

.document-list button {
  min-height: 40px;
  color: #fff;
  background: var(--navy);
}

.upload-box {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.table-list span,
.table-list b {
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  color: #e8edf5;
  background: #0d121d;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  color: #fff;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 24, 39, 0.72);
}

.modal[hidden] {
  display: none;
}

.modal-panel {
  width: min(480px, 100%);
  padding: 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-panel p {
  color: var(--muted);
}

.page-hero {
  padding: 4.1rem 0 2.4rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(37, 47, 61, 0.94)), var(--page-image, none);
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5.6vw, 3.8rem);
}

.page-hero p {
  max-width: 760px;
  color: #dfe7f1;
}

.subnav {
  padding: 0.8rem 0;
  overflow-x: auto;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.subnav .container {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
}

.subnav a {
  min-width: max-content;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  background: #eef2f7;
}

.subnav a.is-active {
  color: #fff;
  background: var(--orange);
}

.feature-grid,
.gallery-grid,
.article-grid,
.pricing-grid,
.process-grid,
.community-grid,
.admin-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.article-card,
.pricing-card,
.process-card,
.community-card,
.admin-card,
.timeline-card,
.gallery-card,
.profile-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card,
.article-card,
.pricing-card,
.process-card,
.community-card,
.admin-card,
.timeline-card,
.profile-card {
  padding: 1rem;
}

.community-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.community-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.article-card img,
.gallery-card img,
.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: calc(var(--radius) - 4px);
}

.gallery-card {
  overflow: hidden;
}

.gallery-card div {
  padding: 0.9rem;
}

.kpi-row {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.kpi-row article {
  padding: 1rem;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
}

.kpi-row strong {
  display: block;
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 2rem;
}

.wide-band {
  color: #fff;
  background: var(--navy);
}

.wide-band .lead,
.wide-band .muted {
  color: #d9e2ec;
}

.login-card {
  width: min(660px, 100%);
  margin: 0 auto;
}

.login-section {
  padding: 2.4rem 0;
}

.login-panel-compact h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.login-panel-compact p:not(.eyebrow) {
  margin: 0.7rem 0 0;
}

.app-layout {
  min-height: 100vh;
  background: #eef2f7;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  color: #fff;
  background: var(--navy);
}

.app-main {
  display: grid;
  gap: 1rem;
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
  padding: 1rem 0 3rem;
}

.app-sidebar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.app-sidebar button,
.app-sidebar a {
  min-width: max-content;
  min-height: 44px;
  padding: 0.65rem 0.8rem;
  border: 0;
  border-radius: var(--radius);
  color: var(--navy);
  background: linear-gradient(180deg, #f8fafc, #e9eef5);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.app-sidebar .is-active {
  color: #fff;
  background: linear-gradient(180deg, var(--navy), #223456);
  box-shadow: 0 10px 22px rgba(20, 33, 61, 0.18);
}

.app-content {
  min-width: 0;
}

.app-section {
  display: grid;
  gap: 1.5rem;
}

.app-content > .app-section {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.app-content > .app-section + .app-section {
  margin-top: 1rem;
}

.portal-card-grid {
  align-items: start;
}

.portal-card-grid .portal-view {
  height: 100%;
}

.portal-card-grid .event-list.small {
  grid-template-columns: 1fr;
}

.tab-panel .portal-top {
  margin-bottom: 0;
}

.clean-gallery .gallery-card img {
  margin-bottom: 0;
}

.gallery-note {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.dashboard-grid {
  display: grid;
  gap: 1.1rem;
}

.data-table {
  display: grid;
  gap: 0.6rem;
}

.data-table article {
  display: grid;
  gap: 0.4rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-list span {
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  color: var(--navy);
  background: #eef2f7;
  font-weight: 700;
}

.admin-danger {
  color: #fff;
  background: #9f2415;
}

.placeholder-block {
  padding: 1rem;
  border: 1px dashed #b8c3d0;
  border-radius: var(--radius);
  color: var(--muted);
  background: #f8fafc;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.status-badge,
.unread-badge,
.meta-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 28px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-badge {
  color: #0f5132;
  background: #dff7ea;
}

.status-badge.warning {
  color: #7c3f00;
  background: #fff1d6;
}

.status-badge.dark {
  color: #fff;
  background: var(--navy);
}

.unread-badge {
  color: #fff;
  background: var(--orange);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.7rem 0;
}

.meta-pill {
  color: var(--navy);
  background: #eef2f7;
}

.activity-feed {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.activity-feed article {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  background: #fff;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.role-card {
  min-height: 190px;
}

.attendance-list {
  display: grid;
  gap: 0.65rem;
}

.attendance-list label {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.attendance-list input[type="checkbox"] {
  width: 24px;
  min-height: 24px;
}

@media (min-width: 720px) {
  .feature-grid,
  .article-grid,
  .pricing-grid,
  .process-grid,
  .community-grid,
  .gallery-grid,
  .admin-grid,
  .kpi-row,
  .home-game,
  .portal-card-grid,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .split .process-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (min-width: 980px) {
  .feature-grid,
  .article-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-grid,
  .process-grid,
  .community-grid,
  .admin-grid,
  .kpi-row,
  .home-game,
  .dashboard-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-game {
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }

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

  .app-main {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }

  .app-sidebar {
    position: sticky;
    top: 82px;
    flex-direction: column;
    overflow: visible;
  }

  .data-table article {
    grid-template-columns: 1.3fr 1fr 1fr auto;
    align-items: center;
  }
}

@media (min-width: 720px) {
  .notice-grid,
  .card-grid,
  .credential-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .form-grid label:has(textarea),
  .form-grid button {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .site-header {
    padding-inline: 2rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav a {
    min-height: 42px;
  }

  .split,
  .contact-grid,
  .team-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .split.reversed > :first-child {
    order: 2;
  }

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

  .event-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .event-list.small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-shell {
    grid-template-columns: 340px 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}
