/*
Theme Name: Aster Ridge Journal
Author: Lena Marwick
Description: A lightweight classic WordPress theme with a bright editorial layout, responsive navigation, dynamic content areas, and clean article presentation.
Version: 1.1.0
Requires at least: 6.0
Text Domain: vcc-theme
*/

:root {
  --vcc-color-ink: #07090a;
  --vcc-color-muted: #75797d;
  --vcc-color-line: #e7e8e3;
  --vcc-color-surface: #ffffff;
  --vcc-color-soft: #f4f5f1;
  --vcc-color-lime: #d4ff2f;
  --vcc-color-sky: #1797cf;
  --vcc-color-sky-soft: #dff5ff;
  --vcc-color-field: #9fdc65;
  --vcc-shadow-soft: 0 24px 70px rgba(7, 9, 10, 0.12);
  --vcc-radius: 8px;
  --vcc-shell: min(1180px, calc(100vw - 32px));
  --vcc-font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--vcc-color-ink);
  background:
    linear-gradient(180deg, rgba(15, 141, 197, 0.95) 0, rgba(127, 202, 209, 0.8) 340px, #f7f8f4 640px, #f7f8f4 100%);
  font-family: var(--vcc-font-main);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover,
a:focus-visible {
  color: var(--vcc-color-sky);
}

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

button {
  cursor: pointer;
}

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

.vcc-skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  overflow: visible;
  clip: auto;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-lime);
  border-radius: var(--vcc-radius);
  box-shadow: var(--vcc-shadow-soft);
}

.vcc-shell {
  width: var(--vcc-shell);
  margin-right: auto;
  margin-left: auto;
}

.vcc-header {
  position: relative;
  z-index: 50;
  width: var(--vcc-shell);
  margin: 42px auto 0;
  background: var(--vcc-color-surface);
  border: 1px solid var(--vcc-color-line);
  border-bottom: 0;
  border-radius: var(--vcc-radius) var(--vcc-radius) 0 0;
}

.vcc-header-inner {
  display: flex;
  width: auto;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 44px);
}

.vcc-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
  color: var(--vcc-color-ink);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
}

.vcc-brand-mark {
  display: inline-grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-lime);
  border: 1px solid rgba(7, 9, 10, 0.14);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.vcc-brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vcc-logo img {
  width: auto;
  max-height: 42px;
}

.vcc-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.vcc-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-soft);
  border: 1px solid var(--vcc-color-line);
  border-radius: var(--vcc-radius);
}

.vcc-menu-icon,
.vcc-menu-icon::before,
.vcc-menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.vcc-menu-icon {
  position: relative;
}

.vcc-menu-icon::before,
.vcc-menu-icon::after {
  position: absolute;
  left: 0;
}

.vcc-menu-icon::before {
  top: -6px;
}

.vcc-menu-icon::after {
  top: 6px;
}

.vcc-menu-open .vcc-menu-icon {
  background: transparent;
}

.vcc-menu-open .vcc-menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.vcc-menu-open .vcc-menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.vcc-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 14px;
  left: 14px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: var(--vcc-color-surface);
  border: 1px solid var(--vcc-color-line);
  border-radius: var(--vcc-radius);
  box-shadow: var(--vcc-shadow-soft);
}

.vcc-menu-open .vcc-menu {
  display: flex;
}

.vcc-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 10px;
  color: var(--vcc-color-ink);
  border-radius: var(--vcc-radius);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.vcc-menu a:hover,
.vcc-menu a:focus-visible,
.vcc-menu .current-menu-item > a,
.vcc-menu .current_page_item > a {
  color: var(--vcc-color-ink);
  background: var(--vcc-color-lime);
}

.vcc-main {
  min-height: 60vh;
}

.vcc-hero {
  padding: 0 0 76px;
}

.vcc-hero-frame {
  width: var(--vcc-shell);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 44px) clamp(24px, 4vw, 44px);
  overflow: hidden;
  background: var(--vcc-color-surface);
  border: 1px solid var(--vcc-color-line);
  border-top: 0;
  border-radius: 0 0 var(--vcc-radius) var(--vcc-radius);
  box-shadow: var(--vcc-shadow-soft);
}

.vcc-hero-lead {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.vcc-trust-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--vcc-color-muted);
  font-size: 13px;
  font-weight: 750;
}

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

.vcc-avatar-stack span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-right: -8px;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-sky-soft);
  border: 2px solid var(--vcc-color-surface);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.vcc-avatar-stack span:nth-child(2) {
  background: #c7f2bf;
}

.vcc-avatar-stack span:nth-child(3) {
  background: #f2dfc8;
}

.vcc-avatar-stack span:nth-child(4) {
  color: var(--vcc-color-ink);
  background: var(--vcc-color-lime);
}

.vcc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--vcc-color-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vcc-kicker::before {
  width: 5px;
  height: 5px;
  background: var(--vcc-color-lime);
  border-radius: 50%;
  content: "";
}

.vcc-hero-title {
  max-width: 720px;
  margin: 0;
  color: var(--vcc-color-ink);
  font-size: clamp(46px, 11vw, 96px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.vcc-hero-aside {
  align-self: end;
}

.vcc-hero-text {
  max-width: 390px;
  margin: 0;
  color: #4e5458;
  font-size: 15px;
  line-height: 1.65;
}

.vcc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.vcc-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: var(--vcc-color-surface);
  background: var(--vcc-color-ink);
  border: 1px solid var(--vcc-color-ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vcc-button::after {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-left: 10px;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-lime);
  border-radius: 50%;
  content: "\2197";
  font-size: 13px;
  line-height: 1;
}

.vcc-button:hover,
.vcc-button:focus-visible {
  color: var(--vcc-color-surface);
  transform: translateY(-1px);
}

.vcc-hero-mosaic {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: clamp(28px, 5vw, 46px);
}

.vcc-visual-card,
.vcc-mini-card,
.vcc-lime-card,
.vcc-chip-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--vcc-radius);
}

.vcc-visual-card {
  display: block;
  min-height: 260px;
  background: var(--vcc-color-sky-soft);
}

.vcc-visual-image {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.vcc-visual-fallback {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #91d6ff 0%, #c7ecff 48%, #b6df76 49%, #72b747 100%);
}

.vcc-sky-shape,
.vcc-field-shape,
.vcc-person-shape {
  position: absolute;
  display: block;
}

.vcc-sky-shape {
  top: 38px;
  right: 24px;
  width: 92px;
  height: 92px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  filter: blur(2px);
}

.vcc-field-shape {
  right: -30px;
  bottom: 12px;
  left: -30px;
  height: 108px;
  background:
    repeating-linear-gradient(76deg, rgba(255, 255, 255, 0.65) 0 3px, transparent 3px 16px),
    rgba(255, 255, 255, 0.08);
  transform: rotate(-2deg);
}

.vcc-person-shape {
  bottom: 58px;
  left: 50%;
  width: 72px;
  height: 118px;
  background: #b9ddf5;
  border-radius: 34px 34px 18px 18px;
  transform: translateX(-50%);
}

.vcc-person-shape::before {
  position: absolute;
  top: -46px;
  left: 12px;
  width: 48px;
  height: 48px;
  background: #f0d5bf;
  border-radius: 50%;
  content: "";
}

.vcc-mini-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: var(--vcc-color-soft);
}

.vcc-mini-badge {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: var(--vcc-color-surface);
  background: var(--vcc-color-ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.vcc-mini-card strong {
  margin-top: 12px;
  color: var(--vcc-color-ink);
  font-size: clamp(26px, 6vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.vcc-mini-card span:last-child {
  color: var(--vcc-color-muted);
  font-size: 13px;
  font-weight: 700;
}

.vcc-lime-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-lime);
}

.vcc-lime-card span {
  font-size: clamp(42px, 11vw, 70px);
  font-weight: 900;
  line-height: 0.95;
}

.vcc-lime-card p {
  max-width: 250px;
  margin: 18px 0 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.vcc-chip-card {
  display: flex;
  min-height: 138px;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, #9edbff 0%, #ddf5ff 42%, #b8df75 100%);
}

.vcc-chip-card span {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--vcc-color-ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 9, 10, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.vcc-about-strip {
  padding: 8px 0 66px;
  background: #f7f8f4;
}

.vcc-about-strip .vcc-shell {
  text-align: center;
}

.vcc-about-title {
  max-width: 860px;
  margin: 0 auto;
  color: var(--vcc-color-ink);
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.vcc-about-title::after {
  display: inline-grid;
  width: clamp(30px, 5vw, 46px);
  height: clamp(30px, 5vw, 46px);
  place-items: center;
  margin-left: 8px;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-lime);
  border-radius: 50%;
  content: "";
  vertical-align: -0.12em;
}

.vcc-about-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 34px auto 0;
  text-align: left;
}

.vcc-about-metrics div {
  padding: 18px 0;
  border-top: 1px solid var(--vcc-color-line);
}

.vcc-about-metrics strong {
  display: block;
  color: var(--vcc-color-ink);
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 900;
  line-height: 1;
}

.vcc-about-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--vcc-color-muted);
  font-size: 13px;
  font-weight: 800;
}

.vcc-section {
  padding: 58px 0;
  background: #f7f8f4;
}

.vcc-section-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.vcc-section-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.vcc-section-note {
  max-width: 420px;
  margin: 0;
  color: var(--vcc-color-muted);
  font-size: 14px;
}

.vcc-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.vcc-post-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  background: var(--vcc-color-surface);
  border: 1px solid var(--vcc-color-line);
  border-radius: var(--vcc-radius);
  box-shadow: 0 10px 32px rgba(7, 9, 10, 0.04);
}

.vcc-card-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.32 / 1;
  background: var(--vcc-color-sky-soft);
}

.vcc-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.vcc-post-card:hover .vcc-card-image,
.vcc-post-card:focus-within .vcc-card-image {
  transform: scale(1.035);
}

.vcc-card-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--vcc-color-ink);
  background:
    linear-gradient(135deg, rgba(212, 255, 47, 0.96), rgba(23, 151, 207, 0.28)),
    var(--vcc-color-soft);
  font-size: clamp(40px, 12vw, 88px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vcc-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 22px;
}

.vcc-card-meta,
.vcc-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--vcc-color-muted);
  font-size: 13px;
  font-weight: 800;
}

.vcc-card-title {
  margin: 10px 0 10px;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.vcc-card-title a {
  color: var(--vcc-color-ink);
}

.vcc-card-title a:hover,
.vcc-card-title a:focus-visible {
  color: var(--vcc-color-sky);
}

.vcc-card-excerpt {
  color: var(--vcc-color-muted);
  font-size: 14px;
}

.vcc-card-excerpt p {
  margin: 0;
}

.vcc-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--vcc-color-ink);
  border-bottom: 2px solid var(--vcc-color-lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vcc-text-link:hover,
.vcc-text-link:focus-visible {
  color: var(--vcc-color-sky);
}

.vcc-pagination {
  margin-top: 28px;
}

.vcc-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.vcc-pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-surface);
  border: 1px solid var(--vcc-color-line);
  border-radius: var(--vcc-radius);
  font-weight: 800;
}

.vcc-pagination .current,
.vcc-pagination .page-numbers:hover,
.vcc-pagination .page-numbers:focus-visible {
  color: var(--vcc-color-ink);
  background: var(--vcc-color-lime);
}

.vcc-empty {
  padding: 36px;
  background: var(--vcc-color-surface);
  border: 1px solid var(--vcc-color-line);
  border-radius: var(--vcc-radius);
}

.vcc-empty-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.1;
}

.vcc-empty-text {
  margin: 0;
  color: var(--vcc-color-muted);
}

.vcc-single-wrap {
  width: min(80vw, 980px);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 82px) 0;
}

.vcc-single-header,
.vcc-single-content,
.vcc-single-footer {
  background: rgba(255, 255, 255, 0.96);
}

.vcc-single-header {
  margin-bottom: 0;
  padding: clamp(24px, 5vw, 44px) clamp(18px, 5vw, 52px) 0;
  border: 1px solid var(--vcc-color-line);
  border-bottom: 0;
  border-radius: var(--vcc-radius) var(--vcc-radius) 0 0;
}

.vcc-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--vcc-color-ink);
  border-bottom: 2px solid var(--vcc-color-lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.vcc-single-title {
  margin: 16px 0 0;
  font-size: clamp(40px, 8vw, 82px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.vcc-single-content {
  padding: clamp(24px, 5vw, 52px);
  color: var(--vcc-color-ink);
  border-right: 1px solid var(--vcc-color-line);
  border-left: 1px solid var(--vcc-color-line);
  font-size: clamp(18px, 2.4vw, 21px);
  line-height: 1.78;
}

.vcc-single-content > * {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.vcc-single-content h2,
.vcc-single-content h3,
.vcc-single-content h4 {
  margin-top: 1.65em;
  margin-bottom: 0.55em;
  line-height: 1.12;
  letter-spacing: 0;
}

.vcc-single-content h2 {
  font-size: clamp(28px, 5vw, 44px);
}

.vcc-single-content h3 {
  font-size: clamp(24px, 4vw, 34px);
}

.vcc-single-content a {
  color: var(--vcc-color-ink);
  border-bottom: 2px solid var(--vcc-color-lime);
  font-weight: 750;
}

.vcc-single-content a:hover,
.vcc-single-content a:focus-visible {
  color: var(--vcc-color-sky);
}

.vcc-single-content blockquote {
  margin-right: 0;
  margin-left: 0;
  padding: 20px;
  background: var(--vcc-color-soft);
  border-left: 5px solid var(--vcc-color-lime);
  border-radius: var(--vcc-radius);
}

.vcc-single-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

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

.vcc-single-content img {
  border-radius: var(--vcc-radius);
}

.vcc-single-content .alignwide,
.vcc-single-content .alignfull {
  max-width: 100%;
}

.vcc-single-footer {
  display: grid;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 52px) clamp(24px, 5vw, 44px);
  border: 1px solid var(--vcc-color-line);
  border-top: 0;
  border-radius: 0 0 var(--vcc-radius) var(--vcc-radius);
}

.vcc-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vcc-term-list a {
  display: inline-flex;
  padding: 8px 11px;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-soft);
  border: 1px solid var(--vcc-color-line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.vcc-term-list a:hover,
.vcc-term-list a:focus-visible {
  background: var(--vcc-color-lime);
}

.vcc-post-nav {
  display: grid;
  gap: 12px;
}

.vcc-post-nav a {
  display: block;
  padding: 16px;
  color: var(--vcc-color-ink);
  background: var(--vcc-color-soft);
  border: 1px solid var(--vcc-color-line);
  border-radius: var(--vcc-radius);
  font-weight: 800;
}

.vcc-footer {
  margin-top: 0;
  padding: 34px 0;
  color: var(--vcc-color-ink);
  background: #f7f8f4;
  border-top: 1px solid var(--vcc-color-line);
}

.vcc-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.vcc-footer-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}

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

.vcc-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vcc-footer-menu a {
  color: var(--vcc-color-muted);
  font-size: 14px;
  font-weight: 800;
}

.vcc-footer-menu a:hover,
.vcc-footer-menu a:focus-visible {
  color: var(--vcc-color-ink);
}

.vcc-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  color: var(--vcc-color-muted);
  border-top: 1px solid var(--vcc-color-line);
  font-size: 13px;
}

.vcc-widget-area {
  display: grid;
  gap: 16px;
}

.vcc-widget-area > * {
  margin-top: 0;
  margin-bottom: 0;
}

.wp-caption,
.wp-caption-text,
.gallery-caption,
.bypostauthor,
.alignleft,
.alignright,
.aligncenter {
  max-width: 100%;
}

.aligncenter {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 700px) {
  .vcc-hero-mosaic {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.82fr);
  }

  .vcc-visual-card {
    grid-row: span 2;
    min-height: 100%;
  }

  .vcc-chip-card {
    grid-column: 1 / -1;
  }

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

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

  .vcc-post-card:first-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .vcc-post-card:first-child .vcc-card-media {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .vcc-footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    align-items: start;
  }

  .vcc-footer-menu {
    justify-content: flex-end;
  }

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

@media (min-width: 880px) {
  .vcc-menu-toggle {
    display: none;
  }

  .vcc-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .vcc-menu a {
    min-height: 38px;
    padding: 8px 12px;
  }

  .vcc-hero-lead {
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  }

  .vcc-hero-mosaic {
    grid-template-columns: minmax(0, 1.08fr) minmax(210px, 0.74fr) minmax(210px, 0.74fr);
    grid-template-rows: 176px 182px;
  }

  .vcc-visual-card {
    grid-row: 1 / 3;
  }

  .vcc-chip-card {
    grid-column: 2 / 4;
  }

  .vcc-section-heading {
    flex-direction: row;
    align-items: end;
  }

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

  .vcc-post-card:first-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 560px) {
  :root {
    --vcc-shell: min(100vw - 20px, 1180px);
  }

  body {
    background:
      linear-gradient(180deg, rgba(15, 141, 197, 0.95) 0, rgba(127, 202, 209, 0.82) 260px, #f7f8f4 520px, #f7f8f4 100%);
  }

  .vcc-header {
    margin-top: 10px;
  }

  .vcc-header-inner {
    min-height: 64px;
    padding: 0 14px;
  }

  .vcc-brand {
    max-width: calc(100vw - 96px);
  }

  .vcc-hero-frame {
    padding: 22px 14px 18px;
  }

  .vcc-hero-title {
    font-size: clamp(42px, 14vw, 62px);
  }

  .vcc-visual-card,
  .vcc-visual-image,
  .vcc-visual-fallback {
    min-height: 250px;
  }

  .vcc-section {
    padding: 42px 0;
  }

  .vcc-single-wrap {
    width: min(92vw, 980px);
  }
}
