:root {
  --myc-blue: #1d2633;
  --myc-blue-dark: #151d28;
  --myc-yellow: #ffc62c;
  --myc-purple: #a5638f;
  --footer: #1d2633;
  --text: #374151;
  --muted: #6b7280;
  --line: #e5e7eb;
  --green-bg: #ecfdf5;
  --green-line: #d1fae5;
  --gold-bg: #fefce8;
  --gold-line: #fef3c7;
  font-family: Figtree, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: Figtree, Arial, Helvetica, sans-serif;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--myc-blue);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.header-inner {
  position: relative;
  max-width: 1536px;
  min-height: 72px;
  margin: 0 auto;
  padding: 12px 32px 12px 192px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: stretch;
}

.brand img {
  height: 72px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  white-space: nowrap;
  margin-left: 16px;
}

.main-nav .wp-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .menu-item {
  position: relative;
}

.main-nav .menu-item > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 72px;
  padding: 20px 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.main-nav .menu-item > a:hover,
.main-nav .menu-item > a:focus {
  color: var(--myc-yellow);
  outline: none;
}

.main-nav .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 300px;
  padding: 4px 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: .15s ease;
  z-index: 50;
}

.main-nav .menu-item:hover > .sub-menu,
.main-nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .sub-menu a {
  display: block;
  min-height: 0;
  padding: 10px 16px;
  color: #1f2937;
  font-size: 15px;
}

.main-nav .sub-menu a:hover,
.main-nav .sub-menu a:focus {
  background: #f3f4f6;
  color: #1f2937;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 72px;
  padding: 20px 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.nav-link:hover,
.nav-button:hover,
.nav-link:focus,
.nav-button:focus {
  color: var(--myc-yellow);
  outline: none;
}

.chevron {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  flex: 0 0 auto;
  transition: transform .15s ease;
}

.nav-item:hover > .nav-button .chevron,
.nav-item:focus-within > .nav-button .chevron,
.main-nav .menu-item:hover > a .chevron,
.main-nav .menu-item:focus-within > a .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 300px;
  padding: 4px 0;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  color: #1f2937;
  border-radius: 6px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: .15s ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: #1f2937;
}

.dropdown a:hover,
.dropdown a:focus {
  background: #f3f4f6;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.icon-link {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}

.icon-link:hover {
  color: var(--myc-yellow);
}

.cart {
  position: relative;
}

.cart::after {
  content: "0";
  position: absolute;
  top: 0;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--myc-yellow);
  color: #111827;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

main {
  padding-top: 72px;
}

.hero {
  position: relative;
  min-height: 664px;
  height: 72vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.hero-logo {
  width: min(300px, 58vw);
  display: block;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.bars {
  position: absolute;
  bottom: 0;
  z-index: 3;
  height: clamp(64px, 9vw, 128px);
  width: auto;
}

.bars-left {
  left: 0;
}

.bars-right {
  right: 0;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 34px 32px;
}

.intro {
  text-align: center;
  max-width: 1180px;
}

h2 {
  margin: 0 0 18px;
  color: var(--myc-purple);
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.18;
  font-weight: 800;
}

p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--myc-purple);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.button.green {
  background: #10b981;
}

.button.yellow {
  background: var(--myc-yellow);
  color: #111827;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-card {
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--green-line);
  background: var(--green-bg);
}

.feature-card:nth-child(2) {
  border-color: var(--gold-line);
  background: var(--gold-bg);
}

.page-hero {
  background: linear-gradient(110deg, var(--myc-blue-dark), var(--myc-blue));
  color: #fff;
  padding: 88px 32px 56px;
  text-align: center;
}

.image-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.image-hero > img:not(.bars) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.image-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.image-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.image-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.image-hero p {
  margin: 0 auto;
  max-width: 820px;
  color: rgba(255, 255, 255, .95);
  font-size: clamp(20px, 2.4vw, 26px);
}

.page-hero h1 {
  margin: 0 auto 12px;
  max-width: 980px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .92);
}

.content-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: 38px 32px 52px;
}

.news-layout {
  position: relative;
  padding: 96px 0 70px;
  overflow: hidden;
  background: #fff;
}

.news-layout-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
}

.news-bars {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: auto;
  height: 128px;
  object-fit: contain;
  transition: opacity .3s ease;
  pointer-events: none;
}

.news-bars-left {
  left: 0;
}

.news-bars-right {
  right: 0;
}

.news-page-header {
  margin-bottom: 24px;
}

.news-page-header h1 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 36px;
  line-height: 1.15;
}

.news-page-header p {
  margin: 0;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.6;
}

.news-intro {
  padding: 20px;
  margin-bottom: 48px;
}

.news-intro h2 {
  margin: 0 0 14px;
  color: #374151;
  font-size: 24px;
  line-height: 1.25;
}

.news-intro p {
  margin: 0 0 15px;
  color: #374151;
  line-height: 1.7;
}

.news-intro ul {
  margin: 15px 0 0;
  padding-left: 25px;
  color: #374151;
  line-height: 1.7;
}

.news-intro li {
  margin-bottom: 5px;
}

.news-latest {
  margin-top: 48px;
}

.news-latest > h2 {
  margin: 0 0 32px;
  color: #1f2937;
  font-size: 30px;
  line-height: 1.2;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.news-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  transition: box-shadow .3s ease;
}

.news-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.news-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #fde68a, var(--myc-yellow));
}

.news-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.news-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.news-card-placeholder h3 {
  margin: 0;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.3;
}

.news-card-body {
  padding: 24px;
}

.news-card-body h3 {
  margin: 0 0 8px;
  color: #1f2937;
  font-size: 20px;
  line-height: 1.3;
}

.news-card-body h3 a:hover,
.news-card-body h3 a:focus {
  color: var(--myc-purple);
}

.news-card-body time {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 14px;
}

.news-card-body p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  color: var(--myc-purple);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.news-read-more:hover,
.news-read-more:focus {
  color: var(--myc-yellow);
}

.news-empty {
  grid-column: 1 / -1;
  margin: 0;
  color: #4b5563;
}

.news-result-count {
  margin: 24px 0 12px;
  color: #4b5563;
  font-size: 14px;
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--myc-blue);
  font-weight: 600;
}

.news-pagination .current,
.news-pagination .page-numbers:hover,
.news-pagination .page-numbers:focus {
  background: var(--myc-blue);
  color: #fff;
  border-color: var(--myc-blue);
}

.page-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0 28px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .12);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 26px 0;
}

.image-card {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
}

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

.image-card h3 {
  margin: 0;
  padding: 14px 16px 4px;
  color: var(--myc-purple);
  font-size: 20px;
}

.image-card p {
  padding: 0 16px 16px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.publication-grid .image-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 16px;
  background: #f8fafc;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 18px 0 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #0f172a;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.malaysia-locations {
  max-width: 1180px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 18px 0 28px;
}

.location-grid[hidden] {
  display: none;
}

.location-state {
  border-bottom: 1px solid var(--line);
}

.location-state:first-child {
  border-top: 1px solid var(--line);
}

.location-state-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 72px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--myc-purple);
  font: inherit;
  font-size: 30px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.location-state-toggle::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--myc-yellow);
  color: var(--myc-blue);
  font-size: 28px;
  line-height: 1;
}

.location-state-toggle[aria-expanded="true"]::after {
  content: "-";
}

.location-state-count {
  margin-left: auto;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
}

.location-card-no-image {
  grid-template-columns: 1fr;
}

.location-card img {
  width: 132px;
  height: 104px;
  object-fit: cover;
  border-radius: 6px;
}

.location-card h3 {
  margin: 0 0 8px;
  color: var(--myc-blue);
  font-size: 18px;
  line-height: 1.25;
}

.location-card p {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.location-card .phone {
  color: var(--myc-purple);
  font-weight: 700;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--myc-yellow);
  color: var(--myc-blue);
  font-weight: 800;
  text-transform: lowercase;
}

.location-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--myc-blue);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.location-social-link i {
  color: var(--myc-purple);
  font-size: 16px;
}

.location-social-link:hover,
.location-social-link:focus {
  background: #f8fafc;
  color: var(--myc-purple);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 325px;
  gap: 32px;
  align-items: start;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .12);
  background: #111827;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-content h2 {
  font-size: 28px;
  margin-top: 28px;
}

.article-content ol {
  margin: 16px 0 24px;
  padding-left: 28px;
}

.article-content ul {
  margin: 16px 0 24px;
  padding-left: 28px;
  list-style: disc;
}

.article-content li {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 6px;
}

.article-content hr {
  border: 0;
  border-top: 2px solid var(--myc-purple);
  margin: 26px 0;
}

.sidebar-stack {
  display: grid;
  gap: 24px;
}

.promo-card {
  position: relative;
  min-height: 192px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .14);
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
}

.promo-card-content {
  position: relative;
  z-index: 1;
  min-height: 192px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
}

.promo-card h3 {
  margin: 0;
  font-size: 20px;
}

.promo-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.soft-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .06);
}

.soft-box h3 {
  margin: 0 0 10px;
  color: var(--myc-purple);
  font-size: 24px;
}

.soft-box p,
.soft-box li {
  font-size: 17px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  text-align: center;
}

.stats-row div {
  padding: 24px 18px;
  border-radius: 8px;
  background: #f7f7fb;
  border: 1px solid var(--line);
}

.stats-row strong {
  display: block;
  color: var(--myc-purple);
  font-size: 38px;
  line-height: 1;
}

.stats-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 28px;
  align-items: start;
}

.story-portrait {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.centered-statement {
  text-align: center;
  color: var(--myc-purple);
}

.timeline-image {
  display: block;
  width: 100%;
  max-width: 805px;
  height: auto;
  margin: 0 auto 28px;
}

.location-box {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  background: #f9fafb;
}

.search-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 18px;
}

.search-bar input {
  min-height: 48px;
  border: 1px solid #d1d5db;
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
}

.site-footer {
  background: var(--footer);
  color: #fff;
  margin-top: auto;
  font-weight: 700;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 26px;
  text-align: center;
}

.footer-title {
  margin: 0 0 28px;
  color: var(--myc-yellow);
  font-size: 24px;
}

.footer-contact {
  line-height: 1.7;
  margin-bottom: 24px;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 22px 0 30px;
  font-size: 24px;
}

.social-icon {
  color: #fff;
  transition: color .2s ease;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  color: #d1d5db;
  font-size: 14px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer a:hover {
  color: var(--myc-yellow);
}

@media (max-width: 1040px) {
  .header-inner {
    padding-left: 118px;
  }

  .brand img {
    height: 72px;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 12px 24px 24px;
    background: var(--myc-blue);
    white-space: normal;
  }

  body.nav-open .main-nav {
    display: block;
  }

  .nav-link,
  .nav-button,
  .main-nav .menu-item > a {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
    padding: 8px 0;
  }

  .nav-item,
  .main-nav .menu-item {
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .dropdown,
  .main-nav .sub-menu {
    position: static;
    min-width: 0;
    margin: 0 0 8px 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
    background: transparent;
    border: 0;
  }

  .nav-item.open .dropdown,
  .main-nav .menu-item.open > .sub-menu {
    display: block;
  }

  .main-nav .wp-menu {
    display: block;
  }

  .main-nav .sub-menu a {
    color: #fff;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .feature-grid,
  .two-column,
  .image-grid {
    grid-template-columns: 1fr;
  }

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

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0 14px 0 94px;
  }

  .brand img {
    height: 72px;
  }

  .hero {
    min-height: 460px;
  }

  .image-hero {
    min-height: 430px;
  }

  .section,
  .content-panel,
  .news-layout-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-layout {
    padding-top: 88px;
  }

  .news-bars {
    height: 64px;
  }

  .news-page-header h1 {
    font-size: 32px;
  }

  .news-page-header p {
    font-size: 18px;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .story-split {
    grid-template-columns: 1fr;
  }

  .story-portrait {
    max-width: 180px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-card img {
    width: 96px;
    height: 96px;
  }

  p {
    font-size: 17px;
  }

  .search-bar {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
