/*
Theme Name: Ajodya Foundation
Theme URI: https://ajodyafoundation.site
Author: Ajodya
Author URI: https://ajodyafoundation.site
Description: A clean, responsive WordPress theme built for Ajodya Educational Welfare Foundation, an educational non-profit based in Guwahati, Assam, India.
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ajodya
Tags: education, non-profit, custom-logo, custom-menu, featured-images, translation-ready, three-columns, right-sidebar
*/

/* ==========================================================================
   1. Design tokens — standard scale (color, space, radius, shadow, type)
   ========================================================================== */
:root {
  /* Color primitives */
  --aj-color-primary-900: #0b2545;
  --aj-color-primary-700: #13315c;
  --aj-color-primary-500: #1d4e89;
  --aj-color-accent-500: #c8952b;
  --aj-color-accent-300: #e8bb60;
  --aj-color-surface: #ffffff;
  --aj-color-surface-alt: #f6f8fb;
  --aj-color-border: #dde5ee;
  --aj-color-text: #1c2430;
  --aj-color-text-muted: #5b6879;

  /* Spacing scale (4px base) */
  --aj-space-1: 4px;
  --aj-space-2: 8px;
  --aj-space-3: 12px;
  --aj-space-4: 16px;
  --aj-space-5: 24px;
  --aj-space-6: 32px;
  --aj-space-7: 48px;
  --aj-space-8: 72px;

  /* Radii */
  --aj-radius-sm: 6px;
  --aj-radius-md: 10px;
  --aj-radius-lg: 16px;
  --aj-radius-pill: 999px;

  /* Elevation */
  --aj-shadow-sm: 0 2px 12px rgba(11, 37, 69, 0.05);
  --aj-shadow-md: 0 6px 24px rgba(11, 37, 69, 0.08);
  --aj-shadow-lg: 0 16px 40px rgba(11, 37, 69, 0.14);

  /* Typography */
  --aj-font-body: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --aj-font-head: Georgia, "Times New Roman", serif;
  --aj-font-size-base: 17px;
  --aj-line-height-base: 1.7;

  /* Layout */
  --aj-container-max: 1180px;

  /* Semantic aliases (used throughout the stylesheet) */
  --aj-blue: var(--aj-color-primary-900);
  --aj-blue-600: var(--aj-color-primary-700);
  --aj-blue-400: var(--aj-color-primary-500);
  --aj-gold: var(--aj-color-accent-500);
  --aj-gold-light: var(--aj-color-accent-300);
  --aj-white: var(--aj-color-surface);
  --aj-off: var(--aj-color-surface-alt);
  --aj-border: var(--aj-color-border);
  --aj-text: var(--aj-color-text);
  --aj-muted: var(--aj-color-text-muted);
  --aj-radius: var(--aj-radius-md);
  --aj-shadow: var(--aj-shadow-md);
  --aj-max: var(--aj-container-max);
}


/* ==========================================================================
   2. Base & typography
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--aj-white);
  color: var(--aj-text);
  font-family: var(--aj-font-body);
  font-size: var(--aj-font-size-base);
  line-height: var(--aj-line-height-base);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--aj-font-head);
  color: var(--aj-blue);
  line-height: 1.25;
  margin: 0 0 0.6em;
  font-weight: 700;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.95rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 1.15em; }

a { color: var(--aj-blue-400); text-decoration: none; }
a:hover, a:focus { color: var(--aj-gold); text-decoration: underline; }

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

blockquote {
  margin: 1.5em 0;
  padding: 0.2em 1.25em;
  border-left: 4px solid var(--aj-gold);
  color: var(--aj-muted);
  font-style: italic;
}

code, pre {
  background: var(--aj-off);
  border: 1px solid var(--aj-border);
  border-radius: 6px;
  font-size: 0.92em;
}
code { padding: 2px 6px; }
pre { padding: 1em; overflow: auto; }

table { width: 100%; border-collapse: collapse; margin-bottom: 1.5em; }
th, td { border: 1px solid var(--aj-border); padding: 0.6em 0.8em; text-align: left; }
th { background: var(--aj-off); }

/* Accessibility helper */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute !important;
  word-wrap: normal !important;
}
.skip-link:focus {
  clip: auto;
  clip-path: none;
  height: auto;
  width: auto;
  z-index: 100000;
  left: 12px;
  top: 12px;
  padding: 12px 18px;
  background: var(--aj-white);
  color: var(--aj-blue);
  border-radius: 6px;
  box-shadow: var(--aj-shadow);
}

/* ==========================================================================
   3. Layout helpers
   ========================================================================== */
.aj-container {
  width: 100%;
  max-width: var(--aj-max);
  margin: 0 auto;
  padding: 0 20px;
}

.aj-section { padding: 72px 0; }
.aj-section--alt { background: var(--aj-off); }
.aj-section__head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.aj-section__head p { color: var(--aj-muted); margin: 0; }

.aj-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--aj-gold);
  font-family: var(--aj-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.aj-grid { display: grid; gap: 28px; }
.aj-grid--3 { grid-template-columns: repeat(3, 1fr); }
.aj-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Buttons */
.aj-btn {
  display: inline-block;
  padding: 14px 30px;
  border: 2px solid transparent;
  border-radius: var(--aj-radius);
  background: var(--aj-gold);
  color: var(--aj-blue);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.aj-btn:hover, .aj-btn:focus {
  background: var(--aj-gold-light);
  color: var(--aj-blue);
  text-decoration: none;
  transform: translateY(-2px);
}
.aj-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--aj-white);
}
.aj-btn--ghost:hover, .aj-btn--ghost:focus {
  background: var(--aj-white);
  color: var(--aj-blue);
}
.aj-btn--outline {
  background: transparent;
  border-color: var(--aj-blue);
  color: var(--aj-blue);
}
.aj-btn--outline:hover, .aj-btn--outline:focus { background: var(--aj-blue); color: var(--aj-white); }

/* ==========================================================================
   4. Top bar + header
   ========================================================================== */
.aj-topbar {
  background: var(--aj-blue);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
}
.aj-topbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 22px;
  padding: 10px 20px;
}
.aj-topbar__list { display: flex; flex-wrap: wrap; gap: 20px; }
.aj-topbar a { color: var(--aj-white); }
.aj-topbar a:hover { color: var(--aj-gold-light); text-decoration: none; }
.aj-topbar__tag { color: var(--aj-gold-light); font-weight: 600; letter-spacing: 0.04em; }

.aj-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--aj-white);
  border-bottom: 1px solid var(--aj-border);
  box-shadow: 0 2px 12px rgba(11, 37, 69, 0.05);
}
.aj-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
}
.aj-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.aj-brand:hover { text-decoration: none; }
.aj-brand img { max-height: 60px; width: auto; }
.aj-brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: var(--aj-blue);
  color: var(--aj-gold);
  font-family: var(--aj-font-head);
  font-size: 1.2rem;
  font-weight: 700;
}
.aj-brand__name {
  display: block;
  color: var(--aj-blue);
  font-family: var(--aj-font-head);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
}
.aj-brand__desc { display: block; color: var(--aj-muted); font-size: 0.8rem; }

/* Navigation */
.aj-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; }
.aj-nav li { position: relative; }
.aj-nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--aj-blue);
  font-size: 0.95rem;
  font-weight: 600;
}
.aj-nav a:hover, .aj-nav a:focus { background: var(--aj-off); color: var(--aj-blue-400); text-decoration: none; }
.aj-nav .current-menu-item > a,
.aj-nav .current_page_item > a { color: var(--aj-gold); }
.aj-nav ul ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 210px;
  flex-direction: column;
  background: var(--aj-white);
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius);
  box-shadow: var(--aj-shadow);
  padding: 8px;
  display: none;
  z-index: 60;
}
.aj-nav li:hover > ul,
.aj-nav li:focus-within > ul { display: flex; }

.aj-menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--aj-border);
  border-radius: 8px;
  background: var(--aj-white);
  color: var(--aj-blue);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.aj-menu-toggle:hover { border-color: var(--aj-blue-400); }

/* ==========================================================================
   5. Hero
   ========================================================================== */
.aj-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 560px;
  background: linear-gradient(135deg, var(--aj-blue) 0%, var(--aj-blue-400) 100%);
  background-size: cover;
  background-position: center;
  color: var(--aj-white);
  overflow: hidden;
}
.aj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 37, 69, 0.92) 0%, rgba(11, 37, 69, 0.62) 60%, rgba(11, 37, 69, 0.45) 100%);
}
.aj-hero__inner { position: relative; padding: 96px 20px; max-width: 780px; }
.aj-hero h1 { color: var(--aj-white); font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 18px; }
.aj-hero p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; max-width: 620px; }
.aj-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ==========================================================================
   6. Cards, about, stats, contact
   ========================================================================== */
.aj-card {
  background: var(--aj-white);
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius);
  box-shadow: var(--aj-shadow);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.aj-card:hover { transform: translateY(-4px); box-shadow: var(--aj-shadow-lg); }
.aj-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(200, 149, 43, 0.14);
  color: var(--aj-gold);
  font-size: 1.4rem;
}
.aj-card p:last-child { margin-bottom: 0; }

.aj-about { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.aj-about__media img { border-radius: var(--aj-radius); box-shadow: var(--aj-shadow-lg); }
.aj-about__media--fallback {
  min-height: 320px;
  border-radius: var(--aj-radius);
  background: linear-gradient(140deg, var(--aj-blue) 0%, var(--aj-blue-400) 100%);
  box-shadow: var(--aj-shadow-lg);
}
.aj-list { list-style: none; margin: 0 0 26px; padding: 0; }
.aj-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--aj-muted); }
.aj-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aj-gold);
}

.aj-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.aj-stat { text-align: center; padding: 26px 16px; border-radius: var(--aj-radius); background: rgba(255, 255, 255, 0.06); }
.aj-stat__num { display: block; color: var(--aj-gold-light); font-family: var(--aj-font-head); font-size: 2.1rem; font-weight: 700; }
.aj-stat__label { color: rgba(255, 255, 255, 0.82); font-size: 0.9rem; }
.aj-band { background: var(--aj-blue); color: var(--aj-white); padding: 60px 0; }
.aj-band h2 { color: var(--aj-white); }

.aj-contact-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px;
  border: 1px solid var(--aj-border);
  border-top: 5px solid var(--aj-gold);
  border-radius: var(--aj-radius);
  background: var(--aj-white);
  box-shadow: var(--aj-shadow-lg);
}
.aj-contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.aj-contact-card p, .aj-contact-card address { color: var(--aj-muted); font-style: normal; margin: 0; }

/* ==========================================================================
   7. Blog / archive / content
   ========================================================================== */
.aj-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; padding: 60px 0; }
.aj-layout--full { grid-template-columns: minmax(0, 1fr); }

.aj-entry {
  padding-bottom: 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--aj-border);
}
.aj-entry:last-child { border-bottom: 0; }
.aj-entry__thumb { margin-bottom: 18px; border-radius: var(--aj-radius); overflow: hidden; }
.aj-entry__title { margin-bottom: 8px; }
.aj-entry__title a { color: var(--aj-blue); }
.aj-entry__meta { color: var(--aj-muted); font-size: 0.87rem; margin-bottom: 14px; }
.aj-entry__meta span + span::before { content: "•"; margin: 0 8px; color: var(--aj-border); }
.aj-entry__content > :last-child { margin-bottom: 0; }

.aj-page-header { background: var(--aj-off); border-bottom: 1px solid var(--aj-border); padding: 54px 0; }
.aj-page-header h1 { margin: 0; }
.aj-page-header p { color: var(--aj-muted); margin: 10px 0 0; }

.aj-sidebar .widget,
.aj-sidebar .aj-widget {
  padding: 24px;
  margin-bottom: 24px;
  background: var(--aj-off);
  border: 1px solid var(--aj-border);
  border-radius: var(--aj-radius);
}
.aj-sidebar .widget-title, .aj-sidebar h2, .aj-sidebar h3 { font-size: 1.1rem; margin-bottom: 12px; }
.aj-sidebar ul { list-style: none; margin: 0; padding: 0; }
.aj-sidebar li { padding: 7px 0; border-bottom: 1px dashed var(--aj-border); }
.aj-sidebar li:last-child { border-bottom: 0; }

.aj-pagination { margin-top: 20px; }
.aj-pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px 6px 0;
  border: 1px solid var(--aj-border);
  border-radius: 8px;
  color: var(--aj-blue);
  font-weight: 600;
}
.aj-pagination .page-numbers.current,
.aj-pagination .page-numbers:hover { background: var(--aj-blue); border-color: var(--aj-blue); color: var(--aj-white); text-decoration: none; }

.aj-post-nav { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--aj-border); }

/* WordPress core alignment classes */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin: 0 auto 1.5em; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .sticky, .gallery-caption, .bypostauthor { font-size: 0.88rem; color: var(--aj-muted); }
.sticky { border-left: 4px solid var(--aj-gold); padding-left: 18px; }

/* ==========================================================================
   8. Footer
   ========================================================================== */
.aj-footer { background: var(--aj-blue); color: rgba(255, 255, 255, 0.78); padding: 64px 0 0; }
.aj-footer h3 {
  color: var(--aj-white);
  font-family: var(--aj-font-body);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.aj-footer h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  background: var(--aj-gold);
}
.aj-footer a { color: rgba(255, 255, 255, 0.85); }
.aj-footer a:hover { color: var(--aj-gold-light); text-decoration: none; }
.aj-footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr; gap: 44px; padding-bottom: 46px; }
.aj-footer address { font-style: normal; }
.aj-footer ul { list-style: none; margin: 0; padding: 0; }
.aj-footer ul li { padding: 6px 0; }
.aj-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 20px 0;
  font-size: 0.87rem;
  text-align: center;
}
.aj-footer__bottom p { margin: 0; }

/* ==========================================================================
   9. Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .aj-grid--3, .aj-footer__cols, .aj-contact-card { grid-template-columns: 1fr 1fr; }
  .aj-stats { grid-template-columns: repeat(2, 1fr); }
  .aj-about { grid-template-columns: 1fr; gap: 32px; }
  .aj-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 782px) {
  body { font-size: 16px; }
  .aj-section { padding: 54px 0; }
  .aj-menu-toggle { display: inline-flex; }
  .aj-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--aj-white);
    border-top: 1px solid var(--aj-border);
    box-shadow: var(--aj-shadow);
    padding: 12px 20px 20px;
  }
  .aj-nav.is-open { display: block; }
  .aj-nav ul { flex-direction: column; gap: 2px; }
  .aj-nav ul ul { position: static; display: flex; box-shadow: none; border: 0; padding: 0 0 0 16px; }
  .aj-header__inner { position: relative; }
  .aj-topbar__inner { justify-content: center; text-align: center; }
}

@media (max-width: 620px) {
  .aj-grid--3, .aj-grid--2, .aj-footer__cols, .aj-contact-card, .aj-stats { grid-template-columns: 1fr; }
  .aj-contact-card { padding: 28px; }
  .aj-hero { min-height: 460px; }
  .aj-hero__inner { padding: 68px 20px; }
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.6rem; }
}

/* ==========================================================================
   10. Premium refinement layer
   ========================================================================== */
:root {
  --aj-gold-grad: linear-gradient(120deg, var(--aj-color-accent-500) 0%, var(--aj-color-accent-300) 100%);
  --aj-hairline: 1px solid rgba(200, 149, 43, 0.35);
}

body { letter-spacing: 0.002em; }

h1, h2, h3 { letter-spacing: -0.012em; }

.aj-section__head h2 { position: relative; display: inline-block; padding-bottom: 18px; }
.aj-section__head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 64px;
  height: 3px;
  border-radius: var(--aj-radius-pill);
  background: var(--aj-gold-grad);
}
.aj-band .aj-section__head h2::after { opacity: 0.9; }

/* Top bar / header polish */
.aj-topbar { background: linear-gradient(90deg, var(--aj-color-primary-900) 0%, var(--aj-color-primary-700) 100%); }
.aj-topbar__inner { border-bottom: var(--aj-hairline); }
.aj-header { backdrop-filter: saturate(140%) blur(6px); background: rgba(255, 255, 255, 0.92); }
.aj-header::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--aj-gold-grad);
  opacity: 0.9;
}
.aj-brand__mark { background: var(--aj-gold-grad); color: var(--aj-color-primary-900); box-shadow: var(--aj-shadow-sm); }
.aj-nav a { position: relative; }
.aj-nav > div > ul > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: var(--aj-radius-pill);
  background: var(--aj-gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}
.aj-nav > div > ul > li > a:hover::after,
.aj-nav > div > ul > li.current-menu-item > a::after { transform: scaleX(1); }

/* Buttons */
.aj-btn {
  background: var(--aj-gold-grad);
  box-shadow: 0 8px 20px rgba(200, 149, 43, 0.28);
}
.aj-btn:hover, .aj-btn:focus { box-shadow: 0 12px 28px rgba(200, 149, 43, 0.36); }
.aj-btn--ghost, .aj-btn--outline { box-shadow: none; }

/* Hero */
.aj-hero__inner h1 { text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25); }
.aj-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--aj-gold-grad);
}
.aj-hero .aj-eyebrow {
  padding: 6px 14px;
  border: var(--aj-hairline);
  border-radius: var(--aj-radius-pill);
  background: rgba(255, 255, 255, 0.06);
}

/* Cards */
.aj-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--aj-radius-lg);
  box-shadow: var(--aj-shadow-sm);
}
.aj-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--aj-gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.aj-card:hover::before { transform: scaleX(1); }
.aj-card:hover { border-color: rgba(200, 149, 43, 0.4); }
.aj-card__icon { background: var(--aj-gold-grad); color: var(--aj-color-primary-900); }

/* Stats band */
.aj-band {
  background:
    radial-gradient(900px 400px at 12% -10%, rgba(200, 149, 43, 0.22), transparent 60%),
    linear-gradient(135deg, var(--aj-color-primary-900) 0%, var(--aj-color-primary-500) 100%);
}
.aj-stat {
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.aj-stat:hover { transform: translateY(-3px); border-color: rgba(200, 149, 43, 0.55); }
.aj-stat__num { letter-spacing: -0.02em; }

/* Contact + about */
.aj-contact-card { border-radius: var(--aj-radius-lg); border-top-width: 4px; }
.aj-about__media img, .aj-about__media--fallback { border-radius: var(--aj-radius-lg); }

/* Entries, sidebar, footer */
.aj-entry__thumb { border-radius: var(--aj-radius-lg); }
.aj-sidebar .widget, .aj-sidebar .aj-widget { border-radius: var(--aj-radius-lg); }
.aj-footer {
  background:
    radial-gradient(800px 320px at 85% 0%, rgba(200, 149, 43, 0.16), transparent 60%),
    var(--aj-color-primary-900);
  border-top: 3px solid transparent;
  border-image: var(--aj-gold-grad) 1;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
  html { scroll-behavior: auto; }
}
