:root {
  --bg: #f7f9fc;
  --card: #ffffff;
  --text: #1f2937;
  --primary: #5b21b6;
  --accent: #f59e0b;
  --muted: #6b7280;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  animation: pageFade 0.45s ease;
}

img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.logo {
  font-weight: 700;
  color: var(--primary);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #374151;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

nav a {
  padding: 8px 12px;
  border-radius: 8px;
}

nav a:hover {
  background: #ede9fe;
}

.btn {
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 10px;
  display: inline-block;
}

.btn:hover {
  opacity: 0.92;
}

.btn-sm {
  padding: 8px 12px;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.hero {
  min-height: 72vh;
  background: url("https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  position: relative;
  color: #fff;
  display: grid;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 8px 0;
}

.tag {
  display: inline-block;
  background: rgba(245, 158, 11, 0.9);
  color: #111827;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.highlight {
  margin-top: 14px;
  font-weight: 600;
  color: #fde68a;
}

.section {
  padding: 60px 0;
}

.section-head {
  margin-bottom: 20px;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section-alt {
  background: #eef2ff;
}

.section-featured {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.cta {
  background: #111827;
  color: #fff;
}

.two-col,
.three-col,
.grid,
.dashboard-grid,
.kpi-grid {
  display: grid;
  gap: 18px;
}

.two-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.three-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.amenity-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 20px rgba(17, 24, 39, 0.06);
}

.amenity-card img {
  height: 140px;
  object-fit: cover;
  border-radius: 0;
}

.amenity-content {
  padding: 14px;
}

.amenity-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.amenity-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-stack {
  display: grid;
  gap: 20px;
}

.feature-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
}

.feature-panel img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.feature-content {
  padding: 20px;
}

.feature-content h3 {
  margin-top: 0;
}

.feature-content p {
  color: var(--muted);
}

.dashboard-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dashboard-stack {
  grid-template-columns: 1fr;
}

.portal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
}

.portal-sidebar {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 8px;
}

.panel-btn {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
}

.panel-btn:hover {
  background: #f5f3ff;
}

.panel-btn.active {
  background: #ede9fe;
  border-color: #c4b5fd;
  color: #4c1d95;
  font-weight: 600;
}

.portal-content {
  display: grid;
  gap: 14px;
}

.panel-section {
  display: none;
}

.panel-section.active {
  display: block;
}

.kpi-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(17, 24, 39, 0.12);
}

.kpi {
  text-align: center;
}

.kpi h3 {
  margin: 6px 0;
  color: var(--primary);
}

ul {
  margin: 0;
  padding-left: 18px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stack {
  display: grid;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
}

.badge {
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-block;
  margin-left: 8px;
}

.pending {
  background: #fef3c7;
  color: #92400e;
}

.progress {
  background: #dbeafe;
  color: #1e40af;
}

.resolved {
  background: #dcfce7;
  color: #166534;
}

.muted {
  color: var(--muted);
}

.top-gap {
  margin-top: 20px;
}

.inline-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  margin-top: 12px;
}

.data-table th,
.data-table td {
  border: 1px solid var(--border);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: #f3f4f6;
}

.action-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bar-row {
  display: grid;
  grid-template-columns: 56px 1fr 48px;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.bar {
  background: #e5e7eb;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #3b82f6);
}

.auth-bg {
  background: linear-gradient(135deg, #ede9fe 0%, #eff6ff 100%);
}

.auth-link {
  background: #eef2ff;
  color: #312e81;
  border-radius: 8px;
  padding: 8px 12px;
}

.logout-btn {
  border: 1px solid #d1d5db;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  font: inherit;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: linear-gradient(180deg, #111827 0%, #020617 100%);
  color: #e2e8f0;
  padding: 42px 0 18px;
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.footer-brand h3 {
  margin: 0 0 8px;
  color: #fff;
}

.footer-brand p,
.footer-col p {
  margin: 0 0 8px;
  color: #cbd5e1;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* Floating contact (main layout) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.float-actions {
  position: fixed;
  z-index: 50;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.float-action {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.float-action:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.28);
}

.float-action:focus-visible {
  outline: 3px solid #fde68a;
  outline-offset: 3px;
}

.float-action--call {
  background: linear-gradient(145deg, #5b21b6, #4338ca);
}

.float-action--whatsapp {
  background: linear-gradient(145deg, #25d366, #128c7e);
}

.float-action__icon {
  display: flex;
  line-height: 0;
}

.float-action__icon svg {
  width: 26px;
  height: 26px;
}

@media (prefers-reduced-motion: reduce) {
  .float-action {
    transition: none;
  }
  .float-action:hover {
    transform: none;
  }
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* —— Inner marketing pages (rooms, fees, rules, admission, contact) —— */
.page-hero {
  padding: 3rem 0 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91, 33, 182, 0.95) 0%, rgba(30, 64, 175, 0.88) 50%, rgba(124, 58, 237, 0.9) 100%);
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero--rooms::before {
  background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 40%, #0f766e 100%);
}
.page-hero--fees::before {
  background: linear-gradient(135deg, #1e3a5f 0%, #5b21b6 55%, #b45309 100%);
}
.page-hero--rules::before {
  background: linear-gradient(135deg, #312e81 0%, #6b21a8 100%);
}
.page-hero--contact::before {
  background: linear-gradient(135deg, #134e4a 0%, #4338ca 100%);
}
.page-hero--admission::before {
  background: linear-gradient(135deg, #701a75 0%, #2563eb 100%);
}
.page-hero--discount::before {
  background: linear-gradient(135deg, #0f766e 0%, #5b21b6 50%, #b45309 100%);
}
.page-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
  margin: 0 0 0.5rem;
}
.page-hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
}
.page-hero-lead {
  margin: 0;
  max-width: 52rem;
  line-height: 1.65;
  font-size: 1.02rem;
  opacity: 0.95;
}

.building-strip {
  background: linear-gradient(90deg, #fef3c7 0%, #fde68a 50%, #fef9c3 100%);
  border-block: 1px solid #f59e0b;
  padding: 1rem 0;
}
.building-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.75rem;
}
.building-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.5rem;
}
.building-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #78350f;
  line-height: 1.1;
}
.building-stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.building-strip-note {
  margin: 0;
  flex: 1;
  min-width: 200px;
  color: #78350f;
  font-size: 0.92rem;
  line-height: 1.5;
}

.section--tight {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.stat-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}
.stat-board-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.06);
}
.stat-board-item--accent {
  background: linear-gradient(180deg, #ede9fe 0%, #fff 100%);
  border-color: #c4b5fd;
}
.stat-board-value {
  display: block;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}
.stat-board-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.split-feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.card--lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card--lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.1);
}
.card--muted-bg {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.check-list {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.85;
}
.code-pill {
  background: #f3e8ff;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.9em;
}
.grid--rooms {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.fee-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.05);
}
.fee-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}
.fee-amount {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
}
.fee-amount--sm {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}
.fee-note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.fee-card--highlight {
  background: linear-gradient(145deg, #faf5ff 0%, #fff 100%);
  border-color: #ddd6fe;
}
.fee-card--warn {
  border-color: #fed7aa;
  background: #fffbeb;
}
.card--policy h2 {
  margin-top: 0;
}

.rules-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}
.rules-timeline li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1rem 1rem 0.75rem;
  box-shadow: 0 4px 12px rgba(17, 24, 39, 0.04);
}
.rules-num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.rules-timeline strong {
  display: block;
  margin-bottom: 0.2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.contact-card--primary {
  background: linear-gradient(160deg, #1e1b4b 0%, #312e81 100%);
  color: #e0e7ff;
  border: none;
}
.contact-card--primary h2 {
  color: #fff;
}
.contact-address {
  line-height: 1.65;
  margin: 0 0 1rem;
}
.contact-phone {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
}
.contact-phone a {
  color: #fde68a;
}
.office-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.office-list li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}
.office-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.office-list span {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.members-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.members-chips li {
  background: #f3f4f6;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.admission-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 1.5rem;
  align-items: start;
}
.admission-aside h2 {
  margin-top: 0;
  font-size: 1.1rem;
}
.admission-steps {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.75;
  font-size: 0.92rem;
  color: var(--muted);
}
.admission-steps a {
  color: var(--primary);
  font-weight: 500;
}
.admission-main {
  min-width: 0;
}
.card--form-section h2 {
  margin-top: 0;
  font-size: 1.05rem;
}
.card--form-section label {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.card--form-section label:first-of-type,
.card--form-section h2 + label {
  margin-top: 0;
}
.radio-row {
  display: flex;
  gap: 1.25rem;
  margin: 0.5rem 0 0.75rem;
}
.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.4rem 0;
  font-size: 0.92rem;
}
.form-actions {
  margin-top: 0.5rem;
}
.form-alert--error {
  border-color: #f87171;
  background: #fef2f2;
}
.form-alert--error ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: #fff;
  opacity: 1;
}

/* —— Discount policy page —— */
.discount-intro {
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, #ecfdf5 0%, #fff 55%);
  border-color: #a7f3d0;
}
.discount-intro-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: #065f46;
}
.discount-intro-text {
  margin: 0;
  line-height: 1.65;
  color: var(--text);
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
}
.discount-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
  position: relative;
  overflow: hidden;
}
.discount-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5b21b6, #0d9488);
  opacity: 0.85;
}
.discount-card--accent::before {
  background: linear-gradient(90deg, #c2410c, #7c3aed);
}
.discount-card-icon {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 0.35rem;
}
.discount-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--primary);
}
.discount-card-pct {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f766e;
}
.discount-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.discount-conditions h2 {
  margin-top: 0;
}
.discount-footnote {
  line-height: 1.65;
  max-width: 48rem;
}

@media (max-width: 760px) {
  .admission-layout {
    grid-template-columns: 1fr;
  }
  .nav-wrap {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 28px rgba(17, 24, 39, 0.12);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    z-index: 20;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .main-nav #auth-actions,
  .main-nav .logout-btn,
  .main-nav .auth-link {
    width: 100%;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .main-nav #auth-actions {
    display: grid;
    gap: 8px;
  }

  .hero {
    min-height: 64vh;
  }

  .feature-panel {
    grid-template-columns: 1fr;
  }

  .feature-panel img {
    min-height: 180px;
  }

  .portal-layout {
    grid-template-columns: 1fr;
  }

  .portal-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
