/* ============================================
   ME AND JACKSON - HOME PAGE
   Earthy warm vintage palette
   (inspired by Jackson Browne - "Saturate Before Using", 1972)
   ============================================ */

:root {
  --v-bg:     #e7dabf; /* aged paper / burlap tan */
  --v-paper:  #f5eddb; /* cards / light surfaces */
  --v-dark:   #3a2a1a; /* deep espresso - header/footer/panels */
  --v-dark-2: #4a3624; /* slightly lighter brown */
  --v-ink:    #2c2013; /* dark text */
  --v-cream:  #f2e8d4; /* light text on dark */
  --v-muted:  #cdb792; /* muted tan text on dark */
  --v-accent: #b5642b; /* terracotta / rust */
  --v-gold:   #d39a3c; /* ochre gold (numbers) */
  --v-line:   #d6c4a0; /* hairlines */
}

body.home-page {
  margin: 0;
  /* Push header + content just below the red stitching line. Pure vw keeps it
     proportional to the line on ANY width (no overlap on wide monitors). */
  padding-top: max(3rem, 12vw);
  background-color: var(--v-bg);
  /* Decorative strip at the top scrolls with the page, and its lower part fades
     into the paper-tan color so there's NO hard seam where the image ends.
     Image natural height at 100% width = 1286/2000 = 64.3vw. */
  background-image:
    linear-gradient(to bottom, rgba(231, 218, 191, 0) 0%, rgba(231, 218, 191, 0) 60%, var(--v-bg) 100%),
    url("assets/images/vintage-bg-2026.jpg");
  background-size: 100% 64.3vw, 100% 64.3vw;
  background-position: top center, top center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
  color: var(--v-ink);
  font-family: "Zilla Slab", Georgia, "Times New Roman", serif;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

body.home-page a {
  text-decoration: none;
}

/* ============================================
   SITE HEADER
   ============================================ */

.site-header {
  background: transparent;
  color: var(--v-ink);
  position: relative;
  z-index: 100;
}

.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem 1rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 2.25rem;
}

/* Athletic / collegiate block title (Octin Sports vibe via Saira Condensed) */
.site-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
}

.site-branding {
  color: #c1272d; /* jersey red */
  font-family: "Saira Condensed", "Arial Narrow", "Oswald", sans-serif;
  font-size: 3.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.92;
  /* Red fill + black outline + drop shadow (layer effects, like the artwork) */
  -webkit-text-stroke: 1.5px #14100a;
  paint-order: stroke fill;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.35);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-branding:hover {
  color: #e0392b;
  transform: translateY(-1px);
}

.site-branding__word {
  display: inline-block;
  position: relative;
  padding-bottom: 0.24em;
}

.site-branding__word::after {
  content: "";
  position: absolute;
  left: 0.06em;
  right: 0.04em;
  bottom: 0;
  height: 3px;
  background: #c1272d;
  box-shadow: 0 1px 0 rgba(245, 237, 219, 0.65);
}

/* Small connector word "AND" in the logo (75% of the wordmark size) */
.site-branding__and {
  font-size: 0.75em;
}

.site-tagline {
  display: block;
  width: max-content;
  max-width: min(36rem, calc(100vw - 3rem));
  margin-top: 0.28rem;
  padding-top: 0;
  color: #2a1d12;
  font-family: "Zilla Slab", Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: left;
  text-shadow: 0 1px 0 rgba(245, 237, 219, 0.75);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
  padding-top: 0.15rem;
}

.site-nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: var(--v-dark);
  border: 2px solid var(--v-accent);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(47, 35, 24, 0.18);
  cursor: pointer;
}

.site-nav-toggle__bar {
  display: block;
  position: absolute;
  width: 1.35rem;
  height: 2px;
  background: var(--v-cream);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav-toggle__bar:nth-child(1) {
  transform: translateY(-0.42rem);
}

.site-nav-toggle__bar:nth-child(3) {
  transform: translateY(0.42rem);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg);
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-nav-toggle[aria-expanded="true"] .site-nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg);
}

.site-nav__link {
  color: var(--v-dark-2);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 0.25rem 0;
  position: relative;
  transition: color 0.2s ease;
  text-shadow: 0 1px 0 rgba(245, 237, 219, 0.6);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: var(--v-accent);
  transition: width 0.25s ease;
}

.site-nav__link:hover {
  color: var(--v-accent);
}

.site-nav__link:hover::after {
  width: 100%;
}

/* ============================================
   4-SECTION LAYOUT GRID  (2/3 left, 1/3 right)
   ============================================ */

.home-layout {
  max-width: 1400px;
  margin: 0 auto;
  /* Header now sits just below the stitching line (via body padding-top),
     so the content only needs a small gap under the header. */
  padding: 1.5rem 1.5rem 3.5rem;
}

.home-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.cell {
  min-width: 0;
}

/* Left column: welcome video + featured videos, tightly stacked (no dead space) */
.home-col--left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-width: 0;
}

/* The featured-videos block grows to fill the stretched left column, and its
   "View More" button is pushed to the bottom so it lines up with the bottom of
   the comments card on the right. */
.cell--grid {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

/* Right column: charity -> submit -> comments, stacked naturally */
.cell--right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: stretch;
}

/* ============================================
   SECTION 1: WELCOME VIDEO
   ============================================ */

.welcome-section {
  background: var(--v-dark);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(58, 42, 26, 0.28);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--v-dark);
}

.video-container iframe,
.video-container video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-cream);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================
   RIGHT-COLUMN PANELS
   ============================================ */

.side-panel {
  width: min(100%, 347px);
  margin-inline: auto;
  box-sizing: border-box;
  background: var(--v-dark);
  color: var(--v-cream);
  padding: 1.75rem 1.6rem;
  box-shadow: 0 6px 20px rgba(58, 42, 26, 0.22);
  border-top: 3px solid var(--v-accent);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.side-panel:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(58, 42, 26, 0.3);
}

/* Charity */
.charity-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 98px;
  padding: 0.85rem 1.2rem;
}

.charity-amount {
  font-family: "Alfa Slab One", "Rockwell", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--v-gold);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}

.charity-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  margin: 0 0 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--v-cream);
}

.charity-description {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--v-muted);
  margin: 0;
}

/* Submission & comments */
.submission-section h3,
.comments-section h3 {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  color: var(--v-cream);
}

.form-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--v-muted);
  text-align: center;
}

.form-content p {
  margin: 0 0 0.65rem;
}

.form-content input,
.form-content textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 0.7rem;
  border: 1px solid #5a4631;
  background: #2a1d10;
  color: var(--v-cream);
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}

.form-content input::placeholder,
.form-content textarea::placeholder {
  color: #997f5c;
}

.form-content button {
  background: var(--v-accent);
  color: #fff;
  padding: 0.65rem 1.7rem;
  margin-top: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.form-content button:hover {
  background: #c8743a;
}

.comments-sample {
  font-style: italic;
  color: var(--v-cream);
  margin-top: 0.9rem;
}

/* Submission form */
.mj-form {
  text-align: left;
  margin-top: 0.5rem;
}

.mj-form input {
  width: 100%;
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.55rem;
  border: 1px solid #5a4631;
  background: #2a1d10;
  color: var(--v-cream);
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
}

.mj-form__field {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--v-cream);
  font-weight: 700;
  line-height: 1.35;
}

.mj-form__field span {
  display: block;
  margin-bottom: 0.35rem;
}

.mj-form__field input {
  margin-bottom: 0;
}

.mj-form input::placeholder {
  color: #997f5c;
}

.mj-form input:focus {
  outline: none;
  border-color: var(--v-gold);
  box-shadow: 0 0 0 2px rgba(211, 154, 60, 0.25);
}

.mj-charcount {
  display: block;
  text-align: right;
  font-size: 0.78rem;
  color: var(--v-muted);
  margin: -0.3rem 0 0.6rem;
}

.mj-form button {
  width: 100%;
  background: var(--v-accent);
  color: #fff;
  padding: 0.75rem 1rem;
  margin-top: 0.3rem;
  margin-bottom: 0.6rem; /* breathing room above the panel's bottom edge */
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.mj-form button:hover {
  background: #c8743a;
}

.mj-form-msg {
  padding: 0.7rem 0.8rem;
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  text-align: center;
}

.mj-form-msg--ok {
  background: #2f4a1f;
  color: #d8f0c0;
  border: 1px solid #4a6b30;
}

.mj-form-msg--err {
  background: #4a241f;
  color: #f0c8c0;
  border: 1px solid #6b352d;
}

/* Turnstile widget — centered inside the submission form */
.mj-turnstile {
  display: flex;
  justify-content: center;
  margin: 0.6rem 0 0.9rem;
}

/* Disqus containers */
.mj-disqus {
  min-height: 70px;
}

.comments-section .mj-disqus {
  margin-top: 0.3rem;
}

/* ============================================
   SUBMISSION FORM — decorative header banner
   ============================================ */

.submission-section {
  position: relative;
}

.submission-section h3::before {
  content: "\1F3AC"; /* clapperboard / film icon */
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  line-height: 1;
}

.submission-section .form-content > p:first-of-type {
  color: var(--v-muted);
  font-size: 0.9rem;
  margin-top: -0.4rem;
}

/* ============================================
   SUBMISSION CTA BUTTON  (opens modal)
   ============================================ */

.submission-cta {
  padding: 0;
  background: transparent;
  border-top: none;
  box-shadow: none;
}

.submission-cta:hover {
  transform: none;
  box-shadow: none;
}

.mj-submit-open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  height: 100%;
  min-height: 160px;
  padding: 2rem 1.5rem;
  background: var(--v-accent);
  color: #fff;
  border: none;
  border-top: 3px solid var(--v-gold);
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  box-shadow: 0 6px 20px rgba(58, 42, 26, 0.22);
  transition: background 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mj-submit-open:hover {
  background: #c8743a;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(58, 42, 26, 0.32);
}

.mj-submit-open__icon {
  font-size: 2.7rem;
  line-height: 1;
}

.mj-submit-open__title {
  font-family: "Alfa Slab One", "Rockwell", Georgia, serif;
  font-size: 1.45rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.1;
}

.mj-submit-open__sub {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   SUBMISSION MODAL
   ============================================ */

.mj-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.mj-modal.is-open {
  display: block;
}

.mj-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 10, 0.72);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.mj-modal__dialog {
  position: relative;
  max-width: 460px;
  width: calc(100% - 2rem);
  margin: 7vh auto 2rem;
  background: var(--v-dark);
  color: var(--v-cream);
  border-top: 4px solid var(--v-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  padding: 2.25rem 2rem 2.25rem;
  animation: mjModalIn 0.25s ease;
}

@keyframes mjModalIn {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mj-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  background: none;
  border: none;
  color: var(--v-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mj-modal__close:hover {
  color: #fff;
}

.mj-modal__head {
  text-align: center;
  margin-bottom: 1.3rem;
}

.mj-modal__icon {
  display: block;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.mj-modal__head h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--v-cream);
}

@media (max-width: 560px) {
  .mj-modal__dialog {
    margin-top: 4vh;
    padding: 1.75rem 1.25rem;
  }
}

/* ============================================
   NATIVE COMMENTS  (single video page)
   ============================================ */

.video-comments {
  background: var(--v-paper);
  border: 1px solid var(--v-line);
  border-top: 4px solid var(--v-accent);
  padding: 1.75rem 2rem 2rem;
  margin-top: 2rem;
  box-shadow: 0 4px 16px rgba(58, 42, 26, 0.1);
}

.video-comments__title {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--v-ink);
  margin: 0 0 1.5rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--v-line);
}

.video-comments__count {
  color: var(--v-accent);
}

.video-comments__empty {
  color: #8a7456;
  font-style: italic;
  margin: 0 0 1.5rem;
}

.video-comments__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.video-comments__list ol.children {
  list-style: none;
  margin: 1rem 0 0 1.5rem;
  padding-left: 1.25rem;
  border-left: 2px solid var(--v-line);
}

.video-comments__list li.comment {
  margin-bottom: 1.4rem;
}

.video-comments__list .comment-body {
  background: var(--v-bg);
  border: 1px solid var(--v-line);
  padding: 1rem 1.2rem;
  position: relative;
}

.video-comments__list .comment-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.video-comments__list .comment-author .avatar {
  border-radius: 50%;
  border: 2px solid var(--v-accent);
}

.video-comments__list .comment-author .fn {
  font-weight: 700;
  font-style: normal;
  color: var(--v-ink);
}

.video-comments__list .comment-author .says {
  display: none;
}

.video-comments__list .comment-meta {
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.video-comments__list .comment-meta a {
  color: #8a7456;
}

.video-comments__list .comment-content {
  color: var(--v-ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.video-comments__list .comment-content p {
  margin: 0 0 0.6rem;
}

.video-comments__list .reply {
  margin-top: 0.5rem;
}

.video-comments__list .comment-reply-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--v-accent);
}

.video-comments__list .comment-reply-link:hover {
  color: var(--v-dark);
}

.video-comments__closed {
  color: #8a7456;
  font-style: italic;
}

/* ----- Comment form ----- */

.video-comment-form {
  background: var(--v-bg);
  border: 1px solid var(--v-line);
  padding: 1.5rem 1.75rem 1.75rem;
  margin-top: 1.5rem;
}

.video-comment-form .comment-reply-title {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--v-ink);
  margin: 0 0 1rem;
}

.video-comment-form .comment-notes,
.video-comment-form .logged-in-as {
  font-size: 0.85rem;
  color: #8a7456;
  margin: 0 0 1rem;
}

.video-comment-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--v-ink);
  margin-bottom: 0.3rem;
}

.video-comment-form input[type="text"],
.video-comment-form input[type="email"],
.video-comment-form input[type="url"],
.video-comment-form textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid var(--v-line);
  background: #fff;
  color: var(--v-ink);
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.video-comment-form input:focus,
.video-comment-form textarea:focus {
  outline: none;
  border-color: var(--v-accent);
  box-shadow: 0 0 0 2px rgba(181, 100, 43, 0.2);
}

.video-comment-form .form-submit .submit {
  background: var(--v-accent);
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-comment-form .form-submit .submit:hover {
  background: var(--v-dark);
}

@media (max-width: 768px) {
  .video-comments {
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

/* ============================================
   SECTION 3: FEATURED VIDEOS GRID (3 columns / 6 items)
   ============================================ */

.section-title {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  color: var(--v-ink);
  position: relative;
  padding-bottom: 0.6rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: var(--v-accent);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.video-card {
  background: var(--v-paper);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(58, 42, 26, 0.12);
  border: 1px solid var(--v-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(58, 42, 26, 0.2);
}

.video-card__link {
  display: block;
  color: inherit;
}

.video-card-image {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--v-dark);
}

.video-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-card:hover .video-card-image img {
  transform: scale(1.05);
}

.no-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a2a1a, #56402a);
}

.no-image span {
  color: var(--v-gold);
  font-size: 2.1rem;
  opacity: 0.9;
}

.video-card-content {
  padding: 1rem 1.1rem 1.25rem;
}

.video-card-content h3 {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.02rem;
  margin: 0 0 0.85rem;
  color: var(--v-ink);
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--v-dark);
  color: var(--v-cream);
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.video-card:hover .play-btn {
  background: var(--v-accent);
  color: #fff;
}

.no-videos {
  color: #8a7456;
  font-style: italic;
  grid-column: 1 / -1;
}

/* View More */
.view-more {
  text-align: center;
  margin-top: 0.5rem;
}

.btn {
  display: inline-block;
  padding: 0.95rem 2.4rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 2px solid var(--v-dark);
  cursor: pointer;
}

.btn-primary {
  background: var(--v-dark);
  color: var(--v-cream);
}

.btn-primary:hover {
  background: var(--v-accent);
  border-color: var(--v-accent);
  color: #fff;
}

/* ============================================
   SINGLE VIDEO STORY PAGE
   ============================================ */

.video-single__inner {
  max-width: 900px;
  margin: 0 auto;
}

.video-single__title {
  font-family: "Alfa Slab One", "Rockwell", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1.1;
  color: var(--v-ink);
  margin: 0 0 1.5rem;
}

.video-single__meta {
  background: var(--v-paper);
  border: 1px solid var(--v-line);
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  color: var(--v-ink);
}

.video-single__meta p {
  margin: 0 0 0.6rem;
}

/* ---- Keyword tags (single video) ---- */
.video-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0 0.2rem;
}

.video-tags__label {
  font-weight: 700;
  color: var(--v-ink);
}

.video-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.video-tag {
  background: var(--v-dark);
  color: var(--v-cream);
  padding: 0.25rem 0.8rem;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.video-tag::before {
  content: "#";
  opacity: 0.55;
  margin-right: 1px;
}

/* ---- Tag input (submission form) ---- */
.mj-form .mj-taginput {
  width: 100%;
  min-height: 3.05rem;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.55rem;
  border: 1px solid #5a4631;
  background: #2a1d10;
  box-sizing: border-box;
  cursor: text;
  overflow: hidden;
}

.mj-form .mj-taginput:focus-within {
  border-color: var(--v-gold);
  box-shadow: 0 0 0 2px rgba(211, 154, 60, 0.25);
}

/* Tags wrap on their own row(s); the input sits on the row below. */
.mj-taginput__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mj-taginput__tags:not(:empty) {
  margin-bottom: 0.5rem;
}

.mj-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 0.35rem;
  background: var(--v-accent);
  color: #fff;
  padding: 0.28rem 0.42rem 0.28rem 0.62rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}

.mj-form .mj-tag__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border: none;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1;
  padding: 0;
  margin: 0;
  transition: background 0.15s ease;
}

.mj-form .mj-tag__x:hover {
  background: rgba(0, 0, 0, 0.45);
}

.mj-form .mj-taginput__field {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--v-cream);
  margin: 0;
  padding: 0.28rem 0.05rem;
  font-size: 0.95rem;
  line-height: 1.35;
  box-shadow: none;
}

.mj-form .mj-taginput__field:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.video-single__back {
  margin-top: 2rem;
  text-align: center;
}

/* ============================================
   SITE FOOTER
   ============================================ */

.site-footer {
  background: var(--v-dark);
  color: var(--v-muted);
  margin-top: 4rem;
  border-top: 3px solid var(--v-accent);
  box-shadow: 0 -6px 24px rgba(58, 42, 26, 0.18);
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.site-footer__brand {
  font-family: "Alfa Slab One", Georgia, serif;
  color: var(--v-cream);
  font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.85rem;
  }

  .site-brand {
    align-items: center;
  }

  .site-branding {
    font-size: 3.35rem;
  }

  .site-tagline {
    text-align: center;
  }

  .site-nav {
    justify-content: center;
    width: 100%;
    gap: 0.65rem 1.5rem;
  }

  .home-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

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

  .charity-amount {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1rem 1.25rem;
    justify-items: start;
    align-items: start;
  }

  .site-brand {
    align-items: flex-start;
  }

  .site-tagline {
    text-align: left;
  }

  .site-nav-toggle {
    display: inline-flex;
    justify-self: end;
    margin-top: 0.15rem;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.6rem;
    padding: 0.7rem 0.85rem;
    background: rgba(47, 35, 24, 0.94);
    border-top: 3px solid var(--v-accent);
    box-shadow: 0 10px 22px rgba(47, 35, 24, 0.22);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__link {
    color: var(--v-cream);
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid rgba(239, 229, 206, 0.16);
    text-shadow: none;
  }

  .site-nav__link:last-child {
    border-bottom: 0;
  }

  .site-nav__link::after {
    bottom: 0.45rem;
  }

  .home-layout {
    padding: 1.5rem 1rem 2.5rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .video-placeholder {
    font-size: 1.3rem;
  }
}

@media (max-width: 560px) {
  .site-brand {
    width: 100%;
  }

  .site-branding {
    font-size: 2.4rem;
  }

  .site-tagline {
    width: 100%;
    font-size: 0.86rem;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* ============================================
   ACTIVE NAV STATE
   ============================================ */

.site-nav__link.is-active {
  color: #c1272d; /* jersey red — matches the logo */
}

.site-nav__link.is-active::after {
  width: 100%;
  background: #c1272d;
}

/* ============================================
   VIDEOS PAGE — YouTube-inspired layout
   ============================================ */

.videos-archive__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-bottom: 1.5rem;
}

.videos-archive__head .section-title {
  margin: 0;
}

/* Search bar */
.mj-search {
  position: relative;
  flex: 1;
  max-width: 460px;
  min-width: 240px;
}

.mj-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.6;
  pointer-events: none;
}

.mj-search__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.6rem;
  border: 1px solid var(--v-line);
  border-radius: 40px;
  background: var(--v-paper);
  color: var(--v-ink);
  font-family: inherit;
  font-size: 0.98rem;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mj-search__input:focus {
  outline: none;
  border-color: var(--v-accent);
  box-shadow: 0 0 0 3px rgba(181, 100, 43, 0.18);
}

/* Category chips */
.mj-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.mj-chip {
  background: var(--v-paper);
  border: 1px solid var(--v-line);
  color: var(--v-ink);
  padding: 0.45rem 1.1rem;
  border-radius: 40px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mj-chip:hover {
  border-color: var(--v-accent);
}

.mj-chip.is-active {
  background: var(--v-dark);
  color: var(--v-cream);
  border-color: var(--v-dark);
}

/* The grid */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem 1.5rem;
}

.yt-card {
  background: transparent;
}

.yt-card__link {
  display: block;
  color: inherit;
}

.yt-card__thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--v-dark);
  box-shadow: 0 2px 10px rgba(58, 42, 26, 0.15);
}

.yt-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.yt-card:hover .yt-card__thumb img {
  transform: scale(1.06);
}

.yt-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  opacity: 0;
  background: rgba(28, 20, 10, 0.35);
  transition: opacity 0.25s ease;
}

.yt-card:hover .yt-card__play {
  opacity: 1;
}

.yt-card__body {
  display: flex;
  gap: 0.75rem;
  padding: 0.85rem 0.2rem 0;
}

.yt-card__avatar {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--v-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.yt-card__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.yt-card__title {
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.25rem;
  color: var(--v-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-card__channel,
.yt-card__date {
  font-size: 0.85rem;
  color: #8a7456;
  line-height: 1.3;
}

.yt-grid__empty-search {
  grid-column: 1 / -1;
  text-align: center;
  color: #8a7456;
  font-style: italic;
  padding: 2rem 0;
}

.videos-archive__pagination {
  margin-top: 2.5rem;
}

.videos-archive__pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  margin: 0 0.15rem;
  border: 1px solid var(--v-line);
  color: var(--v-ink);
  background: var(--v-paper);
  font-weight: 600;
}

.videos-archive__pagination .page-numbers.current {
  background: var(--v-dark);
  color: var(--v-cream);
  border-color: var(--v-dark);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info {
  background: var(--v-paper);
  border: 1px solid var(--v-line);
  border-top: 4px solid var(--v-accent);
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 6px 20px rgba(58, 42, 26, 0.12);
}

.contact-info .section-title {
  margin-top: 0;
}

.contact-info__lead {
  font-size: 1.05rem;
  color: var(--v-ink);
  margin: 0 0 1.75rem;
}

.contact-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
  color: var(--v-ink);
}

.contact-info__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--v-dark);
  color: var(--v-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-form-wrap {
  background: var(--v-paper);
  border: 1px solid var(--v-line);
  border-top: 4px solid var(--v-accent);
  padding: 2rem 2rem 2.25rem;
  box-shadow: 0 6px 20px rgba(58, 42, 26, 0.12);
}

.contact-form__note {
  font-size: 0.85rem;
  color: #8a7456;
  font-style: italic;
  margin: 0 0 1.25rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form__field {
  margin-bottom: 1.1rem;
}

.contact-form__field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--v-ink);
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--v-line);
  background: #fff;
  color: var(--v-ink);
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--v-accent);
  box-shadow: 0 0 0 2px rgba(181, 100, 43, 0.2);
}

.contact-form__submit {
  background: var(--v-accent);
  color: #fff;
  border: none;
  padding: 0.85rem 2.2rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-form__submit:hover {
  background: var(--v-dark);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-layout {
  max-width: 980px;
}

.about-panel {
  position: relative;
  padding: 2.25rem 0 2.5rem;
}

.about-panel__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 340px);
  gap: 2rem;
  align-items: start;
}

.about-panel__text {
  min-width: 0;
}

.about-kicker {
  margin: 0 0 0.6rem;
  color: #c1272d;
  font-family: "Saira Condensed", "Arial Narrow", "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(245, 237, 219, 0.7);
}

.about-copy {
  max-width: 760px;
  margin-top: 1.1rem;
  color: var(--v-dark-2);
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.65;
}

.about-copy p {
  margin: 0 0 1rem;
}

.about-person {
  margin: 0;
  border-top: 4px solid var(--v-accent);
  background: rgba(245, 237, 219, 0.78);
  box-shadow: 0 8px 22px rgba(44, 32, 19, 0.16);
}

.about-person__image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .about-panel__content {
    grid-template-columns: 1fr;
  }

  .about-person {
    max-width: 420px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .videos-archive__head {
    flex-direction: column;
    align-items: stretch;
  }

  .mj-search {
    max-width: none;
  }
}

/* ============================================
   "TÚ Y JACKSON" PAGE: 75% grid / 25% form
   ============================================ */
.videos-layout {
  display: grid;
  grid-template-columns: 3fr 1fr; /* 75% / 25% */
  gap: 2.5rem;
  align-items: start;
}

.videos-layout--wide {
  grid-template-columns: 1fr;
}

.videos-layout__main {
  min-width: 0;
}

.videos-layout__aside {
  min-width: 0;
}

/* Sort dropdown */
.mj-sort {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.25rem;
}

.mj-sort__label {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--v-ink);
  opacity: 0.85;
}

.mj-sort__select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--v-paper)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%233a2a1a' d='M6 8 0 0h12z'/%3E%3C/svg%3E")
    no-repeat right 1rem center;
  border: 1px solid var(--v-line);
  border-radius: 40px;
  color: var(--v-ink);
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 2.4rem 0.55rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mj-sort__select:focus {
  outline: none;
  border-color: var(--v-accent);
  box-shadow: 0 0 0 3px rgba(181, 100, 43, 0.18);
}

.mj-sort__go {
  border: 1px solid var(--v-line);
  border-radius: 40px;
  background: var(--v-dark);
  color: var(--v-cream);
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

/* Duration badge on the thumbnail */
.yt-card__duration {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  background: rgba(20, 14, 8, 0.85);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.22rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.02em;
  z-index: 2;
}

/* The submission form keeps its existing .submission-section styling; just make
   sure it fills the narrow aside column nicely. */
.videos-layout__aside .submission-section {
  margin: 0;
}

@media (max-width: 1024px) {
  .videos-layout {
    grid-template-columns: 1fr; /* stack: grid on top, form below */
    gap: 2rem;
  }
  .videos-layout__aside {
    position: static;
  }
}

/* ============================================
   HOME: "ENVIAR TU VÍDEO" CTA box (replaces the
   inline form, which now lives on "Tú y Jackson")
   ============================================ */
.submit-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
  width: min(100%, 347px);
  box-sizing: border-box;
  min-height: 0;
  aspect-ratio: 347 / 100;
  margin-inline: auto;
  padding: 0.65rem 1rem;
  text-decoration: none;
  color: var(--v-cream);
  background: var(--v-accent);
  border: 2px solid var(--v-dark);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(58, 42, 26, 0.22);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.submit-cta:hover {
  transform: translateY(-2px);
  background: var(--v-dark);
  box-shadow: 0 10px 26px rgba(58, 42, 26, 0.3);
}

.submit-cta__icon {
  display: none;
  font-size: 1.1rem;
  line-height: 1;
}

.submit-cta__title {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(1.12rem, 2.1vw, 1.45rem);
  line-height: 1.05;
}

.submit-cta__action {
  font-size: clamp(0.92rem, 1.6vw, 1.15rem);
  font-weight: 600;
  opacity: 0.95;
  text-decoration: underline;
}

.submit-cta--story {
  background: #8c4d29;
}

.submit-cta--story .submit-cta__title {
  font-size: clamp(0.98rem, 1.75vw, 1.24rem);
}

/* ============================================
   HOME: three category rows (3 thumbs + "see more")
   ============================================ */
.home-rows {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.video-row__head {
  margin-bottom: 1rem;
}

.video-row__head .section-title {
  margin: 0;
}

.video-row__title-link {
  color: inherit;
  text-decoration: none;
}

.video-row__title-link:hover {
  color: var(--v-accent);
}

.videos-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}

.video-card--with-more {
  position: relative;
}

.video-row__see-more {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.9rem;
  padding: 0.35rem 0.75rem;
  background: var(--v-accent);
  color: #fff;
  border: 1px solid rgba(245, 237, 219, 0.55);
  box-shadow: 0 2px 8px rgba(44, 32, 19, 0.25);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.video-row__see-more:hover {
  background: var(--v-dark);
  color: var(--v-cream);
}

.video-card--placeholder {
  opacity: 0.88;
}

.video-card--placeholder .video-card__link {
  cursor: default;
}

.video-card--placeholder:hover {
  transform: none;
}

.video-card--placeholder:hover .video-card-image img {
  transform: none;
}

.video-card--placeholder .play-btn {
  background: #6f5838;
}

/* ============================================
   HOME: bigger type in the "$250 raised" box
   ============================================ */
.charity-amount {
  font-size: 3.35rem;
}

.charity-label {
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  margin-bottom: 0.55rem;
}

.charity-description {
  font-size: 1.05rem;
  line-height: 1.35;
}

/* ============================================
   HOME: WhyHunger "Donate Now" button (hot link)
   ============================================ */
.whyhunger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  width: min(100%, 347px);
  box-sizing: border-box;
  min-height: 0;
  aspect-ratio: 347 / 100;
  margin-inline: auto;
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  color: var(--v-cream);
  background: linear-gradient(135deg, #22697b 0%, #164854 100%);
  border: 2px solid #0f3a44;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.whyhunger-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

.whyhunger-btn__logo {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--v-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1c5b69;
  font-weight: 800;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.whyhunger-btn__dot {
  color: #1c5b69;
}

.whyhunger-btn__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  line-height: 1.06;
  min-width: 0;
}

.whyhunger-btn__top {
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.whyhunger-btn__sub {
  font-size: 0.72rem;
  opacity: 0.9;
}

.whyhunger-btn__org {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.whyhunger-btn__foot {
  margin-top: 0.08rem;
  font-size: 0.74rem;
  font-style: italic;
  opacity: 0.9;
  white-space: nowrap;
}

/* ============================================
   HOME: "Share Your Donation" controlled form
   ============================================ */
.donation-sub {
  margin: 0 0 0.45rem;
  color: var(--v-cream);
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.1;
  text-wrap: balance;
  text-align: center;
}

.donation-intro {
  max-width: 24rem;
  margin: 0 auto 1rem;
  color: #d7c4a4;
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.donation-field {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
  margin-bottom: 0.76rem;
}

.donation-field__label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #f1e4ca;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.donation-field__label::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(214, 196, 160, 0.22);
}

.donation-form input,
.donation-form textarea {
  border-color: #6d5236;
  background: #21160d;
  color: var(--v-cream);
  font-size: 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.donation-form input::placeholder,
.donation-form textarea::placeholder {
  color: #a88d66;
  opacity: 1;
}

.donation-form input:focus,
.donation-form textarea:focus {
  outline: none;
  border-color: var(--v-accent);
  background: #271b10;
  box-shadow: 0 0 0 2px rgba(181, 100, 43, 0.22);
}

.donation-form input:hover,
.donation-form textarea:hover {
  border-color: #8a6845;
}

.donation-field:focus-within .donation-field__label {
  color: var(--v-cream);
}

.donation-field:focus-within .donation-field__label::after {
  background: rgba(181, 100, 43, 0.58);
}

.donation-amount {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.donation-amount__sign {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--v-gold);
}

/* .donation-form prefix beats ".mj-form input { width:100% }" so the
   amount/name fields keep their intended widths instead of stacking. */
.donation-form .donation-amount input {
  flex: 1 1 auto;
  width: auto;
  margin-bottom: 0;
}

.donation-name {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.42fr);
  gap: 0.5rem;
}

.donation-form .donation-name__first {
  width: 100%;
  min-width: 120px;
  margin-bottom: 0;
}

.donation-form .donation-name__initial {
  width: 100%;
  max-width: none;
  text-align: center;
  margin-bottom: 0;
}

.donation-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--v-cream);
  cursor: pointer;
}

.donation-check input {
  width: auto;
  margin: 0;
  accent-color: var(--v-accent);
}

.donation-form textarea {
  min-height: 110px;
  resize: vertical;
}

.donation-note {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.76rem;
  font-style: italic;
  line-height: 1.3;
  color: var(--v-muted);
}

.donation-section {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.45rem;
}

.donation-section .form-content,
.donation-form {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.donation-form input,
.donation-form textarea {
  padding: 0.68rem 0.78rem;
}

.donation-form button {
  width: 100%;
  padding: 0.68rem 1rem;
  margin-top: auto;
}

.donation-location {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 5.5rem;
  gap: 0.5rem;
}

.donation-shares {
  margin-top: 3rem;
}

.donation-shares__head {
  margin-bottom: 1.25rem;
}

.donation-shares__head .section-title {
  margin-bottom: 0.55rem;
}

.donation-shares__head p {
  max-width: 42rem;
  margin: 0;
  color: #5a4631;
  font-size: 1.05rem;
}

.donation-shares__all {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  color: var(--v-accent);
  font-family: "Zilla Slab", Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.donation-shares__all:hover,
.donation-shares__all:focus {
  color: var(--v-red);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.donation-shares__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.donation-share-card {
  direction: ltr;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 1.35rem 1.4rem;
  background: var(--v-paper);
  border: 1px solid var(--v-line);
  border-top: 4px solid var(--v-accent);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(58, 42, 26, 0.14);
}

.donation-shares__more-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.2rem;
}

.donation-shares__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  min-width: 9.6rem;
  padding: 0.65rem 1.15rem;
  background: var(--v-accent);
  color: var(--v-cream);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 12px rgba(47, 35, 24, 0.22);
  font-family: "Alfa Slab One", Georgia, serif;
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.donation-shares__more:hover,
.donation-shares__more:focus {
  background: var(--v-red);
  color: var(--v-cream);
}

.donation-share-card__quote {
  margin: 0 0 1rem;
  color: var(--v-ink);
  font-size: 1.02rem;
  line-height: 1.5;
}

.donation-share-card__quote::before {
  content: "\201C";
  color: var(--v-accent);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 0;
  margin-right: 0.15rem;
}

.donation-share-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
  color: var(--v-dark-2);
  font-size: 0.92rem;
}

.donation-share-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.donation-share-card__details span {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.28rem 0.65rem;
  background: var(--v-dark);
  color: var(--v-cream);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .donation-name {
    grid-template-columns: 1fr;
  }

  .donation-form .donation-name__initial {
    max-width: 11rem;
  }
}

@media (max-width: 900px) {
  .donation-shares__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .donation-location,
  .donation-shares__grid {
    grid-template-columns: 1fr;
  }
}

/* Honeypot: kept off-screen, never shown to humans */
.mj-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

@media (max-width: 560px) {
  .videos-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ARTICLES (blog): list + write form + single
   ============================================ */
.articles-write-cta {
  white-space: nowrap;
  cursor: pointer;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.article-card {
  background: var(--v-paper);
  border: 1px solid var(--v-line);
  box-shadow: 0 2px 10px rgba(58, 42, 26, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(58, 42, 26, 0.2);
}

.article-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.article-card__thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: var(--v-dark);
}

.article-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__thumb .no-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--v-muted);
}

.article-card__body {
  padding: 1.1rem 1.2rem 1.4rem;
}

.article-card__cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--v-accent);
  margin-bottom: 0.4rem;
}

.article-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  line-height: 1.25;
  color: var(--v-ink);
}

.article-card__meta {
  font-size: 0.82rem;
  color: #6f4521;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.article-card__excerpt {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #5a4631;
}

.article-card__more {
  font-weight: 700;
  color: var(--v-accent);
}

/* Write-an-article form */
.article-write {
  width: min(100%, 980px);
  margin: 2rem auto 0;
  padding: 2.2rem 2.5rem 2.6rem;
  border-radius: 8px;
  box-sizing: border-box;
}

.article-write[hidden] {
  display: none;
}

.article-write h2 {
  margin: 0 0 0.3rem;
  color: var(--v-cream);
  font-size: 2.1rem;
  line-height: 1.1;
}

.article-write__sub {
  max-width: 42rem;
  margin: 0 0 1.5rem;
  color: var(--v-muted);
  font-style: italic;
}

.article-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: var(--v-cream);
}

.article-form__field {
  margin-bottom: 1rem;
}

.article-form__field label {
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.25;
}

.article-form__hint {
  display: block;
  margin-top: 0.35rem;
  color: var(--v-muted);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.3;
}

.article-form input[type="text"],
.article-form input[type="file"],
.article-form input[type="email"],
.article-form select {
  display: block;
  width: 100%;
  margin-top: 0;
  padding: 0.82rem 0.9rem;
  border: 1px solid #5a4631;
  background: #2a1d10;
  color: var(--v-cream);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  box-sizing: border-box;
}

.article-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 1.25rem;
}

.article-form__editor-label {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

/* The TinyMCE editor sits on a light surface for readability */
.article-form .wp-editor-wrap {
  margin-bottom: 1rem;
}

.article-form .wp-editor-container {
  border-color: #5a4631;
}

.article-form .mce-edit-area iframe {
  min-height: 340px;
}

.article-form .mj-turnstile {
  margin: 0.4rem 0 1rem;
}

.article-form .btn {
  min-width: 220px;
}

/* Single article */
.article-single {
  max-width: 820px;
  margin: 0 auto;
}

.article-single__cat {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--v-accent);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.article-single__title {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 0.5rem;
  color: var(--v-ink);
}

.article-single__byline {
  color: var(--v-dark-2);
  font-weight: 600;
  margin-bottom: 1.3rem;
}

.article-single__cover {
  margin-bottom: 1.5rem;
}

.article-single__cover img {
  width: 100%;
  height: auto;
  display: block;
}

.article-single__content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--v-ink);
}

.article-single__content p {
  margin: 0 0 1.1rem;
}

.article-single__content img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 760px) {
  .article-write {
    padding: 1.45rem 1.2rem 1.7rem;
  }

  .article-form__row {
    grid-template-columns: 1fr;
  }
}
