:root {
  --brand-red: #D71920;
  --brand-dark: #121212;
  --brand-blue: #003B71;
  --brand-light: #F5F6F8;
  --white: #ffffff;
  --muted: #667085;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  --font-main: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--brand-light);
  color: #111827;
}

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

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

/* Header */

.site-header {
  width: 100%;
  height: 88px;
  min-height: 88px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 64px;
}

.site-logo {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  object-fit: contain;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  color: #111827;
  font-weight: 900;
}

.brand small {
  display: block;
  font-size: 13px;
  line-height: 1.1;
  color: var(--muted);
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav a {
  font-weight: 800;
  font-size: 15px;
  color: #1f2937;
}

.nav a:hover {
  color: var(--brand-red);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* Hero */

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 56px;
  background:
    radial-gradient(circle at 20% 20%, rgba(215, 25, 32, 0.30), transparent 28%),
    linear-gradient(120deg, #121212 0%, #1c1c1c 45%, #4b0006 100%);
  color: #ffffff;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  background: rgba(215, 25, 32, 0.10);
  color: var(--brand-red);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.95;
  margin: 28px 0 24px;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.hero p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 16px 28px;
  font-weight: 900;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--brand-red);
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: #111827;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: #111827;
}

.hero-card {
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
}

.hero-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* Quick Grid */

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 48px 56px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.quick-grid article {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  padding: 32px;
  background: linear-gradient(145deg, #ffffff 0%, #fff7f7 100%);
  border: 1px solid rgba(215, 25, 32, 0.16);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-grid article::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.12);
}

.quick-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(17, 24, 39, 0.16);
}

.quick-grid span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.14), rgba(0, 59, 113, 0.10));
  font-size: 30px;
  margin-bottom: 18px;
}

.quick-grid h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: #111827;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.quick-grid p {
  color: #475467;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #D71920;
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.25);
}

.quick-link::after {
  content: ">";
  font-size: 16px;
}

.quick-link:hover {
  background: #b9151b;
  color: #ffffff;
}

/* Sections */

.feature-section,
.guides,
.digital-wall,
.signup {
  padding: 72px 56px;
  background: #ffffff;
}

.feature-section.alt {
  background: #f8fafc;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 56px);
  margin: 18px 0;
  color: #111827;
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.8px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* Image scroller */

.scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 32px 0;
}

.scroller img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 24px;
  background: #f3f4f6;
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.info-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-two div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
}

.info-two h3 {
  margin-top: 0;
  font-size: 24px;
}

.info-two p {
  color: var(--muted);
  line-height: 1.7;
}

/* Notice */

.notice {
  background: #fff7ed;
  border-left: 5px solid #f97316;
  padding: 18px;
  border-radius: 14px;
  color: #7c2d12;
  font-weight: 700;
}

/* Digital Wall */

.digital-wall {
  background: #ffffff;
}

.wall-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
}

.request-form,
.signup-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.request-form label {
  display: block;
  font-weight: 800;
  margin-bottom: 16px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.wall-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.wall-filters button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
  background: #e5e7eb;
}

.wall-filters button.active {
  background: var(--brand-red);
  color: #ffffff;
}

.request-list {
  display: grid;
  gap: 14px;
}

.request-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.request-card .meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.badge {
  background: rgba(215, 25, 32, 0.10);
  color: var(--brand-red);
  border-radius: 999px;
  padding: 4px 10px;
  font-weight: 900;
}

.request-card h4 {
  margin: 0 0 8px;
}

.request-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Guides */

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.guide-grid article {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.guide-grid h3 {
  font-size: 22px;
  margin-top: 0;
}

.guide-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.guide-grid article a {
  display: inline-block;
  margin: 8px 8px 0 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.10);
  color: var(--brand-red);
  font-weight: 800;
  font-size: 14px;
}

.guide-grid article a:hover {
  background: var(--brand-red);
  color: #ffffff;
}

/* Signup */

.signup {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: start;
}

.signup h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin: 18px 0;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.signup p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.signup-form {
  display: grid;
  gap: 14px;
}

/* Footer */

footer {
  background: #111827;
  color: #ffffff;
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

footer span {
  color: #d1d5db;
}

/* Access Gate */

.access-gate {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.92);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-gate.hidden {
  display: none;
}

.gate-card {
  width: min(420px, 92vw);
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  text-align: center;
}

.gate-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.gate-card button {
  margin-top: 14px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: var(--brand-red);
  color: #ffffff;
  font-weight: 900;
  cursor: pointer;
}

/* Responsive */

@media (max-width: 980px) {
  .site-header {
    padding: 16px 22px;
  }

  .nav {
    display: none;
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border-top: 1px solid var(--border);
    padding: 12px 22px;
  }

  .nav.open a {
    padding: 12px 0;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 56px 22px;
  }

  .quick-grid,
  .scroller,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 22px;
    padding-right: 22px;
  }

  .feature-section,
  .guides,
  .digital-wall,
  .signup {
    padding: 56px 22px;
  }

  .wall-layout,
  .signup,
  .info-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .site-logo {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero {
    padding: 42px 16px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero p {
    font-size: 17px;
  }

  .quick-grid,
  .scroller,
  .guide-grid {
    grid-template-columns: 1fr;
    padding: 32px 16px;
  }

  .feature-section,
  .guides,
  .digital-wall,
  .signup {
    padding: 42px 16px;
  }

  footer {
    padding: 24px 16px;
  }
}
/* Message from Admin */
.admin-message {
  padding: 72px 56px;
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #fff7f7 100%);
}

.admin-message-card {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(215, 25, 32, 0.14);
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.10);
}

.admin-message-card h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  margin: 18px 0 24px;
  color: #111827;
  font-weight: 950;
  letter-spacing: -0.8px;
}

.admin-message-card p {
  color: #475467;
  font-size: 18px;
  line-height: 1.8;
  max-width: 920px;
}

.admin-contact {
  margin-top: 28px;
  padding: 22px;
  border-radius: 22px;
  background: #fff1f2;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-contact strong,
.admin-contact span {
  color: #111827;
  font-weight: 900;
}

.admin-contact a {
  color: var(--brand-red);
  font-weight: 900;
}

@media (max-width: 640px) {
  .admin-message {
    padding: 42px 16px;
  }

  .admin-message-card {
    padding: 28px;
  }

  .admin-message-card p {
    font-size: 16px;
  }
}
/* Message from Admin - Personal Section */
.admin-message {
  padding: 72px 56px;
  background: linear-gradient(180deg, #fffdfd 0%, #fff5f5 100%);
}

.admin-message-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid rgba(215, 25, 32, 0.12);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 26px;
}

.admin-profile img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff1f2;
  box-shadow: 0 8px 24px rgba(215, 25, 32, 0.18);
  flex-shrink: 0;
}

.admin-profile-text h2 {
  margin: 10px 0 6px;
  font-size: clamp(34px, 4vw, 52px);
  color: #111827;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.8px;
}

.admin-handwriting {
  margin: 0;
  font-family: "Caveat", cursive;
  font-size: 34px;
  color: var(--brand-red);
  line-height: 1.1;
}

.admin-frame {
  position: relative;
  background: linear-gradient(180deg, #fffdfb 0%, #fff8f8 100%);
  border: 2px dashed rgba(215, 25, 32, 0.20);
  border-radius: 26px;
  padding: 30px 30px 26px;
}

.admin-frame::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 18px;
  font-size: 72px;
  line-height: 1;
  color: rgba(215, 25, 32, 0.14);
  font-family: Georgia, serif;
}

.admin-frame p {
  margin: 0 0 18px;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.9;
  color: #475467;
  text-align: left;
}

.admin-signoff {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(215, 25, 32, 0.12);
}

.signature {
  font-family: "Caveat", cursive !important;
  font-size: 38px !important;
  color: #111827 !important;
  line-height: 1.2 !important;
  margin-bottom: 14px !important;
}

.admin-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-contact a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.08);
  color: var(--brand-red);
  font-weight: 800;
  font-family: "Nunito", Arial, sans-serif;
}

.admin-contact a:hover {
  background: var(--brand-red);
  color: #ffffff;
}

@media (max-width: 768px) {
  .site-header {
    padding: 14px 18px;
    min-height: auto;
  }

  .site-logo {
    width: 58px;
    height: 58px;
  }

  .brand {
    gap: 12px;
  }

  .brand strong {
    font-size: 24px;
    line-height: 1.1;
  }

  .brand small {
    font-size: 14px;
    margin-top: 4px;
  }

  .header-signup-btn {
    display: none;
  }

  .quick-section-nav {
    position: sticky;
    top: 0;
    padding: 10px 12px;
    gap: 8px;
    z-index: 9999;
  }

  .quick-section-nav a {
    padding: 9px 16px;
    font-size: 14px;
  }

  .hero {
    padding-top: 44px !important;
  }

  .hero-copy {
    padding-top: 0 !important;
  }

  .hero-copy .eyebrow {
    font-size: 13px;
    padding: 14px 20px;
    line-height: 1.5;
  }

  .hero-copy h1 {
    font-size: 42px;
    line-height: 1.08;
  }
}

@media (max-width: 640px) {
  .admin-photo-frame {
    max-height: 260px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .admin-photo-frame img {
    height: 260px;
  }
}
/* NBSS logo fit fix */
.scroller img.logo-card-img {
  object-fit: contain !important;
  background: #ffffff !important;
  padding: 24px !important;
}
/* Responsive photo redesign */
.scroller {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0;
  align-items: stretch;
}

.scroller img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(215, 25, 32, 0.12);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
}

/* Logo/image card that should not be cropped */
.scroller img.logo-card-img {
  object-fit: contain !important;
  padding: 26px !important;
  background: #ffffff !important;
}

/* Admin message large image should fit fully */
.admin-photo-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  margin-bottom: 32px;
  border: 6px solid #fff1f2;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  background: #fff7f7;
}

.admin-photo-frame img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 22px;
}

/* Better section spacing on image areas */
.feature-section .scroller,
.feature-section.alt .scroller {
  max-width: 100%;
}

/* Tablet */
@media (max-width: 980px) {
  .scroller {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .scroller img {
    height: 280px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .scroller {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 24px 0;
  }

  .scroller img {
    height: auto;
    min-height: unset;
    max-height: none;
    object-fit: contain;
    padding: 0;
    border-radius: 22px;
  }

  .scroller img.logo-card-img {
    height: 240px;
    padding: 22px !important;
  }

  .admin-photo-frame {
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .admin-photo-frame img {
    height: auto;
    max-height: none;
  }
}
/* Responsive photo redesign */
.scroller {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 34px 0;
  align-items: stretch;
}

.scroller img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(215, 25, 32, 0.12);
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.10);
}

/* Logo/image card that should not be cropped */
.scroller img.logo-card-img {
  object-fit: contain !important;
  padding: 26px !important;
  background: #ffffff !important;
}

/* Admin message large image should fit fully */
.admin-photo-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  margin-bottom: 32px;
  border: 6px solid #fff1f2;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14);
  background: #fff7f7;
}

.admin-photo-frame img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 22px;
}

/* Better section spacing on image areas */
.feature-section .scroller,
.feature-section.alt .scroller {
  max-width: 100%;
}

/* Tablet */
@media (max-width: 980px) {
  .scroller {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .scroller img {
    height: 280px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .scroller {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 24px 0;
  }

  .scroller img {
    height: auto;
    min-height: unset;
    max-height: none;
    object-fit: contain;
    padding: 0;
    border-radius: 22px;
  }

  .scroller img.logo-card-img {
    height: 240px;
    padding: 22px !important;
  }

  .admin-photo-frame {
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .admin-photo-frame img {
    height: auto;
    max-height: none;
  }
}
.form-note {
  margin-top: 12px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}
/* Wall post photo gallery */
.wall-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.wall-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

/* Optional: slightly larger on desktop */
@media (min-width: 768px) {
  .wall-photo {
    height: 260px;
  }
}

/* Better post card spacing */
.request-card,
.wall-card,
.post-card {
  overflow: hidden;
}

/* Make long content cleaner */
.request-card p,
.wall-card p,
.post-card p {
  line-height: 1.6;
}
/* Wall post photo gallery */
.wall-photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 14px 0;
}

.wall-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  cursor: pointer;
}

@media (min-width: 768px) {
  .wall-photo {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .wall-photos {
    grid-template-columns: 1fr;
  }

  .wall-photo {
    height: 220px;
  }
}
/* FINAL FIX - Digital Wall photo sizing */
.request-card img,
.wall-photo-grid img,
.wall-photos img,
.wall-photo {
  width: 100% !important;
  height: 260px !important;
  max-height: 260px !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 14px !important;
  border: 1px solid #e5e7eb !important;
  background: #f3f4f6 !important;
  display: block !important;
}

.wall-photo-grid,
.wall-photos {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin: 16px 0 !important;
  width: 100% !important;
}

.request-card {
  overflow: hidden !important;
}

@media (max-width: 900px) {
  .wall-photo-grid,
  .wall-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .request-card img,
  .wall-photo-grid img,
  .wall-photos img,
  .wall-photo {
    height: 220px !important;
    max-height: 220px !important;
  }
}

@media (max-width: 640px) {
  .wall-photo-grid,
  .wall-photos {
    grid-template-columns: 1fr !important;
  }

  .request-card img,
  .wall-photo-grid img,
  .wall-photos img,
  .wall-photo {
    height: 220px !important;
    max-height: 220px !important;
  }
}
.yoga-wellbeing-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

.yoga-wellbeing-section .section-heading .btn {
  margin-top: 18px;
}

.yoga-card-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.image-event-card {
  border-radius: 28px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.image-event-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px 28px 0 0;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px 24px;
  background: #0b0b0b;
}

.phone-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .yoga-card-grid {
    gap: 24px;
  }

  .image-event-card {
    border-radius: 22px;
  }

  .image-event-card img {
    border-radius: 22px 22px 0 0;
  }

  .card-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px;
  }

  .card-actions .btn {
    width: 100%;
  }

  .phone-link {
    font-size: 18px;
  }
}
/* Yoga & Wellbeing - Breathe & Connect PDF Theme */
.yoga-wellbeing-section {
  padding: 76px 20px;
  background:
    radial-gradient(circle at top left, rgba(62, 164, 124, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 122, 72, 0.14), transparent 36%),
    #f3f3f1;
}

.yoga-heading {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.yoga-heading .eyebrow {
  color: #ff7446;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.yoga-heading h2 {
  margin: 6px 0 12px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
  color: #2f7b61;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.yoga-heading h2 span {
  display: inline-block;
  color: #ff7446;
  font-family: "Caveat", cursive;
  font-size: 0.9em;
  font-weight: 700;
}

.yoga-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #252525;
  font-size: 18px;
  line-height: 1.65;
}

.yoga-heading .yoga-main-btn {
  margin-top: 22px;
}

.yoga-card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.image-event-card {
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(47, 123, 97, 0.12);
  box-shadow: 0 18px 44px rgba(31, 46, 40, 0.13);
}

.image-event-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px 32px 0 0;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px 24px;
  background: #ffffff;
}

.yoga-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #41b98f;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 10px 24px rgba(65, 185, 143, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yoga-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(65, 185, 143, 0.36);
}

.yoga-phone {
  color: #2f7b61;
  text-decoration: none;
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.yoga-phone:hover {
  color: #ff7446;
  text-decoration: underline;
}

.yoga-notice {
  max-width: 880px;
  margin: 30px auto 0;
  padding: 18px 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(255, 116, 70, 0.28);
  color: #252525;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(31, 46, 40, 0.08);
}

@media (max-width: 768px) {
  .yoga-wellbeing-section {
    padding: 52px 14px;
  }

  .yoga-heading h2 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .yoga-card-grid {
    gap: 24px;
  }

  .image-event-card {
    border-radius: 24px;
  }

  .image-event-card img {
    border-radius: 24px 24px 0 0;
  }

  .card-actions {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 18px;
  }

  .card-actions .yoga-main-btn {
    width: 100%;
  }

  .yoga-phone {
    font-size: 18px;
  }

  .yoga-notice {
    border-radius: 22px;
  }
}
/* Yoga & Wellbeing cards fix */
.yoga-card,
.yoga-wellbeing-card,
.yoga-session-card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  margin-bottom: 34px;
}

/* Image should end cleanly */
.yoga-card img,
.yoga-wellbeing-card img,
.yoga-session-card img {
  width: 100%;
  display: block;
  border-radius: 22px 22px 0 0;
}

/* CTA area below image */
.yoga-card-actions,
.yoga-actions,
.card-actions {
  background: #ffffff;
  padding: 18px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* Red button */
.yoga-card-actions a:first-child,
.yoga-actions a:first-child,
.card-actions a:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e31b23;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(227, 27, 35, 0.25);
}

/* Phone number */
.yoga-card-actions a[href^="tel"],
.yoga-actions a[href^="tel"],
.card-actions a[href^="tel"] {
  color: #111111 !important;
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
}

/* Mobile */
@media (max-width: 700px) {
  .yoga-card-actions,
  .yoga-actions,
  .card-actions {
    padding: 16px;
  }

  .yoga-card-actions a:first-child,
  .yoga-actions a:first-child,
  .card-actions a:first-child {
    width: 100%;
  }
}
/* Yoga & Wellbeing image cards */

.yoga-wellbeing-section {
  padding-top: 70px;
}

.yoga-card-grid {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.image-event-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.image-event-card img {
  width: 100%;
  display: block;
  border-radius: 24px 24px 0 0;
}

.card-actions {
  background: #ffffff;
  padding: 20px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.card-actions .btn,
.card-actions .yoga-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d71920 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 22px rgba(215, 25, 32, 0.28);
}

.card-actions .phone-link,
.card-actions .yoga-phone {
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 18px;
}

.yoga-notice {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff5f5;
  color: #7a1115;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 700px) {
  .yoga-card-grid {
    gap: 24px;
  }

  .image-event-card {
    border-radius: 18px;
  }

  .image-event-card img {
    border-radius: 18px 18px 0 0;
  }

  .card-actions {
    padding: 16px;
  }

  .card-actions .btn,
  .card-actions .yoga-main-btn {
    width: 100%;
  }

  .card-actions .phone-link,
  .card-actions .yoga-phone {
    font-size: 17px;
  }
}
/* Fancy Yoga & Wellbeing card action bar */

.yoga-wellbeing-section {
  padding-top: 70px;
}

.yoga-card-grid {
  display: grid;
  gap: 32px;
  margin-top: 34px;
}

.image-event-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.image-event-card img {
  width: 100%;
  display: block;
  border-radius: 24px 24px 0 0;
}

.card-actions.fancy-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  border-top: 1px solid rgba(215, 25, 32, 0.08);
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff2b34 0%, #d71920 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(215, 25, 32, 0.22);
  white-space: nowrap;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff1f1;
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 800;
  font-size: 17px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(215, 25, 32, 0.14);
  white-space: nowrap;
}

.phone-icon {
  font-size: 16px;
  line-height: 1;
}

.card-meta {
  margin-left: auto;
  min-width: 220px;
  text-align: right;
}

.card-meta strong {
  display: block;
  color: #8f1117;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.card-meta small {
  display: block;
  color: #555555;
  font-size: 13px;
  line-height: 1.4;
}

.yoga-notice {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff5f5;
  color: #7a1115;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 900px) {
  .card-actions.fancy-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .card-meta {
    margin-left: 0;
    min-width: 100%;
    text-align: left;
    padding-top: 4px;
  }
}

@media (max-width: 640px) {
  .image-event-card {
    border-radius: 18px;
  }

  .image-event-card img {
    border-radius: 18px 18px 0 0;
  }

  .card-actions.fancy-bar {
    padding: 16px;
    gap: 12px;
  }

  .action-btn,
  .phone-pill {
    width: 100%;
    justify-content: center;
  }

  .card-meta {
    text-align: center;
  }
}

/* ================================
   Yoga & Wellbeing Section - Final
================================ */

.yoga-wellbeing-section {
  padding: 76px 20px;
  background:
    radial-gradient(circle at top left, rgba(62, 164, 124, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 122, 72, 0.14), transparent 36%),
    #f3f3f1;
}

.yoga-heading {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.yoga-heading .eyebrow {
  color: #ff7446;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.yoga-heading h2 {
  margin: 8px 0 14px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.95;
  color: #2f7b61;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.yoga-heading h2 span {
  color: #ff7446;
  font-family: "Caveat", cursive;
  font-size: 0.9em;
  font-weight: 700;
}

.yoga-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: #252525;
  font-size: 18px;
  line-height: 1.65;
}

.yoga-heading .yoga-main-btn {
  margin-top: 22px;
}

/* Main register button in heading */
.yoga-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #d71920;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 10px 24px rgba(215, 25, 32, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yoga-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.36);
}

/* Cards */
.yoga-card-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.image-event-card {
  overflow: hidden;
  border-radius: 32px;
  background: #ffffff;
  border: 1px solid rgba(47, 123, 97, 0.12);
  box-shadow: 0 18px 44px rgba(31, 46, 40, 0.13);
}

.image-event-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px 32px 0 0;
}

/* Fancy bottom action bar */
.card-actions.fancy-bar {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
  border-top: 1px solid rgba(215, 25, 32, 0.08);
}

/* Red CTA button */
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff2b34 0%, #d71920 100%);
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(215, 25, 32, 0.22);
  white-space: nowrap;
}

.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(215, 25, 32, 0.28);
}

/* Phone pill */
.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff1f1;
  color: #111111 !important;
  text-decoration: none !important;
  font-weight: 900;
  font-size: 17px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(215, 25, 32, 0.14);
  white-space: nowrap;
}

.phone-pill:hover {
  background: #ffe7e7;
}

.phone-icon {
  font-size: 16px;
  line-height: 1;
}

/* Right-side info */
.card-meta {
  text-align: right;
}

.card-meta strong {
  display: block;
  color: #8f1117;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 4px;
}

.card-meta small {
  display: block;
  color: #555555;
  font-size: 13px;
  line-height: 1.4;
}

/* Notice */
.yoga-notice {
  max-width: 880px;
  margin: 30px auto 0;
  padding: 16px 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(215, 25, 32, 0.22);
  color: #7a1115;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(31, 46, 40, 0.08);
}

/* Tablet */
@media (max-width: 900px) {
  .card-actions.fancy-bar {
    grid-template-columns: 1fr 1fr;
  }

  .card-meta {
    grid-column: 1 / -1;
    text-align: left;
    padding-top: 4px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .yoga-wellbeing-section {
    padding: 52px 14px;
  }

  .yoga-heading h2 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .yoga-card-grid {
    gap: 24px;
  }

  .image-event-card {
    border-radius: 24px;
  }

  .image-event-card img {
    border-radius: 24px 24px 0 0;
  }

  .card-actions.fancy-bar {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 12px;
  }

  .action-btn,
  .phone-pill {
    width: 100%;
  }

  .card-meta {
    text-align: center;
  }

  .yoga-notice {
    border-radius: 22px;
  }
}
html {
  scroll-behavior: smooth;
}

#yoga {
  scroll-margin-top: 95px;
}

.yoga-top-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.yoga-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 13px 22px;
  border: 2px solid #ff7446;
  border-radius: 999px;
  background: #ffffff;
  color: #ff7446 !important;
  text-decoration: none;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 116, 70, 0.16);
}

.yoga-share-btn:hover {
  background: #ff7446;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.fancy-bar {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .yoga-top-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .yoga-top-actions .yoga-main-btn,
  .yoga-top-actions .yoga-share-btn,
  .fancy-bar .action-btn,
  .fancy-bar .yoga-share-btn,
  .fancy-bar .phone-pill {
    width: 100%;
    text-align: center;
  }
}
/* ================================
   DIGITAL WALL - GRID CARD LAYOUT
   Add this at bottom of css/styles.css
================================ */

.digital-wall {
  padding: 70px 20px;
  background: #f7f8fb;
}

.wall-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: start;
}

/* Keep form neat on left */
.request-form {
  position: sticky;
  top: 90px;
  background: #ffffff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

/* Wall filter buttons */
.wall-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.wall-filters button {
  border: 1px solid rgba(215, 25, 32, 0.18);
  background: #ffffff;
  color: #222;
  padding: 9px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.wall-filters button.active,
.wall-filters button:hover {
  background: #d71920;
  color: #ffffff;
}

/* Main post grid */
.request-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  align-items: start;
}

/* Each post card */
.request-card,
.wall-post,
.request-item,
.request-list article,
.request-list > div {
  background: #ffffff;
  border-radius: 22px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Post top info */
.request-card .post-meta,
.wall-post .post-meta,
.request-item .post-meta,
.request-list article .post-meta,
.request-list > div .post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #5b6475;
}

/* Category badge */
.request-card .category,
.wall-post .category,
.request-item .category,
.request-list article .category,
.request-list > div .category,
.request-card strong:first-child,
.wall-post strong:first-child,
.request-item strong:first-child {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ffe7ea;
  color: #d71920;
  font-size: 12px;
  font-weight: 900;
}

/* Post text */
.request-card p,
.wall-post p,
.request-item p,
.request-list article p,
.request-list > div p {
  margin: 0;
  color: #243047;
  font-size: 15px;
  line-height: 1.55;
  word-break: break-word;
}

/* Images inside wall posts */
.request-card img,
.wall-post img,
.request-item img,
.request-list article img,
.request-list > div img {
  width: 100%;
  max-width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-top: 6px;
}

/* If one post has multiple images */
.request-card .photos,
.wall-post .photos,
.request-item .photos,
.post-photos,
.wall-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.request-card .photos img,
.wall-post .photos img,
.request-item .photos img,
.post-photos img,
.wall-photos img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
}

/* Contact line */
.request-card .contact,
.wall-post .contact,
.request-item .contact,
.request-list article .contact,
.request-list > div .contact {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  margin-top: auto;
}

/* Mobile layout */
@media (max-width: 900px) {
  .wall-layout {
    grid-template-columns: 1fr;
  }

  .request-form {
    position: static;
  }

  .request-list {
    grid-template-columns: 1fr;
  }
}

/* Small mobile */
@media (max-width: 520px) {
  .digital-wall {
    padding: 48px 14px;
  }

  .request-form {
    padding: 18px;
    border-radius: 18px;
  }

  .request-card,
  .wall-post,
  .request-item,
  .request-list article,
  .request-list > div {
    padding: 14px;
    border-radius: 18px;
  }

  .request-card img,
  .wall-post img,
  .request-item img,
  .request-list article img,
  .request-list > div img,
  .post-photos img,
  .wall-photos img {
    height: 210px;
    border-radius: 14px;
  }

  .wall-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .wall-filters button {
    white-space: nowrap;
  }
}
/* =====================================================
   DIGITAL WALL PHOTOS - ID CARD SQUARE STYLE
   Put this at very bottom of css/styles.css
===================================================== */

/* Make wall ad images square like ID/photo cards */
.request-list img {
  width: 150px !important;
  height: 150px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 10px auto !important;
  border: 2px solid #222 !important;
  border-radius: 6px !important;
  background: #f5f5f5 !important;
  padding: 4px !important;
}

/* If post has multiple photos, keep them as small ID cards */
.post-photos,
.wall-photos,
.photos {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: center !important;
}

.post-photos img,
.wall-photos img,
.photos img {
  width: 140px !important;
  height: 140px !important;
  object-fit: cover !important;
  object-position: center !important;
  border: 2px solid #222 !important;
  border-radius: 6px !important;
  padding: 4px !important;
  background: #f5f5f5 !important;
}

/* Mobile: slightly smaller square photos */
@media (max-width: 700px) {
  .request-list img,
  .post-photos img,
  .wall-photos img,
  .photos img {
    width: 120px !important;
    height: 120px !important;
  }
}
/* =====================================================
   FINAL OVERRIDE - COMMUNITY NEWSPAPER CLASSIFIEDS
   Small newspaper ad style + square ID photos
===================================================== */

.digital-wall {
  padding: 70px 20px !important;
  background:
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.88)),
    repeating-linear-gradient(
      0deg,
      #f4f1e8 0px,
      #f4f1e8 24px,
      #eee9dc 25px
    ) !important;
}

/* Newspaper heading */
.digital-wall .section-heading {
  max-width: 1100px !important;
  margin: 0 auto 28px !important;
  text-align: center !important;
  border-top: 4px double #111 !important;
  border-bottom: 4px double #111 !important;
  padding: 18px 12px !important;
  background: rgba(255,255,255,0.75) !important;
}

.digital-wall .section-heading h2 {
  font-family: Georgia, "Times New Roman", serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #111 !important;
}

/* Main layout */
.wall-layout {
  max-width: 1380px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 300px 1fr !important;
  gap: 28px !important;
  align-items: start !important;
}

/* Submit form */
.request-form {
  position: sticky !important;
  top: 90px !important;
  background: #fffdf6 !important;
  border: 2px solid #222 !important;
  border-radius: 0 !important;
  padding: 18px !important;
  box-shadow: 7px 7px 0 rgba(0,0,0,0.12) !important;
}

/* Filter buttons */
.wall-filters {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 18px !important;
  padding-bottom: 12px !important;
  border-bottom: 3px double #111 !important;
}

.wall-filters button {
  border: 1px solid #111 !important;
  background: #fffdf6 !important;
  color: #111 !important;
  padding: 7px 12px !important;
  border-radius: 0 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  font-size: 12px !important;
}

.wall-filters button.active,
.wall-filters button:hover {
  background: #111 !important;
  color: #fff !important;
}

/* Classified newspaper columns */
.request-list {
  column-count: 3 !important;
  column-gap: 18px !important;
  display: block !important;
}

/* Each classified ad */
.request-card,
.request-list > * {
  display: inline-block !important;
  width: 100% !important;
  break-inside: avoid !important;
  margin: 0 0 18px !important;
  padding: 12px !important;
  background: #fffdf6 !important;
  border: 1.5px solid #222 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

/* Small red newspaper label */
.request-card::before,
.request-list > *::before {
  content: "COMMUNITY NOTICE";
  display: block;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #222;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #d71920;
}

/* Meta line */
.request-card .meta,
.request-list .meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-bottom: 8px !important;
  padding-bottom: 6px !important;
  border-bottom: 1px dotted #999 !important;
  color: #555 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 11px !important;
}

/* Category badge */
.badge,
.request-list strong:first-child,
.request-list .category {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 6px !important;
  padding: 5px 8px !important;
  background: #111 !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

/* Text */
.request-card h4,
.request-list h4 {
  margin: 6px 0 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 17px !important;
  color: #111 !important;
}

.request-card p,
.request-list p {
  margin: 8px 0 !important;
  color: #111 !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

/* ID card square photos */
.request-card img,
.request-list img,
.wall-photo,
.wall-photos img {
  width: 145px !important;
  height: 145px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 10px auto !important;
  border: 2px solid #222 !important;
  border-radius: 4px !important;
  background: #f5f5f5 !important;
  padding: 4px !important;
}

/* Multiple photos */
.wall-photos {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: center !important;
  margin: 10px 0 !important;
}

/* Mobile */
@media (max-width: 1100px) {
  .wall-layout {
    grid-template-columns: 1fr !important;
  }

  .request-form {
    position: static !important;
  }

  .request-list {
    column-count: 2 !important;
  }
}

@media (max-width: 700px) {
  .digital-wall {
    padding: 44px 12px !important;
  }

  .request-list {
    column-count: 1 !important;
  }

  .request-card,
  .request-list > * {
    padding: 12px !important;
    margin-bottom: 14px !important;
  }

  .request-card img,
  .request-list img,
  .wall-photo,
  .wall-photos img {
    width: 120px !important;
    height: 120px !important;
  }

  .wall-filters {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
  }

  .wall-filters button {
    white-space: nowrap !important;
  }
}
/* =====================================================
   FINAL CLEANUP - COMMUNITY CLASSIFIEDS STYLE
   Better font + remove repeated COMMUNITY NOTICE
===================================================== */

/* Remove COMMUNITY NOTICE label from every post */
.request-card::before,
.request-list > *::before {
  content: none !important;
  display: none !important;
}

/* Use cleaner readable font for classifieds */
.digital-wall,
.digital-wall * {
  font-family: "Nunito", Arial, Helvetica, sans-serif !important;
}

/* Softer page background */
.digital-wall {
  background: #f7f5ef !important;
}

/* Keep heading like community newspaper but cleaner */
.digital-wall .section-heading {
  border-top: 3px solid #111 !important;
  border-bottom: 3px solid #111 !important;
  background: #fffdf6 !important;
}

.digital-wall .section-heading h2 {
  font-family: "Nunito", Arial, Helvetica, sans-serif !important;
  text-transform: none !important;
  letter-spacing: -0.5px !important;
  font-weight: 950 !important;
}

/* Post cards - cleaner classified ad feel */
.request-card,
.request-list > * {
  background: #fffdf8 !important;
  border: 1px solid #d8d1c4 !important;
  border-radius: 10px !important;
  padding: 16px !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06) !important;
}

/* Better meta line */
.request-card .meta,
.request-list .meta {
  border-bottom: 1px solid #e2ddd2 !important;
  padding-bottom: 8px !important;
  margin-bottom: 10px !important;
  font-size: 12px !important;
  color: #5f6673 !important;
  font-family: "Nunito", Arial, Helvetica, sans-serif !important;
}

/* Category badge - cleaner */
.badge,
.request-list strong:first-child,
.request-list .category {
  background: #d71920 !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 5px 10px !important;
  font-family: "Nunito", Arial, Helvetica, sans-serif !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

/* Main text - much nicer readable font */
.request-card p,
.request-list p {
  font-family: "Nunito", Arial, Helvetica, sans-serif !important;
  color: #1f2937 !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

/* By line / small text */
.request-card small,
.request-list small {
  font-family: "Nunito", Arial, Helvetica, sans-serif !important;
  color: #667085 !important;
}

/* Contact line */
.request-card p:last-child,
.request-list p:last-child {
  border-top: 1px dashed #d8d1c4 !important;
  padding-top: 8px !important;
  margin-top: 12px !important;
  font-weight: 900 !important;
  color: #111827 !important;
}

/* ID-card photos, but cleaner */
.request-card img,
.request-list img,
.wall-photo,
.wall-photos img {
  width: 150px !important;
  height: 150px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  margin: 12px auto !important;
  border: 1px solid #d8d1c4 !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  padding: 4px !important;
}

/* Form also cleaner */
.request-form {
  background: #fffdf8 !important;
  border: 1px solid #d8d1c4 !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08) !important;
}

.request-form label {
  font-family: "Nunito", Arial, Helvetica, sans-serif !important;
  color: #111827 !important;
  font-weight: 900 !important;
}

/* Filter buttons cleaner */
.wall-filters {
  border-bottom: 2px solid #111 !important;
}

.wall-filters button {
  font-family: "Nunito", Arial, Helvetica, sans-serif !important;
  border-radius: 999px !important;
  border: 1px solid #d8d1c4 !important;
  background: #fffdf8 !important;
  color: #111827 !important;
}

.wall-filters button.active,
.wall-filters button:hover {
  background: #d71920 !important;
  border-color: #d71920 !important;
  color: #ffffff !important;
}
/* Desktop cleanup for People’s Corner */
@media (min-width: 900px) {
  .digital-wall {
    padding: 80px 48px;
  }

  .digital-wall .section-heading {
    max-width: 900px;
    margin: 0 auto 36px;
    text-align: center;
  }

  .digital-wall .section-heading h2 {
    font-size: 44px;
    line-height: 1.1;
  }

  .digital-wall .section-heading p {
    font-size: 17px;
    line-height: 1.7;
  }

  .wall-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
  }

  .request-form {
    position: sticky;
    top: 92px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.10);
  }

  .wall-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
  }

  .request-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
    align-items: start;
  }

  .request-card,
  .wall-post,
  .request-item {
    width: 100%;
    max-width: none;
  }
}

/* Tablet */
@media (min-width: 700px) and (max-width: 899px) {
  .wall-layout {
    max-width: 760px;
    margin: 0 auto;
  }

  .request-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Mobile safety */
@media (max-width: 699px) {
  .digital-wall {
    padding: 48px 18px;
  }

  .wall-layout {
    display: block;
  }

  .request-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
/* Fix sticky menu covering section headings */
html {
  scroll-padding-top: 95px;
}

#badminton,
#yoga,
#updates,
#wall,
#guides,
#signup {
  scroll-margin-top: 95px;
}

/* People’s Corner desktop layout cleanup */
@media (min-width: 900px) {
  .digital-wall {
    padding-top: 110px !important;
    padding-left: 48px;
    padding-right: 48px;
  }

  .digital-wall .section-heading {
    max-width: 980px;
    margin: 0 auto 42px !important;
    text-align: center;
    padding-top: 20px;
  }

  .digital-wall .section-heading .eyebrow {
    margin-bottom: 16px;
  }

  .digital-wall .section-heading h2 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 18px;
  }

  .digital-wall .section-heading p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }

  .wall-layout {
    max-width: 1180px;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }

  .request-form {
    position: sticky;
    top: 105px;
    border-radius: 24px;
  }

  .wall-filters {
    margin-bottom: 18px;
  }

  .request-list {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 18px;
    align-items: start;
  }
}

/* Keep mobile simple */
@media (max-width: 899px) {
  html {
    scroll-padding-top: 75px;
  }

  #badminton,
  #yoga,
  #updates,
  #wall,
  #guides,
  #signup {
    scroll-margin-top: 75px;
  }

  .digital-wall {
    padding-top: 70px !important;
  }

  .wall-layout {
    display: block !important;
  }

  .request-list {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* =====================================================
   NBSS ENERGETIC GAME DAY PANEL + SAMS THANKS
===================================================== */

.nbss-energy-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: stretch;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.28), transparent 32%),
    linear-gradient(135deg, #111827 0%, #1f2937 52%, #7f1d1d 100%);
  border-radius: 32px;
  padding: 34px;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.22);
  overflow: hidden;
}

.nbss-energy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nbss-energy-copy .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  width: fit-content;
}

.nbss-energy-copy h3 {
  margin: 18px 0 14px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -1px;
  color: #ffffff;
}

.nbss-energy-copy p {
  max-width: 620px;
  margin: 0;
  color: #f3f4f6;
  font-size: 18px;
  line-height: 1.7;
}

.nbss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.nbss-actions .btn.secondary {
  background: #ffffff;
  color: #111827;
}

.nbss-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.nbss-stat-grid div {
  min-height: 140px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.nbss-stat-grid strong {
  display: block;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
  color: #ffffff;
}

.nbss-stat-grid span {
  display: block;
  margin-top: 8px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 800;
}

.sams-thanks-card {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.sams-thanks-card img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  padding: 6px;
  flex: 0 0 auto;
}

.sams-thanks-card strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.25;
}

.sams-thanks-card span {
  display: block;
  margin-top: 4px;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .nbss-energy-panel {
    grid-template-columns: 1fr;
    padding: 26px;
    border-radius: 26px;
  }

  .nbss-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nbss-actions .btn {
    width: 100%;
  }

  .sams-thanks-card {
    width: 100%;
    align-items: flex-start;
  }

  .sams-thanks-card img {
    width: 52px;
    height: 52px;
  }
}



/* =====================================================
   FINAL NBSS SPORTY TRENDY SECTION
   Real photos + active game day panel + Sam's/Dinesh thanks
===================================================== */

/* Remove static logo-card feel and make top NBSS photos energetic */
#badminton .scroller {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 26px !important;
  align-items: stretch !important;
}

#badminton .scroller img {
  height: 320px !important;
  border-radius: 28px !important;
  object-fit: cover !important;
  border: 0 !important;
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.16) !important;
}

/* Hide any old logo-card image if it remains in browser cache */
#badminton .scroller .logo-card-img {
  display: none !important;
}

/* Game day panel */
.nbss-energy-panel {
  position: relative !important;
  margin-top: 38px !important;
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 28px !important;
  align-items: stretch !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(215, 25, 32, 0.45), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(0, 59, 113, 0.38), transparent 35%),
    linear-gradient(135deg, #0f172a 0%, #111827 48%, #6b1118 100%) !important;
  border-radius: 36px !important;
  padding: 38px !important;
  color: #ffffff !important;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.28) !important;
  overflow: hidden !important;
}

.nbss-energy-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 45%, transparent 70%);
  pointer-events: none;
}

.nbss-energy-copy {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.nbss-energy-copy .eyebrow {
  background: rgba(255, 255, 255, 0.16) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  width: fit-content !important;
}

.nbss-energy-copy h3 {
  margin: 18px 0 16px !important;
  font-size: clamp(42px, 5.6vw, 76px) !important;
  line-height: 0.92 !important;
  font-weight: 950 !important;
  letter-spacing: -1.4px !important;
  color: #ffffff !important;
}

.nbss-energy-copy p {
  max-width: 680px !important;
  margin: 0 !important;
  color: #f3f4f6 !important;
  font-size: 19px !important;
  line-height: 1.7 !important;
  font-weight: 800 !important;
}

.nbss-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 28px !important;
}

.nbss-actions .btn.primary {
  background: #D71920 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(215, 25, 32, 0.35) !important;
}

.nbss-stat-grid {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 15px !important;
}

.nbss-stat-grid div {
  min-height: 145px !important;
  background: rgba(255, 255, 255, 0.11) !important;
  border: 1px solid rgba(255, 255, 255, 0.20) !important;
  border-radius: 26px !important;
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10) !important;
}

.nbss-stat-grid strong {
  display: block !important;
  font-size: 30px !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
  color: #ffffff !important;
}

.nbss-stat-grid span {
  display: block !important;
  margin-top: 9px !important;
  color: #e5e7eb !important;
  font-size: 15px !important;
  font-weight: 850 !important;
}

/* Recognition cards */
.nbss-recognition-grid {
  margin-top: 26px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
  gap: 14px !important;
}

.nbss-thanks-card {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 15px 16px !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.13) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  backdrop-filter: blur(10px) !important;
}

.thanks-logo-pair {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 0 0 auto !important;
}

.thanks-logo-pair img,
.dinesh-photo {
  width: 58px !important;
  height: 58px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  padding: 5px !important;
  flex: 0 0 auto !important;
}

.thanks-logo-pair img {
  object-fit: contain !important;
}

.dinesh-photo {
  padding: 0 !important;
  border: 3px solid #ffffff !important;
}

.nbss-thanks-card strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 950 !important;
  line-height: 1.25 !important;
}

.nbss-thanks-card span {
  display: block !important;
  margin-top: 5px !important;
  color: #e5e7eb !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.42 !important;
}

@media (max-width: 1000px) {
  .nbss-energy-panel {
    grid-template-columns: 1fr !important;
    padding: 30px !important;
    border-radius: 30px !important;
  }

  .nbss-recognition-grid {
    grid-template-columns: 1fr !important;
  }

  #badminton .scroller {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .nbss-energy-panel {
    padding: 24px !important;
    border-radius: 26px !important;
  }

  .nbss-stat-grid {
    grid-template-columns: 1fr !important;
  }

  .nbss-actions .btn {
    width: 100% !important;
  }

  .nbss-thanks-card {
    align-items: flex-start !important;
  }

  .thanks-logo-pair {
    flex-direction: column !important;
  }

  .thanks-logo-pair img,
  .dinesh-photo {
    width: 52px !important;
    height: 52px !important;
  }
}



/* =====================================================
   V51000 PROFESSIONAL FIXES
   - Cleaner header text
   - NBSS sporty section
   - People’s Corner layout cleanup
===================================================== */

/* Header brand polish */
.brand small {
  color: #667085 !important;
  font-weight: 900 !important;
  letter-spacing: 0.01em !important;
}

/* Quick nav: keep only core action buttons neat */
.quick-section-nav {
  top: 0 !important;
  z-index: 999 !important;
  padding: 12px 48px !important;
  justify-content: flex-start !important;
}

.quick-section-nav a {
  padding: 10px 20px !important;
  font-size: 14px !important;
}

/* NBSS top gallery: two real photos only */
#badminton .scroller {
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  max-width: 1260px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#badminton .scroller img {
  height: 300px !important;
  object-fit: cover !important;
  border-radius: 28px !important;
}

/* New NBSS Sport Hub */
.nbss-sport-hub {
  max-width: 1260px !important;
  margin: 38px auto 0 !important;
  padding: 34px !important;
  border-radius: 34px !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 14% 12%, rgba(215, 25, 32, 0.48), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(0, 59, 113, 0.38), transparent 35%),
    linear-gradient(135deg, #111827 0%, #172033 48%, #7f1d1d 100%) !important;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.28) !important;
  overflow: hidden !important;
}

.nbss-hub-main {
  display: grid !important;
  grid-template-columns: 1.05fr 0.95fr !important;
  gap: 30px !important;
  align-items: center !important;
}

.nbss-hub-copy .eyebrow {
  background: rgba(255,255,255,0.16) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.24) !important;
  width: fit-content !important;
}

.nbss-hub-copy h3 {
  margin: 18px 0 16px !important;
  color: #ffffff !important;
  font-size: clamp(42px, 5.5vw, 76px) !important;
  line-height: 0.92 !important;
  font-weight: 950 !important;
  letter-spacing: -1.4px !important;
}

.nbss-hub-copy p {
  max-width: 680px !important;
  margin: 0 0 28px !important;
  color: #f3f4f6 !important;
  font-size: 19px !important;
  line-height: 1.7 !important;
  font-weight: 800 !important;
}

.nbss-hub-copy .btn.primary {
  background: #D71920 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 36px rgba(215,25,32,0.34) !important;
}

.nbss-game-facts {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
  gap: 14px !important;
}

.nbss-game-facts div {
  min-height: 120px !important;
  padding: 22px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10) !important;
}

.nbss-game-facts strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 28px !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
}

.nbss-game-facts span {
  display: block !important;
  margin-top: 8px !important;
  color: #e5e7eb !important;
  font-size: 15px !important;
  font-weight: 850 !important;
}

.nbss-recognition-strip {
  margin-top: 24px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  gap: 16px !important;
}

.nbss-recognition-card {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 18px !important;
  border-radius: 24px !important;
  background: rgba(255,255,255,0.14) !important;
  border: 1px solid rgba(255,255,255,0.24) !important;
  backdrop-filter: blur(10px) !important;
}

.recognition-logos {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 0 0 auto !important;
}

.recognition-logos img,
.nbss-recognition-card .dinesh-photo {
  width: 64px !important;
  height: 64px !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  padding: 6px !important;
  object-fit: contain !important;
  flex: 0 0 auto !important;
}

.nbss-recognition-card .dinesh-photo {
  object-fit: cover !important;
  padding: 0 !important;
  border: 3px solid #ffffff !important;
}

.nbss-recognition-card strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 950 !important;
  line-height: 1.25 !important;
}

.nbss-recognition-card span {
  display: block !important;
  margin-top: 5px !important;
  color: #e5e7eb !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.42 !important;
}

/* People’s Corner: remove sticky side-form overlap, make it cleaner */
.digital-wall {
  padding: 90px 48px 100px !important;
  background: #f7f4ec !important;
}

.digital-wall .section-heading {
  max-width: 980px !important;
  margin: 0 auto 42px !important;
  padding: 34px 28px !important;
  text-align: center !important;
  background: #fffdf8 !important;
  border-top: 3px solid #111827 !important;
  border-bottom: 3px solid #111827 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.wall-layout {
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: block !important;
}

.request-form {
  position: static !important;
  max-width: 760px !important;
  margin: 0 auto 36px !important;
  padding: 26px !important;
  border-radius: 24px !important;
}

@media (min-width: 900px) {
  .request-form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    align-items: start !important;
  }

  .request-form label:nth-child(3),
  .request-form label:nth-child(5),
  .request-form .form-note,
  .request-form button,
  .request-form #requestResult {
    grid-column: 1 / -1 !important;
  }
}

.wall-filters {
  max-width: 1180px !important;
  margin: 0 auto 24px !important;
  padding-bottom: 18px !important;
  border-bottom: 2px solid #111827 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px !important;
}

.request-list {
  max-width: 1180px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  gap: 20px !important;
  align-items: start !important;
}

.request-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 18px !important;
  border-radius: 20px !important;
}

.request-card img,
.request-list img,
.wall-photo,
.wall-photos img {
  width: 160px !important;
  height: 160px !important;
  max-width: 160px !important;
  max-height: 160px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  margin: 14px auto !important;
}

@media (max-width: 1100px) {
  .nbss-hub-main,
  .nbss-recognition-strip {
    grid-template-columns: 1fr !important;
  }

  .request-list {
    grid-template-columns: repeat(2, minmax(240px, 1fr)) !important;
  }
}

@media (max-width: 700px) {
  .quick-section-nav {
    padding: 10px 14px !important;
  }

  #badminton .scroller {
    grid-template-columns: 1fr !important;
  }

  .nbss-sport-hub {
    padding: 24px !important;
    border-radius: 26px !important;
  }

  .nbss-game-facts {
    grid-template-columns: 1fr !important;
  }

  .nbss-recognition-card {
    align-items: flex-start !important;
  }

  .request-list {
    grid-template-columns: 1fr !important;
  }

  .request-form {
    padding: 18px !important;
  }
}


/* =====================================================
   V52000 FIXES - NBSS, CONTACTS CTA, ADMIN CTA
===================================================== */

/* NBSS logo belongs in brand mark, Sam's card must show Sam's logo only */
.nbss-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.nbss-brand-mark img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 5px;
}

.nbss-recognition-card.sams-card .sams-logo {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  object-fit: contain !important;
  border-radius: 16px;
  background: #ffffff;
  padding: 7px;
}

/* Useful Community Contacts - CTA only on main page */
.useful-contacts-cta-only {
  padding: 76px 48px 84px !important;
  background:
    radial-gradient(circle at top left, rgba(215, 25, 32, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.useful-contacts-cta-card {
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 30px;
  padding: 38px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.10);
}

.useful-contacts-cta-card h2 {
  margin: 16px auto;
  max-width: 780px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  color: #111827;
  font-weight: 950;
}

.useful-contacts-cta-card p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #667085;
  font-size: 18px;
  line-height: 1.7;
}

.contacts-preview-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px auto;
  max-width: 880px;
}

.contacts-preview-list span {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 999px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #991b1b;
  font-size: 13px;
  font-weight: 900;
}

.useful-contacts-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.useful-contacts-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  font-family: inherit;
  cursor: default;
}

.contacts-action-primary {
  background: #D71920;
  color: #ffffff;
  border: 1px solid #D71920;
  box-shadow: 0 10px 24px rgba(215, 25, 32, 0.20);
}

.contacts-action-secondary {
  background: #ffffff;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.contacts-coming-soon {
  max-width: 760px;
  margin: 16px auto 0 !important;
  color: #7c2d12 !important;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 13px 16px;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1.5 !important;
  text-align: center;
}

/* Admin message on main page: CTA only */
.admin-message-cta-only {
  padding: 72px 48px !important;
  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff7f7 100%) !important;
}

.admin-message-cta-only .admin-message-preview-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(215, 25, 32, 0.14);
  border-radius: 28px;
  padding: 36px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.10);
}

.admin-message-cta-only h2 {
  margin: 16px 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 950;
  color: #111827;
}

.admin-message-cta-only p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 24px;
  color: #667085;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .useful-contacts-cta-only,
  .admin-message-cta-only {
    padding: 54px 16px !important;
  }

  .useful-contacts-cta-card,
  .admin-message-cta-only .admin-message-preview-card {
    padding: 26px 18px;
    border-radius: 22px;
  }

  .useful-contacts-actions button {
    width: 100%;
  }

  .nbss-brand-mark {
    width: 100%;
    justify-content: center;
  }
}
/* People’s Corner public admin tag badges */
.admin-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.admin-tag.verified {
  background: #dcfce7;
  color: #166534;
}

.admin-tag.shared {
  background: #dbeafe;
  color: #1d4ed8;
}

.admin-tag.needs-update {
  background: #ffedd5;
  color: #c2410c;
}

.admin-tag.expired {
  background: #e5e7eb;
  color: #374151;
}
