/*
Theme Name: Appurl Signal
Author: Harbor Lane Creative
Description: A classic WordPress theme with a clean SaaS-inspired editorial layout, responsive navigation, dynamic post grids, and Customizer-controlled hero content.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: apu-theme
Tags: blog, custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
  --apu-navy: #051b31;
  --apu-slate: #485867;
  --apu-blue: #4351ed;
  --apu-cyan: #3aadff;
  --apu-lavender: #f7f4ff;
  --apu-lavender-2: #f5f0ff;
  --apu-panel: #f6f9fc;
  --apu-line: #e6ebf2;
  --apu-lime: #d9ff67;
  --apu-pink: #ff6f91;
  --apu-shadow: 0 24px 70px rgba(77, 93, 178, .16);
  --apu-font: "Inter Tight", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--apu-navy);
  background: #fff;
  font-family: var(--apu-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .apu-topbar {
  top: 32px;
}

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

a:hover,
a:focus {
  color: var(--apu-blue);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 5px;
  left: 5px;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  clip: auto;
  color: var(--apu-navy);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, .12);
}

.apu-site {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 4%, rgba(173, 91, 228, .18), transparent 28rem),
    radial-gradient(circle at 90% 5%, rgba(58, 173, 255, .18), transparent 30rem),
    linear-gradient(180deg, #fbfbff 0, #fff 34rem);
}

.apu-topbar {
  z-index: 50;
  position: sticky;
  top: 0;
  padding: 12px 18px 0;
}

.apu-nav {
  width: min(1180px, calc(100vw - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(5, 27, 49, .06);
  border-radius: 40px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 40px rgba(5, 27, 49, .08);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.apu-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--apu-navy);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: 0;
}

.apu-brand:hover,
.apu-brand:focus {
  color: var(--apu-navy);
}

.apu-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--apu-cyan), var(--apu-blue));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.apu-brand img {
  width: auto;
  max-height: 42px;
}

.apu-menu-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.apu-menu,
.apu-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.apu-menu li {
  position: relative;
}

.apu-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 22px;
  color: var(--apu-slate);
  font-size: 15px;
  font-weight: 650;
}

.apu-menu a:hover,
.apu-menu a:focus,
.apu-menu .current-menu-item > a,
.apu-menu .current_page_item > a {
  background: #f3f6fb;
  color: var(--apu-navy);
}

.apu-menu .sub-menu,
.apu-menu .children {
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--apu-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(5, 27, 49, .1);
  display: none;
  align-items: stretch;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
}

.apu-menu li:hover > .sub-menu,
.apu-menu li:focus-within > .sub-menu,
.apu-menu li:hover > .children,
.apu-menu li:focus-within > .children {
  display: flex;
}

.apu-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.apu-pill-button,
.apu-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--apu-cyan), var(--apu-blue));
  color: #fff;
  box-shadow: 0 16px 30px rgba(67, 81, 237, .24);
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}

.apu-pill-button:hover,
.apu-pill-button:focus {
  color: #fff;
  transform: translateY(-1px);
}

.apu-soft-button {
  background: #fff;
  color: var(--apu-navy);
  box-shadow: 0 14px 28px rgba(5, 27, 49, .08);
}

.apu-soft-button:hover,
.apu-soft-button:focus {
  color: var(--apu-navy);
}

.apu-menu-toggle {
  display: none;
  width: 46px;
  padding: 0;
  background: #f3f6fb;
  color: var(--apu-navy);
  box-shadow: none;
}

.apu-hero {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 92px 0 54px;
  text-align: center;
  position: relative;
}

.apu-hero::before {
  content: "";
  z-index: 0;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 204, 255, .55), transparent 68%);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.apu-hero-inner {
  z-index: 1;
  position: relative;
}

.apu-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 3px 13px;
  border: 1px solid rgba(173, 91, 228, .35);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--apu-blue);
  box-shadow: 0 10px 24px rgba(173, 91, 228, .1);
  font-size: 14px;
  font-weight: 720;
}

.apu-hero-title {
  max-width: 820px;
  margin: 22px auto 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  font-weight: 780;
}

.apu-hero-description {
  max-width: 590px;
  margin: 0 auto;
  color: var(--apu-slate);
  font-size: 18px;
  line-height: 1.55;
}

.apu-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.apu-dashboard-shell {
  width: min(920px, 100%);
  margin: 64px auto 0;
  border: 12px solid rgba(246, 249, 252, .9);
  border-radius: 34px;
  background: rgba(255, 255, 255, .74);
  box-shadow: var(--apu-shadow);
  overflow: hidden;
  text-align: left;
}

.apu-dashboard {
  min-height: 458px;
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
}

.apu-sidebar {
  padding: 24px 18px;
  border-radius: 18px;
  background: #f5f7fa;
}

.apu-mini-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-weight: 800;
}

.apu-mini-logo span:first-child {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--apu-cyan), var(--apu-blue));
}

.apu-side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: var(--apu-slate);
  font-size: 14px;
  font-weight: 650;
}

.apu-side-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccd5e1;
}

.apu-side-link.is-active {
  color: var(--apu-blue);
}

.apu-side-link.is-active .apu-side-dot {
  background: var(--apu-blue);
}

.apu-board-main {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.apu-board-top {
  min-height: 62px;
  padding: 10px 12px;
  border-radius: 18px;
  background: #f5f7fa;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.apu-search {
  flex: 1;
  max-width: 360px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #8994a3;
  box-shadow: inset 0 0 0 1px #eef1f5;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.apu-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, #fff 0 5px, transparent 6px),
    linear-gradient(135deg, var(--apu-pink), var(--apu-blue));
}

.apu-board-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr 1.2fr;
  gap: 14px;
}

.apu-card {
  min-height: 132px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #edf1f6;
}

.apu-card h3 {
  margin: 0;
  color: var(--apu-slate);
  font-size: 14px;
  font-weight: 750;
}

.apu-stat {
  margin-top: 16px;
  font-size: 46px;
  line-height: 1;
  font-weight: 780;
}

.apu-gradient-card {
  background: linear-gradient(135deg, #ece8ff 0, #fff4eb 48%, #ff9e8f 100%);
}

.apu-lime-card {
  background: linear-gradient(135deg, #efffba 0, var(--apu-lime) 100%);
}

.apu-topic-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.apu-topic-line {
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 10px;
  align-items: center;
  color: var(--apu-slate);
  font-size: 12px;
}

.apu-meter {
  height: 7px;
  border-radius: 99px;
  background: #edf1f6;
  overflow: hidden;
}

.apu-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ad5be4, var(--apu-blue));
}

.apu-wide-card {
  grid-column: span 2;
  min-height: 170px;
  background: linear-gradient(135deg, #f8fbff, #edf6ff);
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: center;
  gap: 20px;
}

.apu-chart {
  height: 118px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 0 28%, rgba(67, 81, 237, .08) 29% 30%, transparent 31% 56%, rgba(67, 81, 237, .08) 57% 58%, transparent 59%),
    linear-gradient(135deg, rgba(58, 173, 255, .32), rgba(173, 91, 228, .2));
  position: relative;
  overflow: hidden;
}

.apu-chart::after {
  content: "";
  width: 145%;
  height: 80px;
  border: 4px solid var(--apu-blue);
  border-color: var(--apu-blue) transparent transparent transparent;
  border-radius: 50%;
  position: absolute;
  left: -24px;
  bottom: -30px;
  transform: rotate(-7deg);
}

.apu-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.apu-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f1f4ff;
  color: var(--apu-blue);
  font-size: 12px;
  font-weight: 750;
}

.apu-chip.is-lime {
  background: #efffba;
  color: #3f5a00;
}

.apu-logo-rail {
  width: min(880px, calc(100vw - 32px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.apu-logo-pill {
  min-height: 62px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(5, 27, 49, .06);
  color: #11263a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 780;
  text-align: center;
}

.apu-posts {
  padding: 86px 0 110px;
  background: linear-gradient(180deg, var(--apu-panel), #fff);
}

.apu-section-head {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.apu-section-head h2 {
  max-width: 540px;
  margin: 15px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.apu-section-head p {
  max-width: 390px;
  margin: 0;
  color: var(--apu-slate);
  line-height: 1.55;
}

.apu-post-grid {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.apu-post-card {
  min-height: 430px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(5, 27, 49, .08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.apu-post-image {
  min-height: 184px;
  padding: 18px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, .94), transparent 58px),
    linear-gradient(135deg, #ece8ff, #e9f7ff 48%, #fff4eb);
}

.apu-post-image img {
  width: 100%;
  height: 184px;
  object-fit: cover;
  border-radius: 17px;
  box-shadow: 0 16px 34px rgba(5, 27, 49, .1);
}

.apu-post-image.is-fallback-dark {
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 255, 103, .65), transparent 58px),
    linear-gradient(135deg, #071c32, #122b44);
}

.apu-floating-window {
  width: 100%;
  height: 100%;
  min-height: 142px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 16px 34px rgba(5, 27, 49, .1);
}

.apu-window-line {
  height: 9px;
  margin-bottom: 10px;
  border-radius: 99px;
  background: #dfe6f0;
}

.apu-window-line:nth-child(2) {
  width: 66%;
  background: var(--apu-blue);
}

.apu-window-line:nth-child(3) {
  width: 82%;
}

.apu-window-line:nth-child(4) {
  width: 54%;
  background: #ff9e8f;
}

.apu-post-body {
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.apu-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--apu-slate);
  font-size: 13px;
  font-weight: 720;
}

.apu-post-meta a {
  color: var(--apu-slate);
}

.apu-post-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: 0;
}

.apu-post-card p {
  margin: 0;
  color: var(--apu-slate);
  font-size: 15px;
  line-height: 1.55;
}

.apu-read-more {
  margin-top: auto;
  padding-top: 22px;
  color: var(--apu-blue);
  font-weight: 800;
}

.apu-empty {
  width: min(760px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(5, 27, 49, .08);
  text-align: center;
}

.apu-archive-hero {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 86px 0 42px;
}

.apu-archive-panel {
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(5, 27, 49, .06);
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 12%, rgba(173, 91, 228, .18), transparent 24rem),
    radial-gradient(circle at 92% 0%, rgba(58, 173, 255, .2), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 249, 252, .96));
  box-shadow: var(--apu-shadow);
  text-align: center;
}

.apu-archive-title {
  max-width: 820px;
  margin: 22px auto 16px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

.apu-archive-description {
  max-width: 650px;
  margin: 0 auto;
  color: var(--apu-slate);
  font-size: 18px;
  line-height: 1.6;
}

.apu-archive-description p {
  margin: 0;
}

.apu-archive-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 22px;
  padding: 0 14px;
  border-radius: 999px;
  background: #efffba;
  color: #3f5a00;
  font-size: 13px;
  font-weight: 780;
}

.apu-archive-posts {
  padding-top: 54px;
}

.apu-archive-grid {
  grid-template-columns: repeat(3, 1fr);
}

.apu-pagination {
  width: min(1160px, calc(100vw - 32px));
  margin: 38px auto 0;
}

.apu-pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.apu-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  padding: 12px 14px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(5, 27, 49, .08);
  color: var(--apu-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 760;
}

.apu-pagination .current {
  background: linear-gradient(90deg, var(--apu-cyan), var(--apu-blue));
  color: #fff;
}

.apu-single-hero {
  width: min(80vw, 980px);
  margin: 0 auto;
  padding: 86px 0 30px;
  text-align: center;
}

.apu-single-hero h1 {
  margin: 18px 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1;
  letter-spacing: 0;
}

.apu-single-meta {
  color: var(--apu-slate);
  font-size: 15px;
  font-weight: 700;
}

.apu-single-content {
  width: min(80vw, 980px);
  margin: 0 auto 90px;
  padding: 48px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(5, 27, 49, .08);
  color: var(--apu-navy);
  font-size: 18px;
  line-height: 1.76;
}

.apu-single-content > *:first-child {
  margin-top: 0;
}

.apu-single-content > *:last-child {
  margin-bottom: 0;
}

.apu-single-content h2,
.apu-single-content h3,
.apu-single-content h4 {
  line-height: 1.14;
  letter-spacing: 0;
}

.apu-single-content a {
  color: var(--apu-blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.apu-single-content blockquote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--apu-blue);
  border-radius: 18px;
  background: var(--apu-panel);
}

.apu-single-content table {
  width: 100%;
  border-collapse: collapse;
}

.apu-single-content th,
.apu-single-content td {
  padding: 12px;
  border: 1px solid var(--apu-line);
}

.apu-single-content img {
  border-radius: 20px;
}

.apu-post-nav {
  width: min(80vw, 980px);
  margin: -54px auto 90px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.apu-post-nav a {
  min-height: 46px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(5, 27, 49, .08);
  color: var(--apu-navy);
  font-weight: 760;
}

.apu-footer {
  padding: 34px 0;
  background: #071c32;
  color: rgba(255, 255, 255, .72);
}

.apu-footer-inner {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.apu-footer strong,
.apu-footer a {
  color: #fff;
}

.apu-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (max-width: 980px) {
  body.admin-bar .apu-topbar {
    top: 46px;
  }

  .apu-nav {
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .apu-menu-toggle {
    display: inline-flex;
  }

  .apu-menu-wrap {
    order: 3;
    display: none;
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .apu-nav.is-open .apu-menu-wrap {
    display: block;
  }

  .apu-menu,
  .apu-menu ul {
    align-items: stretch;
    flex-direction: column;
  }

  .apu-menu {
    width: 100%;
    padding-top: 12px;
  }

  .apu-menu a {
    width: 100%;
    justify-content: space-between;
  }

  .apu-menu .sub-menu,
  .apu-menu .children {
    position: static;
    display: flex;
    width: 100%;
    margin-top: 6px;
    box-shadow: none;
  }

  .apu-actions .apu-soft-button {
    display: none;
  }

  .apu-hero {
    padding-top: 62px;
  }

  .apu-dashboard {
    grid-template-columns: 1fr;
  }

  .apu-sidebar {
    display: none;
  }

  .apu-board-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apu-wide-card {
    grid-column: span 2;
  }

  .apu-logo-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .apu-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .apu-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .apu-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 782px) {
  body.admin-bar .apu-topbar {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .apu-topbar {
    padding-right: 12px;
    padding-left: 12px;
  }

  .apu-nav {
    width: 100%;
    border-radius: 24px;
  }

  .apu-actions .apu-pill-button {
    display: none;
  }

  .apu-hero h1,
  .apu-hero-title {
    font-size: 44px;
  }

  .apu-hero-description {
    font-size: 16px;
  }

  .apu-dashboard-shell {
    margin-top: 38px;
    border-width: 8px;
    border-radius: 24px;
  }

  .apu-dashboard {
    padding: 12px;
  }

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

  .apu-search {
    width: 100%;
    max-width: none;
  }

  .apu-board-grid,
  .apu-post-grid,
  .apu-archive-grid,
  .apu-logo-rail {
    grid-template-columns: 1fr;
  }

  .apu-wide-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .apu-posts {
    padding-top: 60px;
  }

  .apu-single-hero,
  .apu-single-content,
  .apu-post-nav {
    width: 80vw;
  }

  .apu-single-content {
    padding: 28px;
    font-size: 16px;
  }

  .apu-post-nav {
    flex-direction: column;
  }
}
