/* =========================
   GLOBAL / BASICS
========================= */

.hero-banner {
  width: 100%;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.home-section {
  padding: 60px 20px;
  text-align: center;
}

.home-section:nth-child(even) {
  background-color: #f7f7f7;
}

.home-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.home-section .inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* =========================
   TOP NAVIGATION / MENU
========================= */

.container-topbar {
  text-align: center !important;
  margin-top: -5px;
}

.container-topbar ul.mod-menu.mod-list.nav {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  float: none !important;
}

.container-topbar ul.mod-menu.mod-list.nav > li {
  list-style: none !important;
  float: none !important;
  margin: 0 1.5rem !important;
  position: relative !important;
}

.container-topbar ul.mod-menu.mod-list.nav > li > a,
.container-header .mod-menu .mod-menu__heading {
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  padding: 10px 0 !important;
  color: #fff !important;
  text-decoration: none !important;
  display: inline-block !important;
  line-height: 1.2 !important;
}

/* Dropdown arrow for parent items like Resources */
.container-header .mod-menu .mod-menu__heading::after {
  content: " ▾";
  font-size: 0.75em;
  margin-left: 6px;
  font-weight: 700;
}

/* Dropdown container */
.container-header .mod-menu {
  position: relative;
  z-index: 1000;
}

.container-header .mod-menu > li {
  position: relative;
}

.container-header .mod-menu .mod-menu__sub {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  min-width: 220px !important;
  background: #9b3d4a !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  z-index: 9999 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15) !important;
}

/* Show dropdown on hover/focus */
.container-header .mod-menu > li:hover > .mod-menu__sub,
.container-header .mod-menu > li:focus-within > .mod-menu__sub {
  display: block !important;
}

/* Dropdown links */
.container-header .mod-menu .mod-menu__sub li a {
  display: block !important;
  padding: 12px 16px !important;
  color: #fff !important;
  text-decoration: none !important;
  background: #9b3d4a !important;
  white-space: nowrap;
}

.container-header .mod-menu .mod-menu__sub li a:hover {
  background: #842f3b !important;
}

/* Optional mobile toggler styles */
.container-topbar .navbar {
  justify-content: center !important;
}

.container-topbar .navbar-toggler {
  display: inline-flex !important;
}

.container-topbar .navbar-toggler::after {
  content: " Menu";
  font-weight: 600;
  margin-left: 0.5rem;
}

.container-topbar .navbar-collapse {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.container-topbar .navbar-collapse.show {
  max-height: 80vh;
}

.container-topbar .navbar-nav {
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
}

.container-topbar .navbar:hover .navbar-collapse {
  max-height: 80vh;
}

/* =========================
   HERO
========================= */

.home-hero {
  position: relative;
  width: 100%;
  min-height: 340px;
  padding: 90px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45));
}

.home-hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.home-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 10px;
}

.home-hero__meta {
  font-size: 1.15rem;
  margin: 0 0 18px;
  opacity: 0.95;
}

.home-hero__buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 18px;
}

.home-hero__buttons .btn,
.home-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
}

.home-btn--light {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

.home-btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  background: transparent;
}

@media (max-width: 576px) {
  .home-hero {
    padding: 70px 16px;
  }
}

/* =========================
   SECTION SYSTEM
========================= */

.rpc-section {
  padding: 64px 20px;
}

.rpc-section--tight {
  padding: 44px 20px;
}

.rpc-section--alt {
  background: #f6f6f6;
}

.rpc-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rpc-center {
  text-align: center;
}

.rpc-h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 14px;
}

.rpc-h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.rpc-lead {
  font-size: 1.1rem;
  margin: 0 0 16px;
}

.rpc-muted {
  opacity: 0.85;
  margin: 0;
}

.rpc-quote {
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto 26px;
}

.rpc-spacer {
  height: 28px;
}

/* =========================
   BUTTONS
========================= */

.rpc-buttons {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.rpc-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.rpc-btn--primary {
  background: #7a1f2b;
  color: #fff;
}

.rpc-btn--outline {
  display: inline-block;
  padding: 12px 22px;
  border: 2px solid #8b1e2d;
  border-radius: 999px;
  color: #8b1e2d;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
}

.rpc-btn--outline:hover {
  background: #8b1e2d;
  color: #fff;
}

.rpc-textlink {
  font-weight: 700;
  text-decoration: none;
}

/* =========================
   GRIDS / CARDS
========================= */

.rpc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 18px;
}

.rpc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 35px;
}

.rpc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  text-align: left;
}

.rpc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.rpc-card h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.rpc-card p {
  flex-grow: 1;
  margin-bottom: 18px;
}

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

.rpc-card-center .rpc-buttons {
  justify-content: center;
}

.rpc-card-logo {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.rpc-card-logo img {
  max-height: 110px;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.rpc-card-image-large img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.rpc-card--soft {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

@media (max-width: 900px) {
  .rpc-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rpc-grid-2 {
    grid-template-columns: 1fr;
  }
}

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

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

/* =========================
   VISIT SECTION
========================= */

.rpc-visit-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
}

.rpc-visit-hero img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.rpc-visit-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.35);
}

.rpc-visit-overlay .rpc-h1,
.rpc-visit-overlay .rpc-lead {
  color: #fff;
  margin: 0 0 8px;
}

/* =========================
   STAY CONNECTED
========================= */

.rpc-stay-connected {
  padding-top: 20px;
}

.rpc-stay-connected-banner {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 28px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.rpc-stay-connected-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.rpc-stay-connected-intro p {
  margin: 0;
  font-size: 1.08rem;
}

.rpc-stay-connected-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}

.rpc-stay-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rpc-stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.rpc-stay-card h3,
.rpc-stay-card p {
  color: #1f2a44;
}

.rpc-stay-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  opacity: 1;
}

.rpc-stay-card a:not(.rpc-btn):not(.rpc-facebook-icon) {
  color: inherit;
}

.rpc-follow-card {
  text-align: center;
}

.rpc-follow-icons {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.rpc-facebook-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.rpc-facebook-icon span {
  transform: translateY(1px);
}

@media (max-width: 900px) {
  .rpc-stay-connected-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GOOGLE CALENDAR
========================= */

.gc-wrap {
  width: 100%;
  height: 80vh;
  min-height: 650px;
  max-height: 950px;
}

.gc-wrap iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

iframe.gc-iframe,
iframe[src*="calendar.google.com"] {
  width: 100% !important;
  height: 80vh !important;
  min-height: 650px !important;
  max-height: 950px !important;
  display: block !important;
  border: 0 !important;
}

@media (max-width: 600px) {
  .gc-wrap {
    height: 85vh;
    min-height: 700px;
    max-height: none;
  }

  iframe.gc-iframe,
  iframe[src*="calendar.google.com"] {
    height: 85vh !important;
    min-height: 700px !important;
    max-height: none !important;
  }
}

/* =========================
   MISSION / SPOTLIGHT
========================= */

.rpc-mission,
.rpc-mission-banner,
.rpc-mission-spotlight {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.rpc-mission-spotlight {
  margin-bottom: 70px;
}

.rpc-spotlight-block {
  margin-top: 20px;
}

.rpc-spotlight-block img,
.rpc-banner-img {
  width: 100%;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.rpc-mission-partners {
  background: #f7f7f7;
  padding: 60px 30px;
  border-radius: 18px;
  margin-top: 50px;
}

.rpc-section-divider {
  width: 80px;
  height: 3px;
  background: #8b1e2d;
  margin: 14px auto 35px;
  border-radius: 999px;
}

/* =========================
   CONGREGATIONS PAGE
========================= */

.rpc-congregations-page {
  padding: 30px 20px 70px;
  background: #f7f8fb;
}

.rpc-congregations-hero {
  max-width: 1200px;
  margin: 0 auto 40px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 43, 77, 0.92), rgba(76, 116, 163, 0.82)),
    url('/images/congregations-banner.jpg') center/cover no-repeat;
  min-height: 270px;
  display: flex;
  align-items: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.rpc-congregations-hero__content {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 55px 30px;
}

.rpc-congregations-hero__content .rpc-h1 {
  color: #fff;
  margin-bottom: 14px;
}

.rpc-congregations-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.8;
}

.rpc-card--intro,
.rpc-card--closing {
  text-align: center;
}

.rpc-card--intro {
  margin-bottom: 34px;
}

.rpc-language-block {
  margin-top: 20px;
  text-align: left;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.rpc-language-block p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.rpc-congregation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rpc-congregation-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.rpc-congregation-badge {
  display: inline-block;
  margin-bottom: 14px;
  background: #e7eef8;
  color: #23466f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}

.rpc-congregation-card .rpc-h2 {
  margin-bottom: 12px;
}

.rpc-congregation-card p {
  line-height: 1.75;
}

.rpc-congregation-times {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e3e7ee;
}

.rpc-congregation-times h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #183b63;
}

.rpc-congregation-times ul {
  margin: 0;
  padding-left: 18px;
}

.rpc-congregation-times li {
  margin-bottom: 10px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .rpc-congregation-grid {
    grid-template-columns: 1fr;
  }

  .rpc-congregations-hero {
    min-height: 220px;
  }

  .rpc-congregations-hero__content {
    padding: 40px 24px;
  }
}

/* =========================
   OUTREACH PAGE
========================= */

.rpc-outreach-page {
  padding: 30px 20px 70px;
  background: #f7f8fb;
}

.rpc-outreach-hero {
  max-width: 1200px;
  margin: 0 auto 40px;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  background:
    linear-gradient(135deg, rgba(16, 42, 73, 0.92), rgba(74, 113, 156, 0.82)),
    url('/images/community-outreach-banner.jpg') center/cover no-repeat;
}

.rpc-outreach-hero__content {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 55px 30px;
}

.rpc-outreach-hero__content .rpc-h1 {
  color: #fff;
  margin-bottom: 14px;
}

.rpc-outreach-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.8;
}

.rpc-outreach-intro-card {
  text-align: center;
  margin-bottom: 34px;
}

.rpc-outreach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.rpc-outreach-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.rpc-outreach-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.rpc-outreach-card .rpc-h2 {
  margin-bottom: 12px;
}

.rpc-outreach-card p {
  line-height: 1.75;
}

.rpc-outreach-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e3e7ee;
}

.rpc-outreach-details p {
  margin-bottom: 10px;
}

.rpc-help-box {
  text-align: center;
}

@media (max-width: 900px) {
  .rpc-outreach-grid {
    grid-template-columns: 1fr;
  }

  .rpc-outreach-hero {
    min-height: 220px;
  }

  .rpc-outreach-hero__content {
    padding: 40px 24px;
  }
}

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

.rpc-contact-page {
  padding: 30px 20px 70px;
  background: #f7f8fb;
}

.rpc-contact-hero {
  max-width: 1200px;
  margin: 0 auto 40px;
  border-radius: 22px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
  background:
    linear-gradient(135deg, rgba(17, 43, 75, 0.92), rgba(83, 122, 168, 0.82)),
    url('/images/contact-banner.jpg') center/cover no-repeat;
}

.rpc-contact-hero__content {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 55px 30px;
}

.rpc-contact-hero__content .rpc-h1 {
  color: #fff;
  margin-bottom: 14px;
}

.rpc-contact-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.06rem;
  line-height: 1.8;
}

.rpc-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.rpc-contact-card,
.rpc-contact-form-card,
.rpc-contact-info-card,
.rpc-map-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.rpc-contact-card {
  text-align: center;
}

.rpc-contact-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.rpc-contact-card p,
.rpc-contact-form-card p,
.rpc-contact-info-card p {
  line-height: 1.75;
}

.rpc-contact-note {
  color: #5e6b7a;
  font-size: 0.96rem;
  margin-top: 8px;
}

.rpc-contact-main {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.rpc-contact-side {
  display: block;
}

.rpc-form-placeholder {
  margin-top: 24px;
}

.rpc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.rpc-form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #183b63;
}

.rpc-form-box {
  height: 46px;
  border-radius: 12px;
  border: 1px solid #d8dee8;
  background: #f9fbfd;
}

.rpc-form-box--large {
  height: 150px;
}

.rpc-contact-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  color: #31465d;
}

.rpc-map-embed {
  overflow: hidden;
  border-radius: 16px;
  margin-top: 20px;
}

.rpc-contact-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.rpc-contact-support-card {
  height: 100%;
  padding: 28px;
  border-radius: 16px;
  background: #f7f7f7;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.rpc-contact-support-card p {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .rpc-contact-cards,
  .rpc-contact-main,
  .rpc-form-row {
    grid-template-columns: 1fr;
  }

  .rpc-contact-hero {
    min-height: 220px;
  }

  .rpc-contact-hero__content {
    padding: 40px 24px;
  }
}

@media (max-width: 768px) {
  .rpc-contact-support-grid {
    grid-template-columns: 1fr;
  }
}.page-header{
  background:#8b1e2d;
  color:white;
  padding:60px 20px;
  text-align:center;
  border-radius:12px;
  margin-bottom:40px;
}

.page-header h1{
  font-size:2.4rem;
}/* Bulletin hero banner */

.rpc-bulletin-hero{
  background:#8b1e2d;
  color:white;
  padding:70px 20px;
  text-align:center;
  border-radius:14px;
  margin-bottom:40px;
}

.rpc-bulletin-hero h1{
  font-size:2.5rem;
  margin-bottom:8px;
}

.rpc-bulletin-hero p{
  font-size:1.1rem;
  opacity:.9;
}
/* ======================================
   NEWSLETTER ARCHIVE PAGE
====================================== */

.newsletter-archive .items-leading {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 auto 40px !important;
  text-align: center !important;
}

.newsletter-archive .items-leading::before {
  content: "Current Newsletter";
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2a44;
  margin: 0 0 20px;
}

.newsletter-archive .items-leading .blog-item {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
}
.newsletter-archive .items-leading::before {
  content: "Current Newsletter";
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2a44;
  text-align: center;
  margin: 0 0 20px;
}
/* Current newsletter card */
.newsletter-archive .items-leading .blog-item {
  background: linear-gradient(135deg, #f7f3f4, #ffffff);
  border: 1px solid #e4d6d9;
  border-radius: 18px;
  padding: 42px 34px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  transition: all .25s ease;
  text-align: center;
  margin-bottom: 36px;
  position: relative;
}

.newsletter-archive .items-leading .blog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Accent bar on current newsletter */
.newsletter-archive .items-leading .blog-item::after {
  content: "";
  display: block;
  height: 6px;
  width: 70px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #8b1e2d;
}

/* Previous newsletters label */
.newsletter-archive .blog-items::after {
  content: "Previous Newsletters";
  grid-column: 1 / -1;
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1f2a44;
  text-align: center;
  margin: 0 0 4px;
}

/* Grid for previous newsletters */
.newsletter-archive .blog-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 10px;
}

/* Previous newsletter cards */
.newsletter-archive .blog-item {
  background: linear-gradient(135deg, #f7f3f4, #ffffff);
  border: 1px solid #e4d6d9;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
  transition: all .25s ease;
  text-align: center;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.newsletter-archive .blog-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Accent bar on archive cards */
.newsletter-archive .blog-item::before {
  content: "";
  display: block;
  height: 6px;
  width: 55px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: #8b1e2d;
}

/* Hide Joomla default title/meta/icons */
.newsletter-archive .page-header,
.newsletter-archive .article-title,
.newsletter-archive .article-info,
.newsletter-archive .icons,
.newsletter-archive .category-name,
.newsletter-archive .tags {
  display: none;
}

/* Your linked title inside the card */
.newsletter-archive .newsletter-card-title {
  margin: 0 0 14px;
}

.newsletter-archive .newsletter-card-title a {
  text-decoration: none;
  color: #1f2a44;
  font-weight: 700;
  line-height: 1.3;
  font-size: 1.35rem;
}

.newsletter-archive .items-leading .newsletter-card-title a {
  font-size: 2rem;
}

/* PDF icon */
.newsletter-archive .newsletter-card-title a::before {
  content: "📄 ";
  font-size: 1.1rem;
}

/* Supporting text */
.newsletter-archive .newsletter-card-text {
  margin: 0;
  color: #5b6577;
  line-height: 1.7;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 980px) {
  .newsletter-archive .blog-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .newsletter-archive .blog-items {
    grid-template-columns: 1fr;
  }

  .newsletter-archive .items-leading .newsletter-card-title a {
    font-size: 1.6rem;
  }
}/* CONTACT FORM MODERN STYLE */

.contact-modern .contact-form {
max-width:800px;
margin:40px auto;
background:#ffffff;
padding:40px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* fields */

.contact-modern input,
.contact-modern textarea,
.contact-modern select{
width:100%;
padding:14px;
border-radius:10px;
border:1px solid #dcdcdc;
font-size:1rem;
margin-bottom:18px;
}

/* textarea height */

.contact-modern textarea{
min-height:150px;
}

/* labels */

.contact-modern label{
font-weight:600;
color:#1f2a44;
margin-bottom:6px;
display:block;
}

/* submit button */

.contact-modern button,
.contact-modern .btn{
background:#8b1e2d;
color:white;
padding:14px 28px;
border-radius:28px;
border:none;
font-weight:600;
font-size:1rem;
transition:all .25s ease;
}

.contact-modern button:hover,
.contact-modern .btn:hover{
background:#6e1622;
transform:translateY(-2px);
}/* Sermon titles plain text, not clickable */
.nspeaker-sermons .table td a:not(.play),
.nspeaker-sermons table td a:not(.play) {
  pointer-events: none;
  text-decoration: none;
  color: inherit;
  cursor: default;
}

/* keep the play icon clickable */
.nspeaker-sermons .hasTooltip,
.nspeaker-sermons .icon-play,
.nspeaker-sermons a[href*="play"],
.nspeaker-sermons td:first-child a {
  pointer-events: auto;
  cursor: pointer;
}.nspeaker-sermons td a {
  color: #1f4e79;
  text-decoration: none;
}/* SermonSpeaker play link: show icon only, hide text */
.com-sermonspeaker-sermons .icon-play + span,
.com-sermonspeaker-sermons a[title*="Play"] {
  text-indent: 0;
}

.com-sermonspeaker-sermons a[title*="Play"] {
  font-size: 0;
}

.com-sermonspeaker-sermons a[title*="Play"] .icon-play,
.com-sermonspeaker-sermons a[title*="Play"]::before {
  font-size: 16px;
}.com-sermonspeaker-sermons table th a:first-child {
  font-size: 0 !important;
  text-decoration: none;
}
/* Force speaker image smaller */
.com-sermonspeaker img {
  max-width: 350px;
  height: auto;
}

/* Specifically for speaker page */
.view-speaker img {
  max-width: 300px;
  height: auto;
}