/* ================================
   COMMUNITY / FOLLOW ALONG SECTION
================================ */
.community-section {
  padding: 6rem 2rem;
  background: #f7f9f7;
}

.community-section .section-title {
  color: #1b361b;
}

.community-section .section-title::after {
  background: linear-gradient(90deg, #345635, #d4a574);
}

.follow-sub {
  text-align: center;
  color: #4a5a48;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: -1.75rem;
  margin-bottom: 3rem;
}

/* ================================
   SOCIAL CARDS GRID
================================ */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.social-card {
  background: #ffffff;
  border: 1px solid rgba(52, 86, 53, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27, 54, 27, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(27, 54, 27, 0.13);
}

/* ── Coloured icon block at top ── */
.social-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* ── Text body ── */
.social-card-body {
  padding: 1.25rem 1.4rem 0.75rem;
  flex: 1;
}

.social-platform {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6b7f6b;
  margin-bottom: 0.3rem;
}

.social-handle {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1b361b;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.social-desc {
  font-size: 0.82rem;
  color: #4a5a48;
  line-height: 1.6;
}

/* ── CTA row ── */
.social-card-cta {
  padding: 1rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #345635;
  border-top: 1px solid rgba(52, 86, 53, 0.1);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.social-card:hover .social-card-cta {
  color: #d4a574;
}

/* ================================
   CTA BANNER
================================ */
.cta-banner {
  background: linear-gradient(to bottom, #f7f9f7 0%, #e8f0e7 20%, #345635 55%, #1b361b 100%);
  padding: 1.5rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  display: none;
}

.cta-banner-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  z-index: 1;
}

.cta-banner-title {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #000000;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-banner-sub {
  font-size: 1rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  font-weight: 400;
}

.cta-banner-btn {
  display: inline-block;
  padding: 0.9rem 2.6rem;
  background: #d4a574;
  color: #1b361b;
  border-radius: 3px;
  font-weight: 800;
  font-size: 0.83rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 20px rgba(196, 149, 74, 0.4);
}

.cta-banner-btn:hover {
  background: #e0b98a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196, 149, 74, 0.5);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 960px) {
  .community-section { padding: 4rem 1.5rem; }
  .social-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (max-width: 560px) {
  .community-section { padding: 3.5rem 1.25rem; }
  .social-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cta-banner { padding: 3.5rem 1.5rem; }
}

@media (max-width: 400px) {
  .social-grid { grid-template-columns: 1fr; }
}
