:root {
  --navy: #1b1758;
  --purple: #44339a;
  --purple-soft: #6e61c7;
  --teal: #39d4c5;
  --teal-deep: #27b6a7;
  --ink: #171a39;
  --muted: #5b6187;
  --line: rgba(56, 44, 123, 0.12);
  --surface: #ffffff;
  --surface-soft: #f4f3ff;
  --surface-tint: linear-gradient(135deg, rgba(103, 89, 201, 0.12), rgba(57, 212, 197, 0.08));
  --shadow: 0 24px 50px rgba(33, 26, 91, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(27, 23, 88, 0.96);
  backdrop-filter: blur(12px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 104px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 112px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.primary-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.primary-nav a.is-active::after,
.primary-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--teal);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #fff;
  font-weight: 700;
}

.phone-link::before {
  content: "";
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 1.55rem;
  border-radius: 50%;
  border: 1.8px solid rgba(255, 255, 255, 0.82);
  background-color: rgba(255, 255, 255, 0.08);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 16.92v3a2 2 0 0 1-2.18 2 19.86 19.86 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.86 19.86 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.64 2.62a2 2 0 0 1-.45 2.11L8 9.91a16 16 0 0 0 6.09 6.09l1.46-1.3a2 2 0 0 1 2.11-.45c.84.31 1.72.52 2.62.64A2 2 0 0 1 22 16.92z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.82rem 0.82rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(44, 33, 112, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, var(--purple), #5845cd);
  color: #fff;
}

.button-accent {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(78, 61, 185, 0.35), transparent 35%),
    linear-gradient(120deg, rgba(17, 15, 55, 0.9), rgba(27, 23, 88, 0.82)),
    linear-gradient(135deg, #261d73, #140f43);
}

.hero-home {
  padding-bottom: 0;
  background: #17124e;
}

.hero-home-stage {
  min-height: 620px;
  margin-top: 0;
  background:
    linear-gradient(90deg, rgba(31, 24, 93, 0.92) 0%, rgba(31, 24, 93, 0.82) 26%, rgba(31, 24, 93, 0.32) 48%, rgba(31, 24, 93, 0.1) 60%),
    url("assets/hero-people-crop.png") 72% center / cover no-repeat;
}

.hero-home-overlay {
  display: flex;
  align-items: center;
  min-height: 620px;
  max-width: 42%;
  padding: 3rem 0 3rem 3rem;
}

.hero-home .hero-copy h1 {
  font-size: clamp(3.4rem, 5vw, 5.2rem);
  line-height: 1.04;
}

.hero-home .lead {
  max-width: 430px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-home .button-ghost {
  border-color: rgba(255, 255, 255, 0.9);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(57, 212, 197, 0.12);
  filter: blur(10px);
}

.hero-grid,
.split-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  min-height: 720px;
  padding: 3.5rem 0 4rem;
}

.hero-copy h1,
.hero-copy h2,
.section-title,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.95;
}

.lead {
  max-width: 600px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: var(--purple-soft);
}

.hero .eyebrow,
.eyebrow-light {
  color: rgba(167, 246, 240, 0.82);
}

.eyebrow-center,
.section-title,
.section-copy {
  text-align: center;
}

.hero-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-home .hero-actions {
  margin-top: 2.2rem;
}

.hero-visual,
.feature-photo,
.mosaic-card,
.gallery-tile,
.team-photo {
  position: relative;
  overflow: hidden;
}

.hero-people,
.team-visual {
  min-height: 540px;
}

.hero-card,
.feature-photo,
.mosaic-card,
.gallery-tile,
.team-photo {
  background-size: cover;
  background-position: center;
}

.hero-card,
.feature-photo {
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(16, 11, 48, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22), transparent 25%),
    linear-gradient(135deg, rgba(72, 61, 151, 0.4), rgba(57, 212, 197, 0.26)),
    url("assets/logo.png") center 18% / 180px no-repeat,
    linear-gradient(135deg, #5a50a8, #1c9a9e);
}

.large-card {
  min-height: 540px;
}

.medium-card {
  min-height: 420px;
}

.hero-card h2 {
  margin: 0;
  max-width: 360px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.photo-chip {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.floating-stat {
  position: absolute;
  left: -1rem;
  bottom: 2rem;
  display: grid;
  gap: 0.4rem;
  max-width: 260px;
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.floating-stat strong {
  font-size: 1rem;
}

.section {
  padding: 5.5rem 0;
}

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

.section-band,
.site-footer,
.footer-bar {
  color: #fff;
  background: linear-gradient(135deg, #281f78, #151144);
}

.icon-grid,
.service-grid,
.team-grid,
.gallery-grid,
.metrics-grid,
.feed-grid {
  display: grid;
  gap: 1.4rem;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-card,
.service-card,
.team-card,
.feed-card,
.metric-card,
.dashboard-panel,
.overview-card,
.contact-panel,
.split-panel,
.feature-photo,
.footer-grid,
.activity-table {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.values-strip {
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.icon-card,
.service-card,
.feed-card,
.metric-card,
.team-card {
  border-radius: 28px;
  padding: 1.6rem;
}

.icon-card {
  text-align: center;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(68, 51, 154, 0.12), rgba(57, 212, 197, 0.18));
  color: var(--purple);
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
}

.split-panel,
.contact-panel,
.footer-grid,
.band-grid,
.dashboard-columns {
  display: grid;
  gap: 2rem;
}

.split-panel,
.contact-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  padding: 2rem;
  border-radius: 32px;
}

.feature-photo {
  min-height: 420px;
  background:
    linear-gradient(180deg, rgba(18, 15, 58, 0.05), rgba(18, 15, 58, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.4), transparent 20%),
    linear-gradient(135deg, rgba(68, 51, 154, 0.65), rgba(57, 212, 197, 0.42));
}

.story-photo {
  background:
    linear-gradient(180deg, rgba(18, 15, 58, 0.05), rgba(18, 15, 58, 0.72)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.32), transparent 18%),
    linear-gradient(135deg, rgba(54, 45, 128, 0.72), rgba(86, 164, 220, 0.45));
}

.photo-overlay {
  position: absolute;
  inset: auto 1.4rem 1.4rem 1.4rem;
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}

.photo-overlay strong,
.photo-overlay span {
  display: block;
}

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

.service-card h3,
.team-card h3,
.feed-card h3,
.metric-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.5rem;
}

.service-card p,
.icon-card p,
.team-card p,
.feed-card p,
.check-item span,
.section-copy,
.contact-panel p,
.footer-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.band-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

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

.check-item {
  display: grid;
  gap: 0.5rem;
}

.check-item strong::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: rgba(57, 212, 197, 0.2);
  color: #8df9f0;
}

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

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

.gallery-tile {
  min-height: 190px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.gallery-tile span,
.mosaic-card::after {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.theme-a { background: linear-gradient(135deg, rgba(68,51,154,.28), rgba(57,212,197,.18)), linear-gradient(135deg, #4b3db7, #1f9aa5); }
.theme-b { background: linear-gradient(135deg, rgba(68,51,154,.28), rgba(245,162,94,.18)), linear-gradient(135deg, #8f5ad9, #d88342); }
.theme-c { background: linear-gradient(135deg, rgba(68,51,154,.28), rgba(91,148,255,.18)), linear-gradient(135deg, #293b89, #2170b3); }
.theme-d { background: linear-gradient(135deg, rgba(68,51,154,.18), rgba(138,211,255,.2)), linear-gradient(135deg, #5274d5, #2eb4d2); }
.theme-e { background: linear-gradient(135deg, rgba(68,51,154,.2), rgba(134,247,184,.2)), linear-gradient(135deg, #4230a7, #42c49f); }
.theme-f { background: linear-gradient(135deg, rgba(68,51,154,.24), rgba(255,191,132,.22)), linear-gradient(135deg, #6c52d9, #ef9951); }
.theme-g { background: linear-gradient(135deg, rgba(68,51,154,.24), rgba(245,99,144,.2)), linear-gradient(135deg, #714dd4, #cf5d83); }
.theme-h { background: linear-gradient(135deg, rgba(68,51,154,.24), rgba(247,214,106,.24)), linear-gradient(135deg, #3d3287, #c9a63e); }
.theme-i { background: linear-gradient(135deg, rgba(68,51,154,.24), rgba(195,255,236,.18)), linear-gradient(135deg, #5342c0, #4bbf9b); }

.story-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-height: 520px;
}

.mosaic-card {
  min-height: 180px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.mosaic-card.tall {
  grid-row: span 2;
}

.mosaic-card.wide {
  grid-column: span 2;
}

.feed-grid {
  grid-template-columns: 1.2fr repeat(4, 1fr);
}

.brand-feed img {
  width: 88px;
  margin-bottom: 1rem;
}

.feed-meta {
  font-size: 0.9rem;
  color: var(--purple);
  font-weight: 700;
}

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

.team-card {
  text-align: center;
}

.team-card p {
  margin: 0.8rem 0 0.35rem;
  color: var(--purple);
  font-size: 0.95rem;
  font-weight: 700;
}

.team-photo {
  min-height: 250px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #e7e2ee;
}

.team-photo img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center top;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-feedback {
  grid-column: 1 / -1;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-weight: 600;
}

.contact-feedback-success {
  color: #063321;
  background: #d9fbee;
  border: 1px solid #7bdcb5;
}

.contact-feedback-error {
  color: #842029;
  background: rgba(248, 215, 218, 0.92);
  border: 1px solid rgba(220, 53, 69, 0.24);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
}

.section-soft .contact-form input,
.section-soft .contact-form textarea,
.contact-panel .contact-form input,
.contact-panel .contact-form textarea {
  border-color: var(--line);
  background: #fff;
}

.contact-form textarea {
  min-height: 120px;
  grid-column: 1 / -1;
  resize: vertical;
}

.contact-form .input-error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form button {
  justify-self: start;
}

.contact-list,
.contact-stack {
  display: grid;
  gap: 1rem;
}

.site-footer {
  padding: 4rem 0;
}

.footer-grid {
  grid-template-columns: 1fr 1.2fr 0.8fr;
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255,255,255,0.08);
}

.footer-compact {
  grid-template-columns: 1fr 0.7fr 1.3fr;
}

.footer-minor,
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bar {
  padding: 2rem 0 1.5rem;
}

.footer-legal {
  padding-top: 1.5rem;
}

.footer-legal img {
  width: 56px;
}

.legal-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.32rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  width: 1.6rem;
  height: 2px;
  background: #fff;
}

.dashboard-page {
  background: #f5f6fb;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.dashboard-sidebar {
  padding: 2rem 1.5rem;
  color: #fff;
  background: linear-gradient(180deg, #1d1661, #110d3f);
}

.sidebar-brand {
  text-align: center;
}

.sidebar-brand img {
  width: 120px;
  margin: 0 auto 1rem;
}

.sidebar-nav {
  display: grid;
  gap: 0.65rem;
  margin-top: 2rem;
}

.sidebar-nav a {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

.sidebar-nav a.is-active,
.sidebar-nav a:hover {
  background: linear-gradient(135deg, #4c3bba, #5f4cf1);
  color: #fff;
}

.dashboard-main {
  padding: 2.25rem;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dashboard-topbar h2 {
  margin: 0 0 0.5rem;
  font-size: 3.25rem;
}

.admin-badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 700;
}

.admin-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e7ecff, #c3d8ff);
  color: var(--navy);
  font-family: "Outfit", sans-serif;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 2rem 0;
}

.metric-card p {
  margin: 0 0 0.6rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
}

.dashboard-panel {
  padding: 1.6rem;
  border-radius: 28px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.quick-button {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 1rem;
  border-radius: 20px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, #4b39ba, #351f8c);
}

.dashboard-columns {
  grid-template-columns: 1.5fr 0.7fr;
  align-items: start;
  margin-top: 1.5rem;
}

.activity-table {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: none;
}

.activity-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.activity-row.header {
  color: var(--muted);
  font-weight: 700;
}

.overview-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.storage-bar {
  height: 12px;
  margin-top: 1.2rem;
  border-radius: 999px;
  background: #e3e6f4;
  overflow: hidden;
}

.storage-bar span {
  display: block;
  width: 24%;
  height: 100%;
  background: linear-gradient(135deg, #4b39ba, #6a61d8);
}

@media (max-width: 1120px) {
  .primary-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav.is-open {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(26, 21, 83, 0.98);
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .split-hero,
  .split-panel,
  .contact-panel,
  .band-grid,
  .footer-grid,
  .dashboard-layout,
  .dashboard-columns {
    grid-template-columns: 1fr;
  }

  .four-up,
  .service-grid,
  .team-grid,
  .gallery-grid,
  .metrics-grid,
  .quick-actions,
  .feed-grid,
  .large-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .brand img {
    width: 92px;
  }

  .hero-home-stage,
  .hero-home-overlay {
    min-height: 540px;
  }

  .hero-home-overlay {
    max-width: 52%;
    padding-left: 2rem;
  }

  .dashboard-sidebar {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero-grid,
  .split-hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .hero-copy h1 {
    font-size: 2.9rem;
  }

  .hero-home-stage {
    background-position: 64% center;
  }

  .hero-home-overlay {
    max-width: 100%;
    min-height: auto;
    padding: 2.5rem 1.25rem 3rem;
    background: linear-gradient(180deg, rgba(23, 18, 78, 0.92), rgba(23, 18, 78, 0.68));
  }

  .hero-home .lead {
    max-width: 100%;
  }

  .four-up,
  .service-grid,
  .team-grid,
  .gallery-grid,
  .metrics-grid,
  .quick-actions,
  .feed-grid,
  .story-mosaic,
  .large-gallery,
  .check-grid,
  .contact-form,
  .wide-form {
    grid-template-columns: 1fr;
  }

  .nav-shell {
    min-height: 88px;
  }

  .section {
    padding: 4rem 0;
  }

  .values-strip {
    margin-top: 0;
    padding-top: 1rem;
  }

  .footer-minor,
  .footer-legal,
  .dashboard-topbar,
  .activity-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .activity-row {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    padding: 1.25rem;
  }
}
