:root {
  --bg: #e6e6e6;
  --paper: #ffffff;
  --text: #444;
  --muted: #5d5d5d;
  --accent: #0d5385;
  --accent-strong: #0a456e;
  --border: #d4d4d4;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  font-family: "Lato", sans-serif;
  line-height: 1.2;
  color: #4a4a4a;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--accent);
  border-bottom: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.brand-mark {
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  font-size: 2rem;
  line-height: 1;
  font-style: italic;
}

.brand-text {
  font-size: 0.66rem;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.main-nav {
  position: relative;
}

.main-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.main-nav > ul > li {
  display: flex;
  align-items: center;
}

.main-nav > ul > li > a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.2rem 0;
}

.main-nav i {
  font-size: 0.68rem;
  opacity: 0.95;
}

.has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.55rem 0.7rem;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  z-index: 30;
}

/* Usynlig bro opp til overordnet menypunkt – unngår at hover faller bort */
.submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

.submenu li {
  margin: 0.3rem 0;
}

.submenu a {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.submenu-button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  display: block;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  padding: 0.5rem 0.75rem;
  border-radius: 0.3rem;
}

.hero {
  padding: 3.2rem 0 2.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.lead {
  font-size: 1.45rem;
  color: var(--muted);
  max-width: 52ch;
  font-weight: 700;
  line-height: 1.25;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 0.12rem;
  text-decoration: none;
  font-weight: 700;
}

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

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-ghost {
  color: var(--accent-strong);
  border: 1px solid var(--accent);
}

.hero-card {
  background: #ececec;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  padding: 1.2rem;
}

.card-title {
  font-weight: 700;
  font-size: 1.2rem;
}

.section {
  padding: 3rem 0;
}

.section-alt {
  background: #dddddd;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature,
.event {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 1rem;
}

.events {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.event-date {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.membership {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 1.2rem;
}

.site-footer {
  padding: 2.2rem 0;
  background: var(--accent);
  color: #fff;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.site-footer p {
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.footer-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-meta p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.92;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}


.social-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-links a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.social-links a:hover {
  background: #fff;
  color: var(--accent);
}

.board-page {
  min-height: 72vh;
}

.board-section {
  padding-top: 3.8rem;
  padding-bottom: 4rem;
  background: #e6e6e6;
}

.board-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.board-header h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: 0.02em;
}

.board-header p {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 2rem 3rem;
  justify-items: center;
}

.board-member {
  text-align: center;
}

.board-member h3 {
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
  font-size: 1.9rem;
  font-weight: 400;
}

.board-member p {
  margin-bottom: 0.25rem;
  font-size: 1.65rem;
}

.board-member a {
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 1.6rem;
}

.board-member a:hover {
  text-decoration: underline;
}

.member-avatar {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
}

.avatar-default {
  background: #fff;
  border: 1px solid #444;
  color: #2f2f35;
  font-size: 5rem;
}

.avatar-a {
  background: radial-gradient(circle at 35% 25%, #d7bd8f, #6f4f34 60%, #43342a);
}

.avatar-b {
  background: radial-gradient(circle at 65% 25%, #9f8f78, #4f4337 60%, #261f1c);
}

.avatar-c {
  background: radial-gradient(circle at 52% 35%, #d39c90, #2a6f87 58%, #112c35);
}

.board-member-center {
  grid-column: 2;
}

.leadership-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.3rem;
  justify-items: stretch;
}

.leadership-member {
  background: #fff;
  border: 1px solid #d5d5d5;
  padding: 1.2rem 1rem;
  border-radius: 6px;
}

.leadership-member .member-avatar {
  margin: 0 auto;
  width: 96px;
  height: 96px;
  font-size: 2.3rem;
}

.leadership-member img.member-avatar {
  object-fit: cover;
}

.leadership-member h3 {
  font-size: 1.35rem;
  margin-top: 0.9rem;
}

.leadership-member p {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.leadership-member a {
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
}

.leadership-phone {
  color: #333;
}

.home-page .site-header {
  background: #050505;
}

.home-page .site-footer {
  background: #004c7d;
}

.hero-opry {
  background-image: url("https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.home-landing .hero-opry {
  background-image: url("../images/header-bg.png");
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.66));
  padding: 7rem 0 6rem;
}

.hero-opry-small .hero-overlay {
  padding: 5rem 0 4.2rem;
}

.hero-opry-inner {
  text-align: center;
  color: #fff;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

.hero-opry h1 {
  color: #fff;
  font-size: clamp(1.6rem, 4.4vw, 3.2rem);
  letter-spacing: 0.04em;
  max-width: 18ch;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.btn-dark,
.btn-dark-outline {
  display: inline-block;
  padding: 0.65rem 1rem;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
  border: 2px solid #fff;
  background: #000;
}

.btn-dark-outline {
  background: transparent;
}

.promo-links {
  background: #0f0f0f;
  padding: 1rem 0;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.promo-grid a {
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  background: #000;
  padding: 0.55rem 0.4rem;
}

.events-opry {
  background: #004c7d;
  padding: 3.2rem 0;
}

.events-opry h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
}

.events-opry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.event-card {
  background: #f2f2f2;
  padding: 0 1.1rem 1rem;
  text-align: center;
}

.event-card-date {
  background: #000;
  color: #fff;
  margin: 0 -1.1rem 1rem;
  padding: 0.85rem 0.6rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.event-card-image {
  width: calc(100% + 2.2rem);
  max-width: none;
  height: 180px;
  margin: 0 -1.1rem 0.9rem;
  object-fit: cover;
}

.event-btn {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.85rem;
  color: #fff;
  text-decoration: none;
  background: #000;
  font-weight: 700;
}

.event-card h3 {
  font-size: 1.02rem;
}

.view-calendar {
  text-align: center;
  margin-top: 1.4rem;
}

.view-calendar a {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.events-page .events-opry {
  background: #fff;
}

.events-page .events-opry h2 {
  color: #111;
}

.events-page .event-card {
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.events-page .view-calendar a {
  color: #111;
}

.visit-strip {
  background: #fff;
  padding: 2rem 0;
}

.visit-strip h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.about-ncma {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.about-ncma p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: #2f2f2f;
  line-height: 1.7;
}

.news-content {
  text-align: left;
  font-size: 1.05rem;
  color: #2f2f2f;
  line-height: 1.7;
}

.news-content p,
.news-content ul,
.news-content ol {
  margin: 0 0 1rem;
}

.news-content ul,
.news-content ol {
  padding-left: 1.5rem;
}

.news-content a {
  color: #8b1e1e;
  text-decoration: underline;
}

.bylaws-content {
  text-align: left;
  column-count: 2;
  column-gap: 2.4rem;
  margin-top: 1.5rem;
}

.bylaws-content > * {
  break-inside: avoid;
}

.bylaws-content p,
.bylaws-content li {
  font-size: 1.02rem;
  line-height: 1.7;
}

.bylaws-content ul,
.bylaws-content ol {
  margin: 0 0 1rem 1.2rem;
}

.about-page-content {
  text-align: left;
  margin-top: 1.5rem;
}

.about-page-content p,
.about-page-content li {
  font-size: 1.02rem;
  line-height: 1.7;
}

.about-page-content ul,
.about-page-content ol {
  margin: 0 0 1rem 1.2rem;
}

.awards-nomination-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.awards-nomination-status {
  margin-top: 1rem;
}

.awards-nomination-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
  text-align: left;
}

.awards-nomination-form-card {
  max-width: none;
}

.awards-nomination-sidebar {
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 1rem;
}

.awards-nomination-sidebar h3 {
  margin-top: 0;
}

.awards-nomination-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.awards-nomination-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.awards-category-description {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.member-benefits-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.member-benefits-grid {
  margin-top: 1rem;
}

.member-benefit-offer {
  color: var(--accent, #c9a227);
}

.opry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: start;
}

.opry-text {
  text-align: left;
}

.opry-image-wrap {
  min-height: 1px;
}

.opry-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid #d9d9d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.opry-gallery {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.opry-gallery-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid #d9d9d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.opry-artists-section {
  margin-top: 4rem;
  padding-top: 3.5rem;
  text-align: center;
}

.opry-artists-divider {
  border: 0;
  border-top: 2px solid #c8c8c8;
  margin: 0 0 2rem;
}

.opry-artists-heading {
  margin-bottom: 1.5rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.opry-artists-empty {
  margin: 0;
  color: #5d5d5d;
}

.opry-artists-grid {
  text-align: center;
}

.signup-strip {
  background: #070707;
  color: #fff;
  padding: 1.8rem 0;
}

.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 1.5rem;
}

.signup-intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.signup-strip h2,
.signup-strip p,
.signup-status {
  color: #fff;
  margin: 0;
}

.signup-form-col {
  width: 100%;
}

.signup-form-col .signup-form {
  width: 100%;
}

.signup-status {
  margin-top: 0.75rem;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.signup-form-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.signup-form-row input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.6rem;
  border: 0;
}

.signup-form-row button {
  flex-shrink: 0;
  border: 0;
  background: #004c7d;
  color: #fff;
  font-weight: 800;
  padding: 0.55rem 1rem;
  white-space: nowrap;
}

.newsletter-recaptcha {
  overflow: hidden;
}

.newsletter-recaptcha .g-recaptcha {
  transform-origin: 0 0;
  transform: scale(0.9);
}

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

.register-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
  align-items: start;
}

.register-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.2rem;
}

.register-form {
  display: grid;
  gap: 0.65rem;
  text-align: left;
}

.register-form label {
  font-weight: 700;
}

.register-form input {
  padding: 0.62rem 0.7rem;
  border: 1px solid #cfd4da;
}

.register-form select,
.register-form textarea {
  padding: 0.62rem 0.7rem;
  border: 1px solid #cfd4da;
}

.register-info {
  text-align: left;
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  padding: 0.8rem;
  margin-bottom: 1rem;
  line-height: 1.65;
}

.register-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.4rem;
}

.form-error {
  color: #b91c1c;
  margin: 0;
  font-size: 0.9rem;
}

.member-portal-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.member-portal-card {
  background: #fff;
  border: 1px solid #d9d9d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  text-align: left;
}

.member-portal-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.member-portal-card p {
  margin: 0 0 0.55rem;
  line-height: 1.55;
}

.member-status {
  font-weight: 700;
}

.member-status--active {
  color: #15803d;
}

.member-status--inactive {
  color: #b91c1c;
}

.member-portal-notice {
  grid-column: 1 / -1;
  background: #fff8e6;
  border: 1px solid #e8c96a;
  padding: 0.85rem 1rem;
  margin-bottom: 0.25rem;
}

.member-portal-notice p {
  margin: 0;
  line-height: 1.55;
}

.member-portal-locked {
  color: #5b6275;
  margin: 0;
  line-height: 1.55;
}

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

.member-news-item {
  border-top: 1px solid #ececec;
  padding-top: 0.7rem;
}

.member-news-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.member-news-item h4 {
  margin: 0.25rem 0;
}

.member-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.member-table th,
.member-table td {
  text-align: left;
  padding: 0.45rem 0;
  border-bottom: 1px solid #ececec;
}

.member-portal-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.member-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
}

.member-modal-panel {
  background: #fff;
  width: 100%;
  max-width: 560px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.member-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #000;
  color: #fff;
}

.member-modal-header h3 {
  margin: 0;
  font-size: 1.05rem;
}

.member-modal-close {
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.member-modal-body {
  padding: 1rem;
}

.member-modal-form {
  display: grid;
  gap: 0.7rem;
}

.member-modal-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.member-modal-form input[type="text"],
.member-modal-form input[type="email"],
.member-modal-form input[type="password"] {
  padding: 0.62rem 0.7rem;
  border: 1px solid #cfd4da;
  font-weight: 400;
}

.member-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

@media (max-width: 880px) {
  .hero-grid,
  .feature-grid,
  .events,
  .membership,
  .footer-grid,
  .board-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .board-member h3 {
    font-size: 1.4rem;
  }

  .board-member p,
  .board-member a {
    font-size: 1.1rem;
  }

  .board-member-center {
    grid-column: auto;
  }

  .promo-grid,
  .events-opry-grid,
  .signup-grid {
    grid-template-columns: 1fr;
  }

  .hero-overlay {
    padding: 5.6rem 0 4.6rem;
  }

  .signup-form-row {
    flex-direction: column;
  }

  .signup-form-row button {
    width: 100%;
  }

  .register-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

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

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

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

  .opry-layout {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .opry-gallery {
    grid-template-columns: 1fr;
  }

  .bylaws-content {
    column-count: 1;
    column-gap: 0;
  }

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

  .main-nav {
    position: absolute;
    right: 4%;
    top: 72px;
    display: none;
    min-width: 220px;
    background: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.3rem;
    padding: 0.8rem;
  }

  .main-nav > ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .submenu {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    padding: 0.25rem 0 0.25rem 0.8rem;
    background: transparent;
  }

  .submenu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
  }

  .has-submenu.open-submenu .submenu {
    display: block;
  }

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