/* I-70 Bass Anglers — Club Tournaments Pages
   Hub page + Results overview + Individual results + Standings
   ============================================= */

/* =============================================
   HUB PAGE
   ============================================= */

/* Full-bleed layout: no top padding, page background, hide global footer */
body.page-club-tournaments .main-content { padding-top: 0; background: #dce8f4; }
body.page-club-tournaments .site-footer { display: none; }

/* ---- Hero ---- */
.ct-hero {
  position: relative;
  color: var(--white);
}

/* Background photo + fade on a pseudo-element so the mask never clips the mobile nav */
.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(35, 48, 80, 0.65), rgba(35, 48, 80, 0.65)),
    var(--header-photo) var(--header-pos-x) var(--header-pos-y) / cover no-repeat;
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  z-index: 0;
}

.ct-hero-band { position: relative; z-index: 1; }

/* Inner band: constrains hero content to page width, centers on wide screens */
.ct-hero-band {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 5rem;
}

/* ---- Hero nav row ---- */
.ct-hero-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0.75rem 0 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 2rem;
  position: relative; /* anchor for mobile nav dropdown */
}

.ct-hero-logo { flex-shrink: 0; }

.ct-hero-logo .logo-image { height: 90px; }

/* Override alignment for hero context — center instead of bottom-align */
.ct-hero-nav .main-nav {
  align-self: center;
  padding-bottom: 0;
}

.ct-hero-inner { max-width: 640px; }

.ct-hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.7;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.ct-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.75rem;
  line-height: 1.1;
}

.ct-hero-sub {
  font-size: 1.2rem;
  opacity: 0.88;
  line-height: 1.65;
  margin: 0;
  color: var(--white);
}

/* ---- Actions bar (Results & Standings) ---- */
.ct-actions-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1.25rem 0 0;
}

.ct-action-cell {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--secondary-color);
  border-radius: 0 0.4rem 0.4rem 0;
  text-decoration: none;
  display: block;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ct-action-cell:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--text-dark);
}

.ct-action-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 0.3rem;
}

.ct-action-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.15rem;
}

.ct-action-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- Next tournament bar ---- */
.ct-next-bar { padding: 0.75rem 0 0; }

.ct-next-cell {
  background: var(--white);
  padding: 1.1rem 1.5rem;
  border-left: 3px solid var(--primary-color);
  border-radius: 0 0.4rem 0.4rem 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ct-next-cell:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: var(--text-dark);
}

.ct-event-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 0.3rem;
}

.ct-event-date {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.15rem;
}

.ct-event-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.ct-event-arrow {
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Bridge dividers ---- */
.ct-bridge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0 0.75rem;
}

.ct-bridge::before,
.ct-bridge::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(30, 58, 138, 0.18);
}

.ct-bridge-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}

/* ---- Schedule list ---- */
.ct-schedule { padding-bottom: 0.25rem; }

.ct-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
}

.ct-schedule-row {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  color: var(--text-dark);
}

a.ct-schedule-row--done { cursor: pointer; text-decoration: none; }
.ct-schedule-row--done:hover { background: var(--background-light); }

.ct-schedule-row--rescheduled { opacity: 0.5; }

.ct-sched-date {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.ct-sched-lake {
  font-size: 0.95rem;
  color: var(--text-light);
}

.ct-sched-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  white-space: nowrap;
  text-decoration: none;
}

.ct-sched-link:hover { text-decoration: underline; }

.ct-sched-status {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

.ct-sched-upcoming { display: block; min-width: 4rem; }

/* ---- Info grid ---- */
.ct-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.25rem;
}

.ct-info-grid--3col { grid-template-columns: repeat(3, 1fr); }

.ct-info-item {
  background: var(--white);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ct-info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-light);
}

.ct-info-value {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ---- About section ---- */
.ct-about {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 0.5rem 0 1rem;
}

.ct-about-body {
  flex: 1;
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.75;
}

.ct-about-body p { margin-bottom: 1rem; }
.ct-about-body p:last-child { margin-bottom: 0; }

.ct-about-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 200px;
  border-left: 1px solid var(--border-color);
  padding-left: 2rem;
  flex-shrink: 0;
}

.ct-about-block { display: flex; flex-direction: column; }

.ct-awards-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.ct-awards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ct-awards-list li {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

/* ---- Weather policy strip ---- */
.ct-policy-strip {
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 0.4rem;
  padding: 1rem 1.5rem;
  margin: 0.5rem 0 1rem;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.ct-policy-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary-color);
  white-space: nowrap;
  flex-shrink: 0;
}

.ct-policy-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---- Contact strip ---- */
.ct-contact-strip {
  border-top: 1px solid var(--border-color);
  margin-top: 1.5rem;
  padding: 1.5rem 0 2.5rem;
}

.ct-contact-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.ct-contact-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-light);
}

.ct-contact-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.ct-contact-sep { color: var(--text-light); }

.ct-contact-link {
  font-size: 1.05rem;
  color: var(--primary-color);
  font-weight: 500;
}

/* ---- Hub responsive ---- */
@media (max-width: 768px) {
  .ct-hero-band { padding: 0 1.25rem 1.75rem; }
  .ct-hero-nav { padding: 0.75rem 0 1.25rem; margin-bottom: 1.5rem; }
  .ct-hero-logo .logo-image { height: 65px; }
  .ct-hero-title { font-size: 2rem; }
  .ct-actions-bar { grid-template-columns: 1fr; }
  .ct-next-cell { flex-wrap: wrap; gap: 0.5rem; }
  .ct-event-arrow { margin-left: 0; }
  .ct-info-grid { grid-template-columns: 1fr 1fr; }
  .ct-info-grid--3col { grid-template-columns: 1fr 1fr; }
  .ct-about { flex-direction: column; gap: 1.5rem; }
  .ct-about-meta {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    min-width: unset;
  }
  .ct-contact-inner { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
  .ct-contact-sep { display: none; }
  .ct-contact-role { font-size: 0.85rem; }
  .ct-contact-name { font-size: 1.15rem; }
  .ct-contact-link { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .ct-info-grid { grid-template-columns: 1fr; }
  .ct-schedule-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; }
  .ct-sched-date { grid-column: 1; grid-row: 1; }
  .ct-sched-lake { grid-column: 1; grid-row: 2; font-size: 0.88rem; }
  .ct-sched-link, .ct-sched-upcoming, .ct-sched-status { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}

/* =============================================
   SUBPAGES — Results Overview, Individual Results, Standings
   ============================================= */

body.page-ct-results .main-content,
body.page-ct-results-detail .main-content,
body.page-ct-standings .main-content { padding-top: 0; background: #dce8f4; }

body.page-ct-results .site-footer,
body.page-ct-results-detail .site-footer,
body.page-ct-standings .site-footer { display: none; }

/* ---- Hero breadcrumb ---- */
.ct-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 0.85rem;
  transition: color 0.15s;
}

.ct-hero-breadcrumb:hover { color: rgba(255, 255, 255, 0.9); text-decoration: none; }

/* Slightly shorter hero for subpages */
.ct-hero--sub .ct-hero-band { padding-bottom: 3rem; }
.ct-hero--sub .ct-hero-title { font-size: 2rem; }

/* ---- Empty state ---- */
.ct-empty-state {
  padding: 2rem 0 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ---- Results overview: tournament cards ---- */
.ct-results-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.25rem 0 2rem;
}

.ct-result-card {
  background: var(--white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ct-result-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.5rem;
  background: var(--background-light);
  border-bottom: 1px solid var(--border-color);
}

.ct-result-card-date {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ct-result-card-lake {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-left: 0.4rem;
}

.ct-result-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.ct-result-card-link:hover { text-decoration: underline; }

.ct-result-card-body {
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

/* ---- Podium (top 3 on results overview) ---- */
.ct-podium { display: flex; flex-direction: column; gap: 0.65rem; }

.ct-podium-item { display: flex; align-items: center; gap: 0.75rem; }

.ct-podium-rank {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0;
}

.ct-podium-rank--1 { background: var(--accent-color); color: var(--white); }
.ct-podium-rank--2 { background: var(--primary-color); color: var(--white); }
.ct-podium-rank--3 { background: var(--secondary-color); color: var(--white); }

.ct-podium-name { font-size: 1rem; font-weight: 600; color: var(--text-dark); flex: 1; min-width: 0; }

.ct-podium-detail { font-size: 0.88rem; color: var(--text-light); white-space: nowrap; flex-shrink: 0; }

/* ---- Big Bass pill (results overview card) ---- */
.ct-bigbass-pill {
  background: linear-gradient(160deg, #fffbeb 0%, #fef3c7 100%);
  border: 1px solid #f59e0b;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 120px;
  text-align: center;
}

.ct-bigbass-pill-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #92400e;
}

.ct-bigbass-pill-weight {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1.15;
}

.ct-bigbass-pill-angler { font-size: 0.82rem; font-weight: 600; color: #78350f; }

/* ---- Individual result page ---- */
.ct-results-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  margin: 1.25rem 0 1.5rem;
}

.ct-results-back:hover { text-decoration: underline; }

.ct-bigbass-banner {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-left: 4px solid var(--accent-color);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.ct-bigbass-banner-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 0.2rem;
}

.ct-bigbass-banner-name { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin: 0; }

.ct-bigbass-banner-weight {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  flex-shrink: 0;
}

.ct-results-table-wrap {
  overflow-x: auto;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.ct-results-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.ct-results-table thead th {
  background: var(--primary-color);
  color: var(--white);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: none;
}

.ct-results-table thead th:first-child { text-align: center; width: 3rem; }

.ct-results-table tbody tr { border-bottom: 1px solid var(--border-color); }
.ct-results-table tbody tr:last-child { border-bottom: none; }
.ct-results-table tbody tr:hover { background: var(--background-light); }

.ct-results-table td {
  padding: 0.875rem 1.25rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  vertical-align: middle;
  border-bottom: none;
}

.ct-results-table td:first-child { text-align: center; }

.ct-results-row--1st { background: #fffbeb; }
.ct-results-row--1st:hover { background: #fef9e0 !important; }

.ct-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
}

.ct-rank-badge--1 { background: var(--accent-color); color: var(--white); }
.ct-rank-badge--2 { background: #9ca3af; color: var(--white); }
.ct-rank-badge--3 { background: #c8a06e; color: var(--white); }

.ct-team-coangler { font-size: 0.95rem; color: var(--text-dark); display: block; }

/* ---- Standings subpage ---- */
.ct-standings-intro {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  padding: 0.5rem 0 0.5rem;
}

.ct-standings-section { margin-bottom: 2.5rem; }

body.page-ct-standings .standings-table {
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

body.page-ct-standings .standings-table table {
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

body.page-ct-standings .standings-table th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: none;
}

body.page-ct-standings .standings-table td {
  padding: 0.75rem 1rem;
  border-bottom: none;
  border-top: 1px solid var(--border-color);
}

body.page-ct-standings .standings-table tbody tr:first-child td { border-top: none; }

/* ---- Subpage responsive ---- */
@media (max-width: 768px) {
  .ct-hero--sub .ct-hero-title { font-size: 1.75rem; }
  .ct-result-card-body { grid-template-columns: 1fr; gap: 1rem; }
  .ct-bigbass-pill { flex-direction: row; align-items: center; min-width: unset; text-align: left; gap: 0.75rem; }
  .ct-bigbass-pill-weight { font-size: 1.3rem; }
  .ct-bigbass-banner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .ct-bigbass-banner-weight { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .ct-result-card-header { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .ct-podium-detail { display: none; }
  .ct-result-card-body { padding: 1rem; }
  .ct-result-card-header { padding: 0.75rem 1rem; }
}

/* =============================================
   UPCOMING TOURNAMENT PAGE
   ============================================= */

body.page-ct-upcoming .main-content { padding-top: 0; background: #dce8f4; }
body.page-ct-upcoming .site-footer { display: none; }

/* ---- Day-of times grid ---- */
.ct-upcoming-times {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-color);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 0.25rem 0 1.5rem;
}

.ct-upcoming-time-item {
  background: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.ct-upcoming-time-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-light);
}

.ct-upcoming-time-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

.ct-upcoming-time-tbd {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--border-color);
  line-height: 1.1;
}

.ct-upcoming-time-note {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ---- Location card ---- */
.ct-upcoming-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.ct-upcoming-location {
  background: var(--white);
  border-left: 3px solid var(--primary-color);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ct-upcoming-location-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.ct-upcoming-lake-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.ct-upcoming-location-tbd {
  background: var(--white);
  border-left: 3px solid var(--border-color);
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-style: italic;
}

.ct-upcoming-ramp-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 0.2rem;
}

.ct-upcoming-ramp-address {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 0.6rem;
}

.ct-upcoming-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.ct-upcoming-maps-link:hover { text-decoration: underline; }

.ct-upcoming-gps {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-family: 'Courier New', monospace;
}

/* ---- New member strip ---- */
.ct-upcoming-newmember {
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.ct-upcoming-newmember-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 0.85rem;
}

.ct-upcoming-tips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ct-upcoming-tip-head {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.ct-upcoming-tip-body {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* ---- Upcoming responsive ---- */
@media (max-width: 768px) {
  .ct-upcoming-times { grid-template-columns: 1fr; }
  .ct-upcoming-time-item { padding: 1rem 1.25rem; }
  .ct-upcoming-location-grid { grid-template-columns: 1fr; }
  .ct-upcoming-lake-img { min-height: 220px; }
  .ct-upcoming-tips { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* =============================================
   MLTS PAGES — same layout pattern as club pages
   All .ct-* component classes are shared.
   ============================================= */

body.page-mlts .main-content { padding-top: 0; background: #dce8f4; }
body.page-mlts .site-footer { display: none; }

body.page-mlts-schedule .main-content,
body.page-mlts-upcoming .main-content,
body.page-mlts-results .main-content,
body.page-mlts-results-detail .main-content,
body.page-mlts-standings .main-content { padding-top: 0; background: #dce8f4; }

body.page-mlts-schedule .site-footer,
body.page-mlts-upcoming .site-footer,
body.page-mlts-results .site-footer,
body.page-mlts-results-detail .site-footer,
body.page-mlts-standings .site-footer { display: none; }

/* =============================================
   ABOUT & OFFICERS PAGES
   ============================================= */

body.page-about .main-content { padding-top: 0; background: #dce8f4; }
body.page-about .site-footer { display: none; }

body.page-officers .main-content { padding-top: 0; background: #dce8f4; }
body.page-officers .site-footer { display: none; }

/* Monthly meetings strip — 3 cols: label | when-where | details */
.about-meeting {
  display: grid;
  grid-template-columns: max-content max-content 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 2rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  overflow: hidden;
}

/* Col 1: "Meeting Info" eyebrow label */
.about-meeting-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border-color);
  background: var(--background-light);
}

.about-meeting-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Col 2: when/where details */
.about-meeting-when {
  padding: 1.25rem 2rem 1.25rem 1.5rem;
  border-right: 1px solid var(--border-color);
}

.about-meeting-day {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 0.1rem;
  white-space: nowrap;
}

.about-meeting-time {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.65rem;
}

.about-meeting-place {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.1rem;
}

.about-meeting-address {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  white-space: nowrap;
}

/* Col 3: prose details */
.about-meeting-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.25rem 1.75rem;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.55;
}

.about-meeting-details p { margin: 0; }

@media (max-width: 760px) {
  .about-meeting {
    grid-template-columns: 1fr;
  }
  .about-meeting-tag {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1.25rem;
  }
  .about-meeting-label {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .about-meeting-when {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem;
  }
  .about-meeting-details { padding: 1.25rem; }
  .about-meeting-address { white-space: normal; }
}

/* Joining steps */
.join-steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.join-step {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem 1.25rem;
  gap: 0.75rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.join-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.join-step-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.join-step-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.join-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
}

.join-step-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.45;
}

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

@media (max-width: 480px) {
  .join-steps { grid-template-columns: 1fr; }
}

/* Officers grid */
.officers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.officer-card {
  background: var(--white);
  border-left: 3px solid var(--primary-color);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  padding: 1.1rem 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.officer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.officer-role {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-color);
}

.officer-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.officer-since {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.officer-duties {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
}
