/*
Theme Name: Oakline Journal
Author: Mira Hart
Description: A flexible classic WordPress theme with an editorial reading layout, dynamic categories, mobile-first navigation, and built-in demo imagery.
Version: 1.0.2
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: abk-theme
*/

:root {
  --abk-ink: #030303;
  --abk-muted: #505050;
  --abk-soft: #fafafa;
  --abk-stroke: #e6e6e6;
  --abk-white: #ffffff;
  --abk-coral: #ff8e6c;
  --abk-yellow: #fee581;
  --abk-lime: #52db82;
  --abk-radius-sm: 8px;
  --abk-radius-md: 20px;
  --abk-radius-lg: 32px;
  --abk-radius-xl: 48px;
  --abk-shadow: 0 20px 70px rgba(3, 3, 3, 0.08);
  --abk-font: "Urbanist", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--abk-white);
  color: var(--abk-ink);
  font-family: var(--abk-font);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

.abk-skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: var(--abk-radius-xl);
  background: var(--abk-ink);
  color: var(--abk-white);
  text-decoration: none;
}

.abk-skip-link:focus {
  top: 16px;
}

.abk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 230, 230, 0.55);
}

.abk-header-inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.abk-brand,
.abk-brand-wrap a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--abk-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.abk-brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 28% 28%, var(--abk-white) 0 17%, transparent 18%),
    radial-gradient(circle at 72% 28%, var(--abk-white) 0 17%, transparent 18%),
    radial-gradient(circle at 28% 72%, var(--abk-white) 0 17%, transparent 18%),
    radial-gradient(circle at 72% 72%, var(--abk-white) 0 17%, transparent 18%),
    var(--abk-coral);
  flex: 0 0 auto;
}

.abk-brand img,
.abk-brand-wrap img {
  max-width: 180px;
  height: auto;
}

.abk-menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--abk-stroke);
  border-radius: 999px;
  background: var(--abk-white);
  color: var(--abk-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.abk-menu-toggle-lines,
.abk-menu-toggle-lines::before,
.abk-menu-toggle-lines::after {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  display: block;
  content: "";
}

.abk-menu-toggle-lines {
  position: relative;
}

.abk-menu-toggle-lines::before,
.abk-menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.abk-menu-toggle-lines::before {
  top: -6px;
}

.abk-menu-toggle-lines::after {
  top: 6px;
}

.abk-nav {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 74px;
  padding: 12px;
  border: 1px solid var(--abk-stroke);
  border-radius: var(--abk-radius-md);
  background: var(--abk-white);
  box-shadow: var(--abk-shadow);
  display: none;
}

.abk-nav.abk-is-open {
  display: block;
}

.abk-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.abk-nav-list li {
  position: relative;
}

.abk-nav-list a {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid var(--abk-stroke);
  border-radius: var(--abk-radius-xl);
  background: var(--abk-white);
  color: var(--abk-ink);
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.abk-nav-list a:hover,
.abk-nav-list a:focus,
.abk-nav-list a[aria-current="page"] {
  border-color: var(--abk-coral);
  background: var(--abk-coral);
  outline: none;
}

.abk-nav-list ul {
  list-style: none;
  margin: 8px 0 0 16px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.abk-main {
  min-height: 65vh;
}

.abk-shell {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
}

.abk-hero {
  padding: 16px 0 56px;
}

.abk-hero-grid {
  display: grid;
  gap: 30px;
}

.abk-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-top: 34px;
}

.abk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--abk-muted);
  font-size: 14px;
  font-weight: 600;
}

.abk-avatar-stack {
  display: inline-flex;
  align-items: center;
}

.abk-avatar-dot {
  width: 26px;
  height: 26px;
  margin-left: -7px;
  border: 3px solid var(--abk-white);
  border-radius: 999px;
  background: var(--abk-coral);
}

.abk-avatar-dot:first-child {
  margin-left: 0;
}

.abk-avatar-dot:nth-child(2) {
  background: var(--abk-yellow);
}

.abk-avatar-dot:nth-child(3) {
  background: var(--abk-lime);
}

.abk-hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--abk-ink);
  font-size: 46px;
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.abk-hero-text {
  max-width: 560px;
  margin: 0;
  color: var(--abk-muted);
  font-size: 18px;
}

.abk-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.abk-button {
  min-height: 52px;
  padding: 13px 26px;
  border-radius: var(--abk-radius-xl);
  background: var(--abk-ink);
  color: var(--abk-white);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.abk-button:hover,
.abk-button:focus {
  background: var(--abk-coral);
  color: var(--abk-ink);
  outline: none;
  transform: translateY(-1px);
}

.abk-button-icon {
  width: 52px;
  padding: 0;
  font-size: 24px;
}

.abk-link-button {
  min-height: 52px;
  padding: 10px 8px;
  color: var(--abk-ink);
  font-weight: 750;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.abk-link-button:hover,
.abk-link-button:focus {
  color: var(--abk-coral);
  outline: none;
}

.abk-hero-media {
  position: relative;
  min-height: 440px;
  border-radius: 36px;
  overflow: hidden;
  background: var(--abk-soft);
}

.abk-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.abk-floating-quote,
.abk-floating-card {
  position: absolute;
  z-index: 2;
  max-width: 310px;
  background: var(--abk-white);
  box-shadow: var(--abk-shadow);
}

.abk-floating-quote {
  top: 24px;
  left: 24px;
  right: 24px;
  padding: 10px 16px;
  border-radius: var(--abk-radius-xl);
  color: var(--abk-ink);
  font-size: 15px;
  font-style: italic;
  font-weight: 650;
  line-height: 1.5;
}

.abk-floating-card {
  right: 18px;
  bottom: 18px;
  padding: 18px;
  border-radius: 24px;
}

.abk-floating-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.abk-floating-card span {
  color: var(--abk-muted);
  font-size: 13px;
  line-height: 1.5;
}

.abk-topic-row {
  padding: 18px 0 64px;
}

.abk-topic-layout {
  display: grid;
  gap: 20px;
}

.abk-topic-card {
  min-height: 220px;
  padding: 24px;
  border-radius: var(--abk-radius-lg);
  background: var(--abk-yellow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  position: relative;
}

.abk-topic-card::after {
  position: absolute;
  right: -32px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: var(--abk-lime);
  content: "";
}

.abk-topic-card > * {
  position: relative;
  z-index: 1;
}

.abk-topic-card h2,
.abk-section-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: 0;
}

.abk-topic-card p,
.abk-section-subtitle {
  margin: 0;
  color: var(--abk-muted);
}

.abk-chip-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.abk-chip {
  min-height: 34px;
  padding: 5px 14px;
  border: 1px solid var(--abk-stroke);
  border-radius: var(--abk-radius-xl);
  background: var(--abk-white);
  color: var(--abk-ink);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.abk-chip:hover,
.abk-chip:focus {
  border-color: var(--abk-coral);
  color: var(--abk-coral);
  outline: none;
}

.abk-section-head {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.abk-mosaic-section {
  padding: 0 0 76px;
}

.abk-mosaic {
  display: grid;
  gap: 18px;
}

.abk-mosaic-large,
.abk-mosaic-stack img,
.abk-mosaic-note {
  border-radius: var(--abk-radius-lg);
  overflow: hidden;
}

.abk-mosaic-large {
  min-height: 360px;
}

.abk-mosaic-large img,
.abk-mosaic-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abk-mosaic-stack {
  display: grid;
  gap: 18px;
}

.abk-mosaic-stack img {
  min-height: 210px;
}

.abk-mosaic-note {
  padding: 24px;
  background: var(--abk-lime);
  color: var(--abk-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.abk-mosaic-note strong {
  font-size: 24px;
  line-height: 1.2;
}

.abk-mosaic-note span {
  color: rgba(3, 3, 3, 0.72);
}

.abk-posts {
  padding: 0 0 76px;
}

.abk-post-grid {
  display: grid;
  gap: 22px;
}

.abk-post-card {
  padding: 20px;
  border: 1px solid var(--abk-stroke);
  border-radius: var(--abk-radius-lg);
  background: var(--abk-white);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.abk-post-image-link {
  border-radius: var(--abk-radius-md);
  background: var(--abk-soft);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: block;
}

.abk-post-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.abk-post-image-link:hover img,
.abk-post-image-link:focus img {
  transform: scale(1.04);
}

.abk-post-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.abk-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--abk-muted);
  font-size: 14px;
}

.abk-post-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 0;
}

.abk-post-title a {
  text-decoration: none;
}

.abk-post-title a:hover,
.abk-post-title a:focus {
  color: var(--abk-coral);
  outline: none;
}

.abk-post-excerpt {
  margin: 0;
  color: var(--abk-muted);
}

.abk-empty {
  padding: 34px;
  border: 1px solid var(--abk-stroke);
  border-radius: var(--abk-radius-lg);
  background: var(--abk-soft);
}

.abk-archive-head,
.abk-search-head {
  padding: 70px 0 38px;
}

.abk-archive-label {
  margin: 0 0 12px;
  color: var(--abk-coral);
  font-weight: 800;
}

.abk-archive-title {
  max-width: 900px;
  margin: 0;
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: 0;
}

.abk-archive-description {
  max-width: 760px;
  margin-top: 14px;
  color: var(--abk-muted);
}

.abk-pagination {
  margin-top: 34px;
}

.abk-pagination a,
.abk-pagination span {
  min-width: 38px;
  min-height: 38px;
  margin: 0 4px 8px 0;
  padding: 7px 12px;
  border: 1px solid var(--abk-stroke);
  border-radius: var(--abk-radius-xl);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.abk-pagination span {
  background: var(--abk-ink);
  color: var(--abk-white);
  border-color: var(--abk-ink);
}

.abk-single {
  padding: 72px 0 86px;
}

.abk-single-shell,
.abk-page-shell {
  width: 80vw;
  max-width: 980px;
  margin: 0 auto;
}

.abk-single-head {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abk-single-title {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.abk-content {
  color: var(--abk-ink);
  font-size: 18px;
}

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

.abk-content h1,
.abk-content h2,
.abk-content h3,
.abk-content h4 {
  line-height: 1.2;
  letter-spacing: 0;
}

.abk-content p,
.abk-content ul,
.abk-content ol {
  margin-bottom: 1.25em;
}

.abk-content a {
  color: var(--abk-ink);
  font-weight: 750;
  text-decoration-color: var(--abk-coral);
  text-decoration-thickness: 2px;
}

.abk-content blockquote {
  margin: 32px 0;
  padding: 24px;
  border-left: 6px solid var(--abk-coral);
  border-radius: var(--abk-radius-md);
  background: var(--abk-soft);
}

.abk-content img {
  border-radius: var(--abk-radius-md);
}

.abk-post-footer {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--abk-stroke);
}

.abk-post-nav {
  margin-top: 36px;
  display: grid;
  gap: 12px;
}

.abk-post-nav a {
  padding: 16px 18px;
  border: 1px solid var(--abk-stroke);
  border-radius: var(--abk-radius-md);
  text-decoration: none;
}

.abk-comments {
  margin-top: 42px;
}

.abk-footer {
  padding: 72px 0 38px;
  border-top: 1px solid var(--abk-stroke);
  background: var(--abk-soft);
}

.abk-footer-grid {
  display: grid;
  gap: 34px;
}

.abk-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.abk-footer-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.abk-footer-text {
  max-width: 430px;
  margin: 0;
  color: var(--abk-muted);
}

.abk-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.abk-footer-menu a {
  color: var(--abk-muted);
  text-decoration: none;
}

.abk-footer-menu a:hover,
.abk-footer-menu a:focus {
  color: var(--abk-coral);
  outline: none;
}

.abk-footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--abk-stroke);
  color: var(--abk-muted);
  font-size: 14px;
}

.abk-not-found {
  min-height: 55vh;
  padding: 82px 0;
  display: grid;
  align-items: center;
}

.abk-search-form {
  max-width: 560px;
  display: flex;
  gap: 10px;
}

.abk-search-field {
  min-width: 0;
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--abk-stroke);
  border-radius: var(--abk-radius-xl);
  background: var(--abk-white);
}

.abk-search-submit {
  min-height: 52px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--abk-radius-xl);
  background: var(--abk-ink);
  color: var(--abk-white);
  font-weight: 800;
  cursor: pointer;
}

.abk-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;
}

@media (min-width: 760px) {
  .abk-header-inner {
    padding: 20px 30px;
  }

  .abk-menu-toggle {
    display: none;
  }

  .abk-nav {
    position: static;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .abk-nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .abk-nav-list a {
    background: var(--abk-white);
    box-shadow: 0 8px 24px rgba(3, 3, 3, 0.04);
  }

  .abk-nav-list ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--abk-stroke);
    border-radius: var(--abk-radius-md);
    background: var(--abk-white);
    box-shadow: var(--abk-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .abk-nav-list li:hover > ul,
  .abk-nav-list li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .abk-hero {
    padding-top: 22px;
    padding-bottom: 76px;
  }

  .abk-hero-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 52px;
  }

  .abk-hero-copy {
    padding-top: 92px;
    padding-bottom: 42px;
  }

  .abk-hero-title {
    font-size: 72px;
  }

  .abk-hero-media {
    min-height: 640px;
    border-radius: 45px;
  }

  .abk-hero-media img {
    min-height: 640px;
  }

  .abk-floating-quote {
    top: 88px;
    left: 78px;
    right: auto;
  }

  .abk-floating-card {
    right: 38px;
    bottom: 38px;
  }

  .abk-topic-layout {
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
    align-items: stretch;
  }

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

  .abk-mosaic {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: stretch;
  }

  .abk-mosaic-large {
    min-height: 560px;
  }

  .abk-mosaic-stack {
    grid-template-rows: 1fr auto 1fr;
  }

  .abk-section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .abk-archive-title,
  .abk-single-title {
    font-size: 58px;
  }

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

  .abk-footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.4fr) minmax(240px, 0.6fr);
    align-items: start;
  }
}

@media (min-width: 1120px) {
  .abk-shell {
    width: min(100% - 60px, 1320px);
  }
}

body.admin-bar .abk-header {
  top: 46px;
}

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

.abk-header-cta {
  display: none;
}

.abk-hero-intro {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.abk-hero-pill {
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ffe3db;
  color: var(--abk-coral);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.abk-home-board {
  padding: 0 0 74px;
}

.abk-home-category-row {
  margin-bottom: 14px;
}

.abk-home-card-grid {
  display: grid;
  gap: 18px;
}

.abk-feature-card,
.abk-home-post-card {
  border-radius: 18px;
}

.abk-feature-card {
  min-height: 260px;
  padding: 28px 28px 24px;
  background: #d9ff42;
  color: var(--abk-ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.abk-feature-card::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 168px;
  height: 168px;
  border-radius: 999px;
  background: rgba(82, 219, 130, 0.86);
  content: "";
}

.abk-feature-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(3, 3, 3, 0.14);
  border-radius: 999px;
  background: var(--abk-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.abk-feature-label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.abk-feature-card h2 {
  max-width: 310px;
  margin: 20px 0;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

.abk-feature-card a {
  min-height: 34px;
  color: var(--abk-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.abk-home-post-card {
  padding: 9px;
  border: 1px solid var(--abk-stroke);
  background: var(--abk-white);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.abk-home-post-image {
  height: 132px;
  border-radius: 14px;
  background: var(--abk-soft);
  overflow: hidden;
  display: block;
}

.abk-home-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.abk-home-post-body {
  min-height: 160px;
  padding: 12px 6px 4px;
  display: flex;
  flex-direction: column;
}

.abk-home-post-meta {
  margin-bottom: 8px;
}

.abk-home-post-meta .abk-chip {
  min-height: 22px;
  padding: 2px 8px;
  border: 0;
  background: #ffe3db;
  color: var(--abk-coral);
  font-size: 10px;
}

.abk-home-post-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: 0;
}

.abk-home-post-title a {
  text-decoration: none;
}

.abk-home-post-excerpt {
  margin: 8px 0 0;
  color: var(--abk-muted);
  font-size: 12px;
  line-height: 1.45;
}

.abk-home-post-foot {
  margin-top: auto;
  padding-top: 14px;
  color: var(--abk-muted);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.abk-home-post-foot a,
.abk-home-post-foot span[aria-hidden] {
  color: var(--abk-ink);
  font-size: 16px;
  line-height: 1;
  text-decoration: none;
}

.abk-floating-quote p,
.abk-floating-quote small {
  margin: 0;
}

.abk-floating-quote span {
  color: var(--abk-coral);
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.abk-floating-quote small {
  color: var(--abk-muted);
  font-size: 11px;
  font-style: normal;
}

.abk-floating-card {
  display: flex;
  align-items: center;
  gap: 14px;
}

.abk-floating-card small,
.abk-floating-card em {
  display: block;
  color: var(--abk-muted);
  font-size: 10px;
  font-style: normal;
  line-height: 1.25;
}

.abk-floating-card strong {
  margin: 0;
  font-size: 13px;
  line-height: 1.15;
}

.abk-floating-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(3, 3, 3, 0.12);
  border-radius: 999px;
  background: #ffe3db;
  color: var(--abk-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

@media (min-width: 760px) {
  body.admin-bar .abk-header {
    top: 32px;
  }

  .abk-header-inner {
    width: min(100% - 96px, 1320px);
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .abk-brand,
  .abk-brand-wrap a {
    font-size: 28px;
  }

  .abk-brand-mark {
    width: 24px;
    height: 24px;
  }

  .abk-header-actions {
    padding: 6px;
    border: 1px solid var(--abk-stroke);
    border-radius: 999px;
    background: var(--abk-white);
    box-shadow: 0 14px 42px rgba(3, 3, 3, 0.05);
  }

  .abk-header-cta {
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--abk-ink);
    color: var(--abk-white);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .abk-nav-list {
    gap: 4px;
  }

  .abk-nav-list a {
    min-height: 42px;
    padding: 9px 18px;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 13px;
    line-height: 1;
  }

  .abk-nav-list a:hover,
  .abk-nav-list a:focus,
  .abk-nav-list a[aria-current="page"] {
    background: var(--abk-soft);
    color: var(--abk-ink);
  }

  .abk-shell {
    width: min(100% - 96px, 1320px);
  }

  .abk-hero {
    padding-top: 34px;
    padding-bottom: 26px;
  }

  .abk-hero-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.08fr);
    gap: 34px;
    align-items: center;
  }

  .abk-hero-copy {
    gap: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .abk-hero-title {
    max-width: 540px;
    font-size: 58px;
    line-height: 1.02;
  }

  .abk-hero-text {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.5;
  }

  .abk-actions {
    gap: 14px;
    padding-top: 8px;
  }

  .abk-button {
    min-height: 48px;
    padding: 12px 21px;
    gap: 16px;
    font-size: 13px;
  }

  .abk-link-button {
    min-height: 48px;
    padding: 10px 0;
    border-bottom: 1px solid var(--abk-ink);
    gap: 16px;
    font-size: 13px;
  }

  .abk-button-icon {
    display: none;
  }

  .abk-hero-media {
    min-height: 328px;
    border-radius: 20px;
  }

  .abk-hero-media img {
    min-height: 328px;
    object-position: center;
  }

  .abk-floating-quote {
    top: 24px;
    left: 24px;
    max-width: 206px;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 1.32;
  }

  .abk-floating-card {
    right: 18px;
    bottom: 18px;
    max-width: 292px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .abk-home-board {
    padding-bottom: 44px;
  }

  .abk-home-category-row {
    margin-bottom: 12px;
  }

  .abk-home-card-grid {
    grid-template-columns: 1.06fr repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  .abk-feature-card {
    min-height: 264px;
  }
}

@media (max-width: 759px) {
  .abk-header-actions {
    order: 3;
    width: 100%;
  }

  .abk-header-inner {
    flex-wrap: wrap;
  }

  .abk-nav {
    left: 20px;
    right: 20px;
    top: 74px;
  }

  .abk-hero {
    padding-top: 26px;
  }

  .abk-home-category-row {
    overflow-x: auto;
  }

  .abk-home-category-row .abk-chip-list {
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }
}
