/* Renault 5 Community — exact match override stylesheet
   Loaded after assets/styles.css. Uses public body page- classes. */

/* Public page base: white background, Inter font */
html {
  background: #ffffff;
}

body main {
  background: #ffffff;
  color: #111517;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  display: block;
  padding: 0;
  background: #111517;
  color: #ffffff;
  border: 0;
  box-shadow: none;
}

.site-header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
}

.r5-logo-wrap {
  width: auto;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.r5-logo-wrap img,
.r5-logo-wrap svg {
  height: 34px;
  width: auto;
  display: block;
}

.brand-text .brand-title {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #ffffff;
}

.brand-text .brand-sub {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav a {
  position: relative;
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #FFD500;
}

.site-nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  background: #FFD500;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 3px;
  width: 32px;
  height: 32px;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  background: #ffffff;
}

.account-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-actions .button,
.account-actions .button.ghost {
  padding: 7px 12px;
  min-height: 32px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  color: #111517;
  background: #FFD500;
  border: 1px solid #FFD500;
}

.account-actions .button.ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.account-actions .button:hover {
  background: #ffdb33;
  border-color: #ffdb33;
}

.account-actions .button.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.account-actions .notification-button,
.account-actions .account-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.account-actions .notification-button:hover,
.account-actions .account-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.account-actions .topbar-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.account-actions .notification-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #FFD500;
  color: #111517;
  font-size: 10px;
  font-weight: 700;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
}

.site-header .notification-menu,
.site-header .account-menu {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: -6px;
}

.site-header .notification-dropdown,
.site-header .account-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 80;
  min-width: 220px;
  display: none;
  background: #111517;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 6px;
  padding-top: 4px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.site-header .notification-menu:hover .notification-dropdown,
.site-header .notification-menu:focus-within .notification-dropdown,
.site-header .notification-menu.is-open .notification-dropdown,
.site-header .account-menu:hover .account-dropdown,
.site-header .account-menu:focus-within .account-dropdown,
.site-header .account-menu.is-open .account-dropdown {
  display: grid;
  gap: 4px;
}

.site-header .notification-dropdown .description {
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  padding: 4px 8px;
  margin: 0;
}

.site-header .notification-mark-all-form {
  margin: 0;
  padding: 0 8px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .notification-mark-all-form button,
.site-header .notification-dropdown-item button {
  padding: 5px 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: #ffffff;
  font-size: 11px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-header .notification-mark-all-form button:hover,
.site-header .notification-dropdown-item button:hover {
  background: #FFD500;
  color: #111517;
  border-color: #FFD500;
}

.site-header .notification-dropdown-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 4px;
  border-left: 2px solid transparent;
}

.site-header .notification-dropdown-item.unread {
  border-left-color: #FFD500;
  background: rgba(255,213,0,0.08);
}

.site-header .notification-dropdown-item:hover {
  background: rgba(255,255,255,0.06);
}

.site-header .notification-dropdown a,
.site-header .notification-dropdown a strong {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
}

.site-header .notification-dropdown a span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
}

.site-header .all-notifications-link {
  display: block;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 8px;
  margin-top: 4px;
  color: #FFD500;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.site-header .account-dropdown a {
  display: block;
  padding: 8px;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-header .account-dropdown a:hover,
.site-header .account-dropdown a:focus {
  background: rgba(255,255,255,0.08);
  color: #FFD500;
}

/* Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background-color: #0f0f0f;
  background-image: url('background.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: auto;
}

.hero::after,
.hero-layout::after {
  content: none !important;
  display: none !important;
}

.hero-layout {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 0;
}

.hero-copy {
  position: relative;
  z-index: 10;
  background: rgba(17, 21, 23, 0.78);
  display: flex;
  align-items: center;
  padding: 48px 32px;
}

.hero-copy::before {
  content: none !important;
}

.hero-copy > * {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0;
}

.hero-copy h1 span {
  color: #FFD500;
}

.hero-copy p {
  max-width: 280px;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.hero-copy .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 20px;
  background: #FFD500;
  color: #111517;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}

.hero-copy .button:hover {
  background: #ffdb33;
}

.hero-copy .button.ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-image-wrap {
  position: relative;
  min-height: 0;
  background: transparent;
  overflow: hidden;
}

.hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: grayscale(100%) contrast(1.1);
}

.hero-image-wrap img.hero-image-car {
  filter: grayscale(100%) brightness(1.15) contrast(1.1);
}

.hero-diagonal {
  position: absolute;
  left: 41%;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 20;
  pointer-events: none;
}

.hero-diagonal::before {
  content: "";
  position: absolute;
  inset: -10% 0;
  background: #FFD500;
  transform: skewX(-18deg);
}

.hero-diagonal::after {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 54px;
  width: 14px;
  background: #ffffff;
  transform: skewX(-18deg);
  box-shadow: 16px 0 0 #000000;
}

.mobile-diagonal {
  display: none;
  height: 12px;
}

/* Three cards -------------------------------------------------------- */
.three-cards {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px clamp(16px, 4vw, 24px) 40px;
}

.three-cards-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-card {
  display: block;
  text-decoration: none;
  color: #111517;
}

.home-card .card-media {
  height: 150px;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}

.home-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-card:hover .card-media img {
  transform: scale(1.03);
}

.card-cars::after {
  content: "RENAULT 5";
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #000000;
  color: #FFD500;
  font-size: 9px;
  font-weight: 900;
  padding: 3px 8px;
  letter-spacing: 0.16em;
}

.card-events {
  background: #000000;
}

.card-about {
  background: #FFD500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-about svg {
  width: 80px;
  height: 80px;
}

.card-body {
  padding-top: 12px;
}

.card-body h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.card-body h3 svg {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.home-card:hover .card-body h3 svg {
  transform: translateX(3px);
}

.card-body p {
  font-size: 12px;
  color: #64717b;
  line-height: 1.5;
  margin: 4px 0 0;
}

/* Lower feature ------------------------------------------------------ */
.home-feature {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px) 40px;
}

.home-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.home-feature-image {
  height: 210px;
  overflow: hidden;
  background: #e5e5e5;
}

.home-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-feature-text h2 {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 12px;
}

.home-feature-text p {
  font-size: 12px;
  color: #64717b;
  line-height: 1.6;
  max-width: 340px;
  margin: 0 0 16px;
}

.home-feature-text .button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #FFD500;
  color: #111517;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

/* Flash / notice ----------------------------------------------------- */
.flash-section {
  max-width: 1120px;
  margin: 20px auto 0;
  padding: 0 16px;
}

.notice,
.panel.full .notice {
  background: #f3f5f6;
  border-left: 4px solid #FFD500;
  padding: 12px 16px;
  font-size: 12px;
  color: #111517;
  border-radius: 0;
}

/* Footer ------------------------------------------------------------- */
.site-footer {
  width: 100%;
  background: #111517;
  color: rgba(255, 255, 255, 0.7);
  border: 0;
  border-radius: 0;
  padding: 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px clamp(16px, 4vw, 24px);
}

.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
}

.footer-logo {
  width: auto;
  height: 28px;
  display: block;
}

.footer-brand .brand-title {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.footer-brand .brand-sub {
  font-size: 8px;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
}

.social-links a:hover {
  color: #FFD500;
}

.footer-nav-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  font-size: 10px;
  letter-spacing: 0.04em;
  margin-top: 20px;
}

.footer-nav-center a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-nav-center a:hover {
  color: #FFD500;
}

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  margin-top: 16px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

/* Global public page styles ------------------------------------------ */
body main h1,
body main h2,
body main h3,
body main h4 {
  color: #111517;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body main a:not(.button):not(.site-nav a),
body main .page-hero a:not(.button) {
  color: #111517;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body main a:not(.button):not(.site-nav a):hover,
body main .page-hero a:not(.button):hover {
  color: #a17f00;
}

body main .button,
body main button[type="submit"]:not(.nav-toggle):not(.notification-button):not(.account-button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border: 0;
  border-radius: 4px;
  background: #FFD500;
  color: #111517;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

body main .button:hover,
body main button[type="submit"]:not(.nav-toggle):not(.notification-button):not(.account-button):hover {
  background: #ffdb33;
}

body main .button.ghost,
body main .button.secondary {
  background: transparent;
  color: #111517;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

body main .button.ghost:hover,
body main .button.secondary:hover {
  background: #111517;
  color: #ffffff;
  border-color: #111517;
}

body main .button.danger {
  background: #e53232;
  color: #ffffff;
}

body main .button.danger:hover {
  background: #c72020;
}

body main .page-hero {
  position: relative;
  padding: 0 !important;
  min-height: 260px !important;
  overflow: hidden;
  color: #ffffff;
  background-color: #0f0f0f !important;
  background-image: url('background.webp') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 0 !important;
  box-shadow: none !important;
}

body main .page-hero::after {
  display: none !important;
}

body main .page-hero .page-hero-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: inherit;
  max-width: 1120px;
  margin-inline: auto;
  padding: 0;
  position: relative;
}

body main .page-hero .page-hero-copy {
  position: relative;
  z-index: 10;
  background: rgba(17, 21, 23, 0.78);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px;
}

body main .page-hero h1 {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0;
}

body main .page-hero .eyebrow {
  color: #FFD500;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

body main .page-hero p,
body main .page-hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}

body main .page-hero .page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  flex: none;
  max-width: none;
}

body main .page-hero .page-hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

body main .page-hero .hero-action-group--buttons .page-hero-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body main .page-hero .button.ghost,
body main .page-hero .button.secondary,
body main .page-hero .button.ghost.dark {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

body main .page-hero .button.ghost:hover,
body main .page-hero .button.secondary:hover,
body main .page-hero .button.ghost.dark:hover {
  background: #ffffff;
  color: #111517;
  border-color: #ffffff;
}

body main .page-hero .page-hero-image-wrap {
  min-height: 0;
  background: transparent;
  overflow: hidden;
}

body main .page-hero .hero-diagonal {
  left: 41%;
}

body main .panel,
body main .profile-card,
body main .forum-main,
body main .forum-sidebar,
body main .project-card,
body main .event-card,
body main .member-card,
body main .admin-card {
  background: #ffffff;
  color: #111517;
  border: 1px solid #e6e8ea;
  border-radius: 6px;
  box-shadow: none;
}

body main .panel h2,
body main .panel h3,
body main .panel h4 {
  color: #111517;
}

body main .content-grid,
body main .forum-layout,
body main .events-layout,
body main .projects-layout,
body main .wide-section,
body main .page-hero-inner {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 24px);
}

body main .page-hero-inner {
  padding-block: 18px 12px;
}

body main input,
body main select,
body main textarea {
  padding: 10px 12px;
  border: 1px solid #c8d6e7;
  border-radius: 4px;
  background: #ffffff;
  color: #111517;
  font-family: inherit;
  font-size: 0.9rem;
}

body main input:focus,
body main select:focus,
body main textarea:focus {
  border-color: #FFD500;
  outline: 2px solid rgba(255, 213, 0, 0.2);
}

body main .field label,
body main label {
  color: #111517;
  font-weight: 600;
  font-size: 0.85rem;
}

body main .flash,
body main .notice,
body main .success,
body main .error,
body main .info {
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 0.9rem;
}

body main .flash.success,
body main .notice.success {
  background: rgba(21, 128, 61, 0.1);
  color: #15803d;
  border: 1px solid rgba(21, 128, 61, 0.15);
}

body main .flash.error,
body main .notice.error {
  background: rgba(229, 50, 50, 0.08);
  color: #991b1b;
  border: 1px solid rgba(229, 50, 50, 0.15);
}

body main .flash.info,
body main .notice.info {
  background: rgba(255, 213, 0, 0.1);
  color: #111517;
  border: 1px solid rgba(255, 213, 0, 0.3);
}

body main .table,
body main table {
  width: 100%;
  border-collapse: collapse;
  color: #111517;
}

body main .table th,
body main table th {
  background: #f7f8f9;
  color: #111517;
  font-weight: 700;
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #e6e8ea;
}

body main .table td,
body main table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e6e8ea;
}

body main .table tr:hover td,
body main table tr:hover td {
  background: #f7f8f9;
}

.hero .hero-copy h1 {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -0.04em;
}

/* Responsive --------------------------------------------------------- */
@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 54px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #111517;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    gap: 3px;
    z-index: 40;
  }

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

  .site-nav a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a::after {
    display: none;
  }

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

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 40px 24px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-diagonal {
    display: none;
  }

  .hero-image-wrap {
    min-height: 180px;
    order: -1;
  }

  .mobile-diagonal {
    display: flex;
  }

  .three-cards-inner {
    grid-template-columns: 1fr;
  }

  .home-feature-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-hero .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero .page-hero-copy {
    padding: 40px 24px;
  }

  .page-hero .page-hero-image-wrap {
    min-height: 180px;
    order: -1;
  }

  body main .page-hero {
    min-height: 220px !important;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy .button {
    width: 100%;
    justify-content: center;
  }

  .home-feature-image {
    height: 180px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Standardized layout helpers ----------------------------------------- */

body main .content-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

body main .content-grid > .panel,
body main .content-grid > .panel:not(.full) {
  border: 1px solid #e6e8ea;
}

body main .content-grid > .search-page-shell,
body main .content-grid > .links-page-shell,
body main .content-grid > .contact-page-shell,
body main .content-grid > .page-listing-shell {
  grid-column: span 12;
}

body main .panel,
body main .panel.full,
body main .panel.half,
body main .panel.third {
  grid-column: span 12;
}

body main .panel.half {
  grid-column: span 6;
}

body main .panel.third {
  grid-column: span 4;
}

body main .contact-page-shell {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

body main .contact-page-shell .contact-info-panel,
body main .contact-page-shell .contact-form-panel {
  grid-column: span 6;
}

body main .button.dark {
  background: #111517;
  color: #ffffff;
  border: 1px solid #111517;
}

body main .button.dark:hover {
  background: #2a2f33;
  border-color: #2a2f33;
}

body main .button.ghost.dark {
  background: transparent;
  color: #111517;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

body main .button.ghost.dark:hover {
  background: #111517;
  color: #ffffff;
  border-color: #111517;
}

body main .description,
body main .panel .description,
body main .home-feature-text p,
body main .card-body p {
  color: #4a545c;
  line-height: 1.6;
}

body main .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  font-size: 12px;
}

body main .contact-info-list span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body main .contact-info-list strong {
  color: #111517;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Home hero sizing aligned with page-hero ----------------------------- */

.hero {
  min-height: 260px;
}

.hero-layout {
  min-height: inherit;
}
