:root {
  --coral: #e9775d;
  --coral-deep: #c95842;
  --charcoal: #1f2a2d;
  --charcoal-2: #12191b;
  --ink: #222629;
  --muted: #677075;
  --line: #e6e1dd;
  --paper: #fbfaf8;
  --panel: #ffffff;
  --gold: #c8a45d;
  --shadow: 0 24px 60px rgba(31, 42, 45, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Outfit', sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}
footer .brand img {
	width: 187px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(31, 42, 45, 0.1);
  transition: padding 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-shrunk {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 40px rgba(31, 42, 45, 0.12);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  transition: min-height 220ms ease;
}

/*.site-header.is-shrunk .header-inner {
  min-height: 66px;
}
*/
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 220px;
  position: relative;
  transition: min-width 220ms ease;
}

.brand-image {
  width: auto;
  height: 66px;
  object-fit: contain;
  background: transparent;
  padding: 6px 0px;
  border-radius: var(--radius);
  transition: opacity 180ms ease, transform 220ms ease, width 220ms ease;
}

.brand-fallback {
  display: none;
  align-items: center;
  gap: 10px;
}

.site-header.is-shrunk .brand {
  min-width: 64px;
}
.brand-compact{
	display: none;
 align-items: center;
  min-width: 220px;
  position: relative;
  transition: min-width 220ms ease;
}
.brand-compact img {
  width: auto;
  height: 66px;
  object-fit: contain;
  background: transparent;
  padding: 6px 0px;
  border-radius: var(--radius);
  transition: opacity 180ms ease, transform 220ms ease, width 220ms ease;
}


.site-header.is-shrunk .brand-image,
.site-header.is-shrunk .brand-fallback {
  display: none !important;
}

.site-header.is-shrunk .brand-compact {
  display: grid;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--coral);
  border: 2px solid var(--coral);
 font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  display: inline-block;
  color: var(--coral);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 8px 10px 7px;
  font-size: 22px;
  letter-spacing: 2px;
}
.footer-grid a:hover {
	color: var(--coral) !important;}

.brand-copy em {
  color: var(--charcoal);
  font-style: normal;
  font-size: 24px;
  letter-spacing: 5px;
  margin-top: 6px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #1f2a2d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  color: #1f2a2d;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.main-nav a::after,
.section-heading a::after,
.dashboard-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--coral-deep);
  text-shadow: 0 0 18px rgba(233, 119, 93, 0.45);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.section-heading a:hover::after,
.dashboard-nav a:hover::after,
.dashboard-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  background: var(--coral);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(233, 119, 93, 0.22);
}

.main-nav .nav-cta::after {
  display: none;
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--coral-deep);
  text-shadow: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 42, 45, 0.18);
  background: transparent;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(18, 25, 27, 0.92), rgba(18, 25, 27, 0.56)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: #fff;
}

.hero-slider {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 420px;
  margin: 0 auto;
  display: grid;
  align-items: center;
}

.hero-slide {
  grid-area: 1 / 1;
  max-width: 860px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 900ms ease, transform 900ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: 'Outfit', sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(32px, 4.2vw, 50px);
}

.hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.newsletter-form button,
.archive-tools button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary,
.newsletter-form button,
.archive-tools button {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 30px rgba(233, 119, 93, 0.28);
}

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

.button.dark {
  width: 100%;
  margin-top: 22px;
  color: #fff;
  background: var(--charcoal);
}

.button:hover,
.newsletter-form button:hover,
.archive-tools button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(31, 42, 45, 0.18);
}

.slider-dots {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--coral);
}

.ticker-band {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  padding: 0 max(16px, calc((100vw - 1180px) / 2));
  background: var(--charcoal);
  color: #fff;
  overflow: hidden;
}

.ticker-band span {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  padding-right: 18px;
  background: var(--charcoal);
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ticker-window {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}

.ticker-track {
  display: inline-block;
  padding-left: 24px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.78);
  animation: ticker 34s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-55%); }
}

.section-wrap,
.dashboard-shell,
.category-directory,
.newsletter {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.section-wrap.muted {
  width: 100%;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background: #f2eee9;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading.vertical {
  display: block;
}

.section-heading h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
}

.section-heading a {
  position: relative;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.feature-grid,
.archive-grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.insight-card {
  color: inherit;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(31, 42, 45, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

.category-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(31, 42, 45, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.category-card:hover,
.category-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(233, 119, 93, 0.5);
  box-shadow: var(--shadow);
}

.category-card span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}

.category-card h3 {
  margin-top: 18px;
  font-size: 27px;
}

.category-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.category-showcase {
  position: relative;
  padding: 76px max(16px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(18, 25, 27, 0.96), rgba(31, 42, 45, 0.9)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  overflow: hidden;
}

.category-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(233, 119, 93, 0.18), transparent 42%, rgba(200, 164, 93, 0.12));
  pointer-events: none;
}

.category-showcase-inner {
  position: relative;
  z-index: 1;
}

.category-showcase .section-heading h2 {
  color: #fff;
}

.category-showcase .section-heading a {
  color: #fff;
}

.category-showcase .button.primary {
  background: #fff;
  color: var(--charcoal);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.category-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mini-category {
  position: relative;
  min-height: 158px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mini-category::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(233, 119, 93, 0.42);
  transform: rotate(18deg);
  transition: transform 220ms ease, border-color 220ms ease;
}

.mini-category:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 119, 93, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.mini-category:hover::after {
  transform: rotate(18deg) scale(1.12);
  border-color: rgba(255, 255, 255, 0.62);
}

.mini-category small {
  color: var(--coral);
  font-size: 12px;
  letter-spacing: 1px;
}

.mini-category span {
  position: relative;
  z-index: 1;
  max-width: 190px;
 font-family: 'Outfit', sans-serif;
  font-size: 25px;
  line-height: 1.12;
}

.mini-category em {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 22px;
}

.blog-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(31, 42, 45, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.blog-card.featured {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(31, 42, 45, 0.94), rgba(31, 42, 45, 0.7)),
    url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1100&q=80") center/cover;
  border-color: rgba(233, 119, 93, 0.38);
}
.archive .eg-category-description{color: rgba(0, 0, 0, 0.66);display: block;letter-spacing: 0px;text-transform: capitalize;font-weight: 400;font-size: 16px;}
.blog-card.featured h3 {
  max-width: 560px;
  color: #fff;
  font-size: 34px;
}

.blog-card.featured p,
.blog-card.featured .source {
  color: rgba(255, 255, 255, 0.78);
}

.blog-card.featured .read-link {
  color: #fff;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 119, 93, 0.45);
  box-shadow: var(--shadow);
}

.blog-card .source {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-top: 12px;
  font-size: 26px;
}

.blog-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 119, 93, 0.45);
  box-shadow: var(--shadow);
}

.insight-card .source {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.insight-card h3 {
  font-size: 25px;
}

.insight-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.read-link {
  align-self: flex-start;
  color: var(--coral-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 34px;
}

.podcast-list {
  display: grid;
  gap: 16px;
}

.podcast-item,
.linkedin-item {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease;
}

.podcast-item:hover,
.linkedin-item:hover {
  transform: translateX(4px);
  border-color: rgba(233, 119, 93, 0.5);
}

.podcast-item h3,
.linkedin-item h3 {
  margin: 6px 0 8px;
  font-size: 21px;
}

.podcast-item p,
.linkedin-item p,
.trend-panel p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
}

.trend-panel {
  padding: 28px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.linkedin-feed {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 72px;
  padding: 42px;
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
	text-align:center;
}

.newsletter h2 {
  font-size: clamp(32px, 5vw, 56px);
}

.newsletter p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
footer ul{
  padding: 0px 15px;
}
.archive-hero {
  padding: 92px max(16px, calc((100vw - 1180px) / 2)) 62px;
  background: linear-gradient(135deg, var(--charcoal), #283234);
  color: #fff;
}

.archive-hero h1 {
  max-width: 820px;
  font-size: clamp(40px, 6vw, 70px);
}

.archive-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
}

.dashboard-nav {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dashboard-nav a {
  position: relative;
  padding: 12px 0;
  color: var(--charcoal);
  font-weight: 800;
}

.dashboard-nav a::after {
  bottom: 4px;
}

.archive-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.single-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
}

.single-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 38px;
}

.reading-rail {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.rail-label {
  color: var(--coral-deep);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reading-rail a {
  color: var(--charcoal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 5px;
}

.article-body h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 30px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.article-summary {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--charcoal);
  font-family: 'Outfit', sans-serif;
  font-size: 25px;
  line-height: 1.45;
}

.article-content {
  margin-top: 34px;
  color: #333;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  line-height: 1.78;
}

.post-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 20px;
}

.sidebar-widget {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(31, 42, 45, 0.06);
}

.sidebar-widget h2 {
  margin-bottom: 16px;
  color: var(--charcoal);
  font-size: 24px;
}

.sidebar-widget p {
  margin: 0;
  color: var(--muted);
}

.sidebar-list {
  display: grid;
  gap: 10px;
}

.sidebar-list a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.sidebar-list a:hover {
  color: var(--coral-deep);
  transform: translateX(3px);
}

.related {
  border-top: 1px solid var(--line);
}

.site-footer {
  background: var(--charcoal-2);
  color: rgba(255, 255, 255, 0.74);
  padding: 54px max(16px, calc((100vw - 1180px) / 2)) 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 38px;
}

.footer-brand {
  display: block;
  color: #fff;
  font-family:'Outfit', sans-serif;
  font-size: 26px;
}

.footer-grid nav {
  display: grid;
  gap: 10px;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-label {
  margin-top: 0;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.skeleton {
  min-height: 260px;
  background: linear-gradient(90deg, #fff, #f2eee9, #fff);
  background-size: 220% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  to { background-position: -220% 0; }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    inset: 100% 16px auto;
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(31, 42, 45, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

  .feature-grid,
  .feature-grid.compact,
  .archive-grid,
  .category-grid,
  .category-preview-grid,
  .blog-grid,
  .editorial-split,
  .newsletter,
  .dashboard-shell,
  .single-shell,
  .single-layout
 {
    grid-template-columns: 1fr;
  }

  .reading-rail,
  .dashboard-nav,
  .post-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand-image {
    width: 190px;
    height: 54px;
  }

  .brand-compact {
    width: 48px;
    height: 48px;
    font-size: 21px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy em {
    font-size: 18px;
  }

  .hero {
    min-height: 520px;
  }

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

  .section-heading,
  .archive-tools,
  .footer-bottom,
  .newsletter-form {
    align-items: flex-start;
    flex-direction: column;
  }

  .newsletter,
  .trend-panel {
    padding: 24px;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  .insight-card {
    min-height: 260px;
  }
	footer ul li {
	list-style-type: none;
}
	.footer-grid{grid-template-columns: 1fr;text-align: center;}
	.footer-bottom span {width: 100%;text-align: center;}
}
