:root {
  --teal: #3a8fa3;
  --teal-dark: #1e5f72;
  --teal-deeper: #0f3d4d;
  --teal-light: #d6eef4;
  --pink: #d4357a;
  --pink-bright: #e84393;
  --pink-light: #fce8f2;
  --white: #ffffff;
  --cream: #fdf9fb;
  --charcoal: #1a2028;
  --gray-mid: #7a8490;
  --gray-light: #f2f5f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
}

/* NAV */
nav {
  background: var(--teal-deeper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 62px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--pink);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.nav-logo-bold {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-logo-script {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a.active {
  color: var(--white);
  border-bottom: 2px solid var(--pink-bright);
  padding-bottom: 2px;
}

.nav-donate {
  background: var(--pink);
  color: var(--white);
  padding: 0.45rem 1.3rem;
  border-radius: 3px;
  font-weight: 700;
  border-bottom: none;
}

.nav-donate:hover {
  background: var(--pink-bright);
}

/* FOOTER */
footer {
  background: var(--teal-deeper);
  border-top: 3px solid var(--pink);
  padding: 2.5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.footer-logo-bold {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-logo-script {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.837);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.footer-legal a:hover {
  color: var(--white);
}

.footer-legal {
  font-size: 1.20rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin: 1rem 0;
}

.footer-social a {
  font-size: 1.5rem;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-social a:hover {
  opacity: 0.7;
}

/* CONTACT FORM */
.contact-section {
  background: var(--gray-light);
  padding: 5rem 2rem;
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  background: var(--white);
  border: 1px solid #dde3e8;
  border-top: 4px solid var(--teal);
  border-radius: 4px;
  padding: 2.5rem;
  text-align: left;
}

.contact-form .form-field {
  margin-bottom: 1.25rem;
}

.contact-form .form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 0.4rem;
  display: block;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid #dde3e8;
  border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}

.contact-form .form-field input:focus,
.contact-form .form-field textarea:focus {
  border-color: var(--teal);
}

.contact-form .form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-pink {
  width: 100%;
  margin-top: 0.5rem;
}

/* BUTTONS */
.btn-pink {
  background: var(--pink);
  color: var(--white);
  padding: 0.85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.1s;
}

.btn-pink:hover {
  background: var(--pink-bright);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--charcoal);
  padding: 0.85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
  padding: 0.85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.btn-white:hover {
  opacity: 0.9;
}

.btn-outline-pink {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s;
}

.btn-outline-pink:hover {
  border-color: var(--white);
}

/* SECTIONS & COMPONENTS */
.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 4.5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal-deeper);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.section-title .accent {
  color: var(--pink);
}

.section-title .script-accent {
  font-family: 'Caveat', cursive;
  font-size: 1.15em;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--pink);
}

/* HOMEPAGE STYLES */

/* HERO */
.hero {
  background: var(--teal-dark);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: var(--pink);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.hero-name-block {
  margin-bottom: 1.5rem;
}

.hero-first {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  line-height: 1;
  margin-bottom: 0.1rem;
}

.hero-last {
  font-family: 'Caveat', cursive;
  font-size: clamp(5rem, 8vw, 7rem);
  color: var(--white);
  display: block;
  line-height: 1;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.texas-star {
  color: var(--pink-bright);
  font-size: 1.1rem;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.hero-sub-race {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3.5rem 5rem 10rem;
}

.hero-right h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.photo-section {
  position: relative;
  overflow: hidden;
}

.photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/protest.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.6);
  transform: scale(1.1);
  opacity: 0.5;
}

.photo-main {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 60%;
  border: 4px solid var(--pink-bright);
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
}

.check-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.check-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.check-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.5;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--teal-dark);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.check-icon svg {
  width: 13px;
  height: 13px;
  fill: var(--white);
}

.intro-strip {
  background: var(--teal-deeper);
  padding: 1.1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-top: 3px solid var(--teal);
}

.intro-strip p {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  word-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.intro-strip span {
  color: var(--pink-bright);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.about-image-col {
  background: var(--teal-light);
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.about-image-inner {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(160deg, #3a8fa3 0%, #1e5f72 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text {
  padding: 5rem 4rem 5rem 3.5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text p {
  font-size: 1.05rem;
  color: #3a4149;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-text p:last-of-type {
  margin-bottom: 1.8rem;
}

.issues {
  padding: 6rem 4rem;
  background: var(--teal-deeper);
  position: relative;
  overflow: hidden;
}

.issues-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.issues-header .section-label {
  color: var(--pink-bright);
}

.issues-header .section-title {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.issue-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--pink);
  border-radius: 3px;
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}

.issue-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.issue-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.issue-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

.issue-tag {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-bright);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 1px;
}

/* EVENTS */
.events {
  background: var(--pink-light);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}

.events-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.events-header .section-label {
  color: var(--teal);
}

.events-header .section-title {
  color: var(--charcoal);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.event-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--pink);
  border-radius: 3px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.event-date-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.event-date-box {
  background: var(--pink);
  border-radius: 3px;
  padding: 0.3rem 0.65rem;
  text-align: center;
  flex-shrink: 0;
}

.event-date-box .month {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: (var(--charcoal));
  line-height: 1;
}

.event-date-box .day {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.event-type-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(232, 67, 147, 0.15);
  border: 1px solid rgba(232, 67, 147, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}

.event-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event-meta span {
  font-size: 0.83rem;
  color: var(--charcoal);
  line-height: 1.4;
}

.event-meta span strong {
  color: var(--charcoal);
  font-weight: 600;
}

.event-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 1px;
  width: fit-content;
}

/* SOCIAL GRID */
.socials {
  background: var(--pink-light);
  padding: 5rem 4rem;
  position: relative;
  overflow: hidden;
}

#curator-feed-default-feed-layout .crt-grid,
#curator-feed-default-feed-layout .crt-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1400px;
  margin: 0 auto;
}

#curator-feed-default-feed-layout .crt-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--pink);
  border-radius: 3px;
  overflow: hidden;
  transition: background 0.2s;
}

#curator-feed-default-feed-layout .crt-item:hover {
  background: rgba(232, 67, 147, 0.04);
}

#curator-feed-default-feed-layout .crt-source-icon-container {
  color: var(--charcoal);
}

#curator-feed-default-feed-layout .crt-username,
#curator-feed-default-feed-layout .crt-source-link {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}

#curator-feed-default-feed-layout .crt-text,
#curator-feed-default-feed-layout .crt-caption {
  font-size: 0.83rem;
  color: var(--charcoal);
  line-height: 1.4;
  padding: 0.75rem 1.75rem;
}

#curator-feed-default-feed-layout .crt-tag-link,
#curator-feed-default-feed-layout .crt-hashtag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

#curator-feed-default-feed-layout .crt-date,
#curator-feed-default-feed-layout .crt-post-date {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);

  width: fit-content;
}

.crt-logo.crt-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  color: var(--charcoal);
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 768px) {
  .events {
    padding: 4rem 1.5rem;
  }

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

/* QUOTE */
.quote-section {
  background: var(--teal);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  position: absolute;
  top: -3rem;
  left: 1rem;
  font-family: 'Caveat', cursive;
  font-size: 18rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  pointer-events: none;
}

.quote-text {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.quote-attr {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 2;
}

.quote-section cite {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
  position: relative;
  z-index: 2;
}

/* JOIN */
.join-wrap {
  background: var(--pink-light);
  padding: 5rem 3rem;
}

.join-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.join-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.join-form h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal-deeper);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.form-field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}

.form-field input {
  padding: 0.65rem 0.85rem;
  border: 1px solid #dde3e8;
  border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
}

.form-field input:focus {
  border-color: var(--teal);
}

.btn-form {
  width: 100%;
  background: var(--pink);
  color: var(--white);
  padding: 0.9rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.btn-form:hover {
  background: var(--pink-bright);
}

/* DONATE */
.donate-strip {
  background: var(--teal-dark);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-strip .section-label {
  color: rgba(255, 255, 255, 0.6);
}

.donate-strip h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0.5rem 0 1rem;
  position: relative;
  z-index: 2;
}

.donate-strip p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.25rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.donate-amounts {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.donate-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 2rem;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 100px;
  text-decoration: none;
  display: inline-block;
}

.donate-btn:hover,
.donate-btn.featured {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* ABOUT PAGE STYLES */

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  position: relative;
  overflow: hidden;
}

.about-hero-photo {
  background: linear-gradient(160deg, #3a8fa3 0%, #0f3d4d 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 480px;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.photo-placeholder-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.about-hero-photo::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -1px;
  width: 80px;
  height: 100%;
  background: var(--cream);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

.about-hero-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-name-display {
  margin-bottom: 1.2rem;
}

.hero-name-display .first {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal-dark);
  display: block;
  margin-bottom: 0.1rem;
}

.hero-name-display .last {
  font-family: 'Caveat', cursive;
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: var(--teal-deeper);
  display: block;
  line-height: 1;
}

.hero-descriptor {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}

.descriptor-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-light);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  border: 1px solid rgba(212, 53, 122, 0.2);
}

.hero-intro {
  font-size: 1.1rem;
  color: #3a4149;
  line-height: 1.8;
  margin-bottom: 2rem;
  border-left: 3px solid var(--teal);
  padding-left: 1.2rem;
}

.identity-strip {
  background: var(--teal-deeper);
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-bottom: 4px solid var(--pink);
}

.identity-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.identity-item:last-child {
  border-right: none;
}

.identity-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 53, 122, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.identity-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--pink-bright);
}

.identity-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.identity-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.story-section.reverse {
  direction: rtl;
}

.story-section.reverse>* {
  direction: ltr;
}

.story-photo {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.story-photo.teal-bg {
  background: linear-gradient(135deg, #3a8fa3, #1e5f72);
}

.story-photo.pink-bg {
  background: linear-gradient(135deg, #d4357a, #9b1f58);
}

.story-photo.deep-bg {
  background: linear-gradient(135deg, #1e5f72, #0f3d4d);
}

.story-photo-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.story-text {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.story-text.cream {
  background: var(--cream);
}

.story-number {
  font-family: 'Caveat', cursive;
  font-size: 5rem;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: -1rem;
  display: block;
}

.story-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-deeper);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.story-text h2 .accent {
  color: var(--pink);
}

.story-text p {
  font-size: 1rem;
  color: #3a4149;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-text p:last-of-type {
  margin-bottom: 0;
}

#tax-free-info-card {
  margin: 1.5rem;
  padding: 2.5rem;
  background: var(--cream);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  justify-content: center;
  border: 2px solid var(--pink);
}

#tax-free-info-card p {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 0.02em;
  color: var(--teal-deeper);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.full-quote {
  background: var(--pink);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.full-quote::before {
  position: absolute;
  top: -3rem;
  left: 1rem;
  font-family: 'Caveat', cursive;
  font-size: 18rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
  pointer-events: none;
}

.full-quote blockquote {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 1.2rem;
  line-height: 1.55;
  position: relative;
  z-index: 2;
}

.full-quote cite {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
  position: relative;
  z-index: 2;
  display: block;
}

.endorsements {
  background: var(--gray-light);
  padding: 4.8rem 3.8rem;
  text-align: center;
}

.endorsements .section-label {
  text-align: center;
}

.endorsements h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal-deeper);
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

.endorse-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.endorse-badge {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid #c5d5dc;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  display: inline-block;
}

.involvement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.involvement-text {
  padding: 5rem 3.5rem 5rem 4rem;
  background: var(--teal-deeper);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.involvement-text .section-label {
  color: var(--pink-bright);
}

.involvement-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.involvement-text h2 .script {
  font-family: 'Caveat', cursive;
  text-transform: none;
  font-weight: 400;
  color: var(--pink-bright);
  font-size: 1.2em;
  letter-spacing: 0;
  display: block;
  line-height: 1;
}

.involvement-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.involvement-list {
  list-style: none;
  margin: 0.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.involvement-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.involvement-list li::before {
  content: '★';
  color: var(--pink-bright);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.involvement-photo {
  background: linear-gradient(135deg, #d4357a, #1e5f72);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-cta {
  background: var(--pink);
  padding: 5rem 4rem;
  text-align: center;
}

.about-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.about-cta .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ISSUES PAGE STYLES */

.page-hero {
  background: var(--teal-deeper);
  padding: 5rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--pink);
}

.page-hero::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(212, 53, 122, 0.1);
  pointer-events: none;
}

.page-hero-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-bright);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.05;
  position: relative;
  z-index: 2;
  margin-bottom: 0.5rem;
}

.page-hero h1 span {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  text-transform: none;
  color: var(--pink-bright);
  font-size: 1.1em;
  letter-spacing: 0;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  margin: 1.2rem auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.issue-nav {
  background: var(--gray-light);
  padding: 1.25rem 2rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 1px solid #dde3e8;
  position: sticky;
  top: 62px;
  z-index: 90;
}

.issue-pill {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid #c5d5dc;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.issue-pill:hover,
.issue-pill.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

.issues-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.issue-section {
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #dde3e8;
}

.issue-header {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  position: relative;
}

.issue-header:hover {
  background: var(--gray-light);
}

.issue-header.open {
  background: var(--teal-deeper);
  border-bottom: 3px solid var(--pink);
}

.issue-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 3px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.issue-header.open .issue-icon-box {
  background: rgba(232, 67, 147, 0.25);
}

.issue-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--pink);
  transition: fill 0.2s;
}

.issue-header.open .issue-icon-box svg {
  fill: var(--pink-bright);
}

.issue-header-text {
  flex: 1;
}

.issue-header-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-deeper);
  transition: color 0.2s;
  line-height: 1.1;
}

.issue-header.open .issue-header-text h2 {
  color: var(--white);
}

.issue-header-text p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 0.2rem;
  font-style: italic;
  transition: color 0.2s;
}

.issue-header.open .issue-header-text p {
  color: rgba(255, 255, 255, 0.55);
}

.issue-chevron {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.issue-chevron svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--gray-mid);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.issue-header.open .issue-chevron {
  transform: rotate(180deg);
}

.issue-header.open .issue-chevron svg {
  stroke: rgba(255, 255, 255, 0.7);
}

.issue-body {
  display: none;
  padding: 2rem 2rem 2rem 4.4rem;
  background: var(--cream);
  border-top: none;
}

.issue-body.open {
  display: block;
}

.issue-body p {
  font-size: 1rem;
  color: #3a4149;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.issue-body p:last-of-type {
  margin-bottom: 0;
}

.issue-points {
  list-style: none;
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.issue-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: #3a4149;
  line-height: 1.55;
}

.issue-points li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.issue-quote {
  border-left: 4px solid var(--pink);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--pink-light);
  border-radius: 0 3px 3px 0;
}

.issue-quote p {
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  color: var(--pink);
  margin: 0;
  line-height: 1.5;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
  scroll-margin-top: 140px;
}

.section-divider-line {
  flex: 1;
  height: 1px;
  background: #dde3e8;
}

.section-divider-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  white-space: nowrap;
}

.issues-cta {
  background: var(--pink);
  padding: 4rem;
  text-align: center;
}

.issues-cta h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.issues-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* VOLUNTEER PAGE STYLES */
.volunteer-page {
  background: var(--teal);
  padding: 5rem 4rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}


.volunteer-page-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-bright);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.volunteer-page h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(5rem, 8.5vw, 7rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.05;
  position: relative;
  z-index: 2;
  margin-bottom: 0.5rem;
}

.volunteer-page h1 span {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  text-transform: none;
  color: var(--pink-bright);
  font-size: 1.1em;
  letter-spacing: 0;
}

.volunteer-page-sub {
  font-size: 1.1rem;
  color: black;
  max-width: 600px;
  margin: 1.2rem auto 0;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/*VOLUNTEER FORM STYLES*/

.form-toggle {
  cursor: pointer;
  background: var(--pink);
  color: white;
  padding: 14px 20px;
  border: none;
  width: 100%;
  text-align: center;
  font-size: 20px;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-toggle span:first-child {
  flex: 1;
  text-align: center;
}


.form-toggle .arrow {
  transition: transform 0.3s ease;
}

.form-toggle.active .arrow {
  transform: rotate(180deg);
}

.form-container {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  background: #f9f9f9;
  border-radius: 0 0 6px 6px;
}

.form-container iframe {
  width: 100%;
  height: 800px; /* adjust to your form's length */
  border: 0;
  display: block;
}

/* BLOG PAGE STYLES*/
.upload-page {
  background: var(--cream);
  padding: 3.5rem 4rem 6rem;
}

.upload-inner {
  max-width: 900px;
  margin: 0 auto;
}

.upload-inner .section-label {
  margin-bottom: 0.5rem;
}

.upload-inner h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.6rem);
  text-transform: uppercase;
  color: var(--teal-deeper);
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}

.upload-sub {
  font-size: 1.05rem;
  color: #3a4149;
  line-height: 1.7;
  max-width: 55ch;
  margin-bottom: 1.5rem;
}

.upload-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid #dde3e8;
  border-left: 3px solid var(--teal);
  border-radius: 3px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 2.5rem;
}

.upload-note i {
  color: var(--teal);
}

/* Composer / dropzone */
.upload-composer {
  border: 2px dashed #c5d5dc;
  border-radius: 4px;
  background: var(--white);
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-composer:hover {
  border-color: var(--teal);
}

.upload-composer.dragover {
  border-color: var(--pink);
  background: var(--pink-light);
}

.upload-composer .icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.15rem;
}

.upload-composer h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: var(--teal-deeper);
  margin-bottom: 0.3rem;
}

.upload-composer p {
  margin: 0;
  color: var(--gray-mid);
  font-size: 0.9rem;
}

.upload-composer input {
  display: none;
}

/* Feed header, reusing the section-label + divider language from style.css */
.feed-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 3rem 0 1.4rem;
  border-bottom: 1px solid #dde3e8;
  padding-bottom: 0.8rem;
}

.feed-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal-deeper);
  margin: 0;
}

.feed-header span {
  font-size: 0.82rem;
  color: var(--gray-mid);
}

.feed {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Post card follows the same border-top-accent pattern as .issue-card / .event-card */
.feed-post {
  background: var(--white);
  border: 1px solid #dde3e8;
  border-top: 3px solid var(--pink);
  border-radius: 3px;
  overflow: hidden;
}

.feed-post-photo {
  width: 100%;
  max-height: 480px;
  overflow: hidden;
  background: var(--gray-light);
}

.feed-post-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.feed-post-pdf {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.4rem;
  text-decoration: none;
}

.feed-post-pdf .pdf-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 3px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.3rem;
}

.feed-post-pdf .pdf-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--teal-deeper);
  font-size: 1rem;
}

.feed-post-pdf .pdf-sub {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.2rem;
}

.feed-post-body {
  padding: 1.1rem 1.4rem 1.4rem;
}

.feed-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray-mid);
  margin-bottom: 0.55rem;
}

.feed-post-meta .filename {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--teal-deeper);
}

.feed-post-meta .remove {
  background: none;
  border: none;
  color: var(--gray-mid);
  cursor: pointer;
  font-size: 0.8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

.feed-post-meta .remove:hover {
  color: var(--pink);
  background: var(--pink-light);
}

.feed-caption {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--charcoal);
  resize: none;
  padding: 0;
}

.feed-caption::placeholder {
  color: #a9b0b6;
}

.feed-empty {
  text-align: center;
  color: var(--gray-mid);
  padding: 2.5rem 1rem;
  font-size: 0.92rem;
  border: 1px dashed #dde3e8;
  border-radius: 3px;
  background: var(--white);
}

/* Add this block into css/style.css, right after the existing
   .feed-post-photo img { ... } rule in the BLOG PAGE STYLES section */

.feed-post-pdf {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.4rem;
  text-decoration: none;
}

.feed-post-pdf .pdf-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 3px;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1.3rem;
}

.feed-post-pdf .pdf-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--teal-deeper);
  font-size: 1rem;
}

.feed-post-pdf .pdf-sub {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.2rem;
}

/* ---- Team login gate ---- */

.upload-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.upload-title-row h1 { margin-bottom: 0; }

.team-login-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid #c5d5dc;
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.team-login-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* Composer and remove buttons are hidden until unlocked */
.upload-composer { display: none; }
body.unlocked .upload-composer { display: block; }

.feed-post-meta .remove { display: none; }
body.unlocked .feed-post-meta .remove { display: inline-block; }

/* Password modal */
.login-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 61, 77, 0.55);
  align-items: center;
  justify-content: center;
  z-index: 300;
}

.login-gate.open { display: flex; }

.login-gate-box {
  background: var(--white);
  border-radius: 4px;
  border-top: 4px solid var(--pink);
  padding: 2rem 2rem 1.5rem;
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.login-gate-box h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-deeper);
  margin-bottom: 0.5rem;
}

.login-gate-box p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  margin-bottom: 1.1rem;
}

.login-gate-box input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #dde3e8;
  border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.login-gate-box input:focus { border-color: var(--teal); }

.login-gate-box textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #dde3e8;
  border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 1rem;
  box-sizing: border-box;
  resize: vertical;
}

.login-gate-box textarea:focus { border-color: var(--teal); }

.login-gate-actions {
  display: flex;
  gap: 0.6rem;
}

.login-gate-actions .btn-pink {
  flex: 1;
  padding: 0.7rem;
  font-size: 0.85rem;
}

.login-gate-cancel {
  flex: 1;
  background: var(--white);
  border: 1px solid #dde3e8;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-mid);
  cursor: pointer;
}

.login-gate-cancel:hover { color: var(--charcoal); }

.login-gate-error {
  display: none;
  font-size: 0.8rem;
  color: var(--pink);
  margin-top: 0.8rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .upload-page {
    padding: 2.5rem 1.5rem 4rem;
  }
}

/* ---- Team login gate ---- */

.upload-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.upload-title-row h1 {
  margin-bottom: 0;
}

.team-login-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--white);
  border: 1px solid #c5d5dc;
  padding: 0.5rem 0.9rem;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.team-login-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}

/* Composer and remove buttons are hidden until unlocked */
.upload-composer {
  display: none;
}

body.unlocked .upload-composer {
  display: block;
}

.feed-post-meta .remove {
  display: none;
}

body.unlocked .feed-post-meta .remove {
  display: inline-block;
}

/* Login modal */
.login-gate {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 61, 77, 0.55);
  align-items: center;
  justify-content: center;
  z-index: 300;
}

.login-gate.open {
  display: flex;
}

.login-gate-box {
  background: var(--white);
  border-radius: 4px;
  border-top: 4px solid var(--pink);
  padding: 2rem 2rem 1.5rem;
  width: 100%;
  max-width: 340px;
  text-align: center;
}

.login-gate-box h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-deeper);
  margin-bottom: 0.5rem;
}

.login-gate-box p {
  font-size: 0.88rem;
  color: var(--gray-mid);
  margin-bottom: 1.1rem;
}

.login-gate-box input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid #dde3e8;
  border-radius: 3px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.login-gate-box input:focus {
  border-color: var(--teal);
}

.login-gate-actions {
  display: flex;
  gap: 0.6rem;
}

.login-gate-actions .btn-pink {
  flex: 1;
  padding: 0.7rem;
  font-size: 0.85rem;
}

.login-gate-cancel {
  flex: 1;
  background: var(--white);
  border: 1px solid #dde3e8;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-mid);
  cursor: pointer;
}

.login-gate-cancel:hover {
  color: var(--charcoal);
}

.login-gate-error {
  display: none;
  font-size: 0.8rem;
  color: var(--pink);
  margin-top: 0.8rem;
  margin-bottom: 0;
}



/* --- Store page layout (sticky footer) --- */
body.store-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.store-page hero {
  display: block;
  flex: 1 0 auto;
  padding: 24px 32px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.store-page footer {
  flex-shrink: 0;
}

/* --- Brand row (logo + cart button) --- */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--teal-deeper);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.cart {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

.cart:hover {
  background: var(--pink-bright);
}

.badge {
  background: var(--white);
  color: var(--pink);
  border-radius: 50%;
  padding: 2px 8px;
  font-size: 12px;
  margin-left: 6px;
}

/* --- Cart panel (sits above the product grid) --- */
.cart-panel {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-top: 3px solid var(--teal);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 20px 0 32px;
}

.cart-panel h3 {
  margin-top: 0;
  color: var(--teal-deeper);
}

#cartItems {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 24px;
  color: var(--gray-mid);
  font-size: 14px;
}

.cart-panel button {
  padding: 9px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
}

#checkout {
  background: var(--teal-deeper);
  color: var(--white);
}

.secondary {
  background: var(--gray-light);
  color: var(--charcoal);
}

/* --- Product grid --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid #e5e5e5;
  border-top: 3px solid var(--pink);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-card .product-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card .product-price {
  font-weight: 700;
  color: var(--teal-deeper);
}

.product-card button {
  margin-top: auto;
  background: var(--teal-deeper);
  color: var(--white);
  border: none;
  padding: 9px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

/* MOBILE RESPONSIVE STYLES */

/* Hamburger menu button - hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {

  .section-divider {
    scroll-margin-top: 300px;
  }

  /* NAV */
  nav {
    padding: 0 1.25rem;
    height: 56px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--teal-deeper);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 3px solid var(--pink);
    z-index: 150;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    border-bottom: none;
  }

  .nav-links a.active {
    border-left: 3px solid var(--pink-bright);
    padding-left: calc(1.5rem - 3px);
  }

  .nav-donate {
    margin: 0.5rem 1.25rem 0;
    text-align: center;
    border-radius: 3px;
  }

  /* HOMEPAGE HERO */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero::after {
    display: none;
  }

  .hero-text {
    padding: 3.5rem 1.5rem 2.5rem;
    background: var(--teal-dark);
    align-items: center;
    text-align: center;
  }

  .hero-last {
    font-size: clamp(3.5rem, 15vw, 5rem);
  }

  .hero-tagline {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas a {
    text-align: center;
  }

  .hero-right {
    background: var(--pink);
    padding: 2.5rem 1.5rem 3rem;
    align-items: center;
  }

  .hero-right h2 {
    font-size: 1.4rem;
  }

  /* INTRO STRIP */
  .intro-strip {
    padding: 1.1rem 1.25rem;
  }

  /* ABOUT SECTION (homepage) */
  .about {
    grid-template-columns: 1fr;
  }

  .about-image-col {
    min-height: 280px;
  }

  .about-image-inner {
    min-height: 280px;
  }

  .about-text {
    padding: 2.5rem 1.5rem;
  }

  /* ISSUES GRID (homepage) */
  .issues {
    padding: 4rem 1.5rem;
  }

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

  /* QUOTE */
  .quote-section {
    padding: 3.5rem 1.5rem;
  }

  /* JOIN / FORM */
  .join-wrap {
    padding: 3.5rem 1.5rem;
  }

  .join-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* DONATE */
  .donate-strip {
    padding: 3.5rem 1.5rem;
  }

  /* FOOTER */
  footer {
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }


  /* ABOUT PAGE HERO */
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-photo {
    min-height: 320px;
  }

  .photo-placeholder {
    min-height: 320px;
  }

  .about-hero-photo::after {
    display: none;
  }

  .about-hero-text {
    padding: 2.5rem 1.5rem 3rem;
  }

  .hero-name-display .last {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  /* IDENTITY STRIP */
  .identity-strip {
    grid-template-columns: 1fr 1fr;
    padding: 2rem 1.25rem;
    gap: 0;
  }

  .identity-item {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .identity-item:nth-child(2) {
    border-right: none;
  }

  .identity-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .identity-item:last-child {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* STORY SECTIONS */
  .story-section {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .story-section>* {
    direction: ltr;
  }

  .story-photo {
    min-height: 260px;
    order: -1;
  }

  .story-text {
    padding: 2.5rem 1.5rem;
    order: 0;
  }

  .story-section.reverse .story-photo {
    order: -1;
  }

  .story-section.reverse .story-text {
    order: 0;
  }

  /* FULL QUOTE */
  .full-quote {
    padding: 3.5rem 1.5rem;
  }

  /* ENDORSEMENTS */
  .endorsements {
    padding: 3.5rem 1.5rem;
  }

  /* INVOLVEMENT */
  .involvement {
    grid-template-columns: 1fr;
  }

  .involvement-text {
    padding: 3rem 1.5rem;
  }

  .involvement-photo {
    min-height: 280px;
  }

  /* ABOUT CTA */
  .about-cta {
    padding: 3.5rem 1.5rem;
  }

  .about-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* VOLUNTEER PAGE */
  .volunteer-page {
    padding: 3.5rem 1.5rem 3rem;
  }

  .volunteer-page h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .volunteer-page-sub {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  @media (max-width: 600px) {
  .form-toggle {
    padding: 12px 14px;
    font-size: 15px;
    gap: 8px;
  }

  .form-toggle span:first-child {
    text-align: center;
    line-height: 1.3;
  }

  .form-toggle .arrow {
    flex-shrink: 0; /* keeps arrow from getting squished when text wraps */
  }

  .form-container iframe {
    width: 100%;
    height: 900px; /* Google Forms often need more height on narrow screens since fields stack */
  }
}

  /* ISSUES PAGE */
  .page-hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .issue-nav {
    padding: 1rem 1.25rem;
    top: 56px;
  }

  .issues-content {
    padding: 2.5rem 1.25rem 4rem;
  }

  .issue-header {
    padding: 1.25rem 1rem;
  }

  .issue-body {
    padding: 1.5rem 1rem 1.5rem 1rem;
  }

  .issues-cta {
    padding: 3rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

}

@media (max-width: 480px) {

  .identity-strip {
    grid-template-columns: 1fr;
  }

  .identity-item {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .identity-item:first-child {
    border-top: none;
  }

  .hero-last {
    font-size: clamp(3rem, 18vw, 4rem);
  }

  .volunteer-page h1 {
    font-size: clamp(2.6rem, 16vw, 3.4rem);
  }

  .nav-links a {
    font-size: 0.95rem;
  }

}