header.main-header {
  display: none !important;
}

body {
  background-color: #0b0b0b !important;
  padding-top: 20px !important;
  overflow-x: hidden !important;
}

.entry-content .atlas-cta {
    
    background: rgba(11, 11, 11, 1)!important;
    border: none!important;
    border-radius: 14px;
    padding: 18px 20px;
    margin: 24px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}
h1, h2, h3, h4, h4 a,p,li,.post-excerpt,.entry-title, .post-title {
  color: #fff !important;
}

.post-details h3.entry-title.post-title,
.post-details h3.entry-title.post-title a,
.post-details .entry-summary.post-excerpt {
  color: #fff !important;
}
.post-details h2.entry-title,
.post-details h2.entry-title.link-plain,
.post-details h2.entry-title a,
.post-details h2.entry-title.link-plain a {
  color: #fff !important;
}
/* Search results entries */
.search-results__entry-content .entry-title,
.search-results__entry-content .entry-title a,
.search-results__entry-content h2.entry-title,
.search-results__entry-content h2.entry-title.link-plain a,
.search-results__entry-content .entry-summary,
.search-results__entry-content .entry-actions,
.search-results__entry-content .entry-actions a,
.search-results__entry-content .post-link {
  color: #fff !important;
}

.post-details .entry-title,
.post-details .entry-title a,
.post-details .post-title,
.post-details .post-title a,
.post-details .entry-summary.post-excerpt {
  color: #fff !important;
}
/* Widget area background */
.widget-area.blog-archive--widgets {
  background-color: black !important;
}

/* All text white */
.widget-area.blog-archive--widgets,
.widget-area.blog-archive--widgets * {
  color: #fff !important;
}

/* Widget titles */
.widget-area.blog-archive--widgets .widget-title,
.widget-area.blog-archive--widgets h2 {
  color: #fff !important;
}

/* All links white */
.widget-area.blog-archive--widgets a,
.widget-area.blog-archive--widgets ul li a,
.widget-area.blog-archive--widgets li.cat-item a {
  color: #fff !important;
  text-decoration: none;
}

/* Link hover effect - light gray */
.widget-area.blog-archive--widgets a:hover,
.widget-area.blog-archive--widgets ul li a:hover,
.widget-area.blog-archive--widgets li.cat-item a:hover {
  color: #ccc !important;
}

/* List items */
.widget-area.blog-archive--widgets ul li,
.widget-area.blog-archive--widgets li.cat-item {
  color: #fff !important;
}

/* Search field - white text, gray placeholder */
.widget-area.blog-archive--widgets .search-field {
  color: #fff !important;
  background-color: #222 !important;
}

.widget-area.blog-archive--widgets .search-field::placeholder {
  color: #999 !important;
}

/* Search submit button */
.widget-area.blog-archive--widgets .search-submit {
  color: #fff !important;
  background-color: #333 !important;
  border-color: #fff !important;
}

.widget-area.blog-archive--widgets .search-submit:hover {
  background-color: #444 !important;
}

/* Screen reader text (keep hidden) */
.widget-area.blog-archive--widgets .screen-reader-text {
  position: absolute;
  left: -9999px;
}
.post-meta {
  color: rgb(243, 156, 18) !important;
}


/* ------------------------------------------
   HEADER BAR (shared desktop + mobile)
   ------------------------------------------ */
.atk-hdr {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100000;
  background: #0b0b0b;
}

.atk-hdr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
}

.atk-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.atk-logo img {
  display: block;
  height: auto;
}

/* CTA */
.atk-btn {
  display: inline-block;
  background: rgb(243, 156, 18) !important;
  color: #000 !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 16px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.atk-btn:hover {
  opacity: 0.85;
  color: #000 !important;
}


/* ------------------------------------------
   DESKTOP NAV
   ------------------------------------------ */
.atk-dnav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.atk-dnav .atk-list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
}

.atk-dnav .atk-list > li {
  position: relative;
}

.atk-dnav .atk-list > li > a {
  color: #fff !important;
  text-decoration: none;
  padding: 8px 12px;
  font-size: 0.95rem;
  display: block;
  transition: color 0.2s;
}

.atk-dnav .atk-list > li > a:hover {
  color: rgb(243, 156, 18) !important;
}

/* Desktop sub-menu hover */
.atk-dnav .atk-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px 0;
  list-style: none;
  z-index: 100001;
  margin-top: 4px;
}

.atk-dnav .atk-parent:hover > .atk-sub {
  display: block;
}

.atk-dnav .atk-sub li a {
  display: block;
  padding: 8px 20px;
  color: rgba(255,255,255,0.8) !important;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: color 0.2s;
}

.atk-dnav .atk-sub li a:hover {
  color: rgb(243, 156, 18) !important;
}



/* ------------------------------------------
   DESKTOP / MOBILE VISIBILITY
   ------------------------------------------ */
.atk-hdr-desk { display: block; }
.atk-hdr-mob  { display: none;  }

@media (max-width: 767px) {
  .atk-hdr-desk { display: none !important; }
  .atk-hdr-mob  { display: block !important; }

  body {
    padding-top: 64px !important;
  }
}


/* ------------------------------------------
   MOBILE
   ------------------------------------------ */
@media (max-width: 767px) {

  .atk-hdr-mob .atk-hdr-row {
    height: 64px;
    padding: 0 16px;
  }

  /* ---- Hamburger / X ---- */
  .atk-ham {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 44px;
    height: 44px;
    -webkit-tap-highlight-color: transparent;
    z-index: 100003;
    position: relative;
  }

  .atk-ham svg {
    fill: #fff;
    pointer-events: none;
  }

  .atk-ico-open  { display: block; }
  .atk-ico-x     { display: none;  }

  .atk-ham.--on .atk-ico-open { display: none;  }
  .atk-ham.--on .atk-ico-x    { display: block; }


  /* ---- Dropdown panel ---- */
  .atk-drop {
    display: none;
    position: fixed;
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 32px);
    max-width: 360px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 16px 24px;
    z-index: 100002;
  }

  .atk-drop.--on {
    display: block;
  }

  /* Menu list */
  .atk-drop .atk-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .atk-drop .atk-list > li {
    text-align: center;
    margin: 0;
  }

  .atk-drop .atk-list > li > a {
    display: block;
    padding: 12px 8px;
    color: #fff !important;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }

  .atk-drop .atk-list > li > a:hover {
    color: rgb(243, 156, 18) !important;
  }

  /* ---- Sub-menus ---- */
  .atk-drop .atk-sub {
    display: none;
    list-style: none;
    padding: 4px 0 8px;
    margin: 0;
  }

  .atk-drop .atk-parent.--on > .atk-sub {
    display: block;
  }

  .atk-drop .atk-sub li {
    text-align: center;
  }

  .atk-drop .atk-sub li a {
    display: block;
    padding: 8px;
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }

  .atk-drop .atk-sub li a:hover {
    color: rgb(243, 156, 18) !important;
  }

  /* Carets */
  

  /* ---- Mobile CTA ---- */
  .atk-btn-full {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 16px;
    padding: 14px 0;
    font-size: 0.95rem;
  }

  /* ---- Overlay ---- */
  .atk-shade {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 100001;
  }

  .atk-shade.--on {
    display: block;
  }
}


/* ------------------------------------------
   BLOG POST: title above image
   ------------------------------------------ */
.single-post .post-content,
.single-post .entry-content {
  display: flex;
  flex-direction: column;
}

.single-post .entry-header {
  order: 0;
  position: static !important;
  margin-bottom: 24px;
}

.single-post .post-image {
  order: 1;
}

.single-post .container-child {
  display: flex;
  flex-direction: column;
}

.entry-header.container-child {
  margin-top: 0;
}

@media (max-width: 767px) {
  .post-image + .entry-header {
    padding: 20px 16px;
  }
  .entry-title {
    font-size: 1.4rem;
  }
}
