/* Full-width banner */
.hero-banner {
    width: 100%;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}
/* Center the menu in the topbar no matter what Cassiopeia/Bootstrap does */
.container-topbar {
  text-align: center !important;
}

/* Make the UL shrink-to-fit and center itself */
.container-topbar ul.mod-menu.mod-list.nav {
  display: inline-flex !important;     /* inline-flex allows centering via text-align */
  justify-content: center !important;  /* center the LI items */
  align-items: center !important;
  width: auto !important;
  margin: 0 auto !important;
  padding-left: 0 !important;
  float: none !important;
}

/* Ensure the LI don't force weird layout */
.container-topbar ul.mod-menu.mod-list.nav > li {
  list-style: none !important;
  float: none !important;
}

/* Optional: add spacing between menu items */
.container-topbar ul.mod-menu.mod-list.nav > li + li {
  margin-left: 1rem;
}
/* Make menu text slightly larger */
.container-topbar ul.mod-menu.mod-list.nav > li > a {
    font-size: 1.15rem;      /* increase size */
    font-weight: 500;        /* slightly stronger text */
    padding: 10px 0;         /* vertical breathing room */
}

/* Spread menu items out more */
.container-topbar ul.mod-menu.mod-list.nav > li {
    margin: 0 1.5rem;        /* horizontal spacing between items */
}
.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-hero {
  background-size: cover;
  background-position: center;
  padding: 90px 20px;
  color: #fff;
}
.home-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.home-hero__buttons {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  justify-content: center;
}
.home-hero__buttons .btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: #111;
  text-decoration: none;
}
.home-section {
  padding: 60px 20px;
}
.home-section .inner {
  max-width: 1100px;
  margin: 0 auto;
}
/* HERO */
.home-hero{
  position: relative;
  width: 100%;
  min-height: 340px;
  padding: 90px 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* dark overlay for readability */
.home-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(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: .95;
}

/* Buttons */
.home-hero__buttons{
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.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,.92);
  color: #111;
}

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

/* Slightly tighter hero on mobile */
@media (max-width: 576px){
  .home-hero{ padding: 70px 16px; }
}
.container-topbar {
    margin-top: -5px;
}
/* Force the Cassiopeia collapsible navbar to stay collapsed on desktop */
.container-topbar .navbar-expand-lg .navbar-collapse {
  display: none !important;
}

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

/* Center the toggler button */
.container-topbar .navbar {
  justify-content: center !important;
}

/* Optional: make the toggler say “Menu” */
.container-topbar .navbar-toggler::after {
  content: " Menu";
  font-weight: 600;
  margin-left: .5rem;
}
/* Always show the toggler (hamburger button) */
.container-topbar .navbar-toggler {
  display: inline-flex !important;
}

/* Center the navbar content */
.container-topbar .navbar {
  justify-content: center !important;
}

/* Collapse area: hidden by height (NOT display:none) so it can open */
.container-topbar .navbar-collapse {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

/* When opened (Bootstrap adds .show), allow it to expand */
.container-topbar .navbar-collapse.show {
  max-height: 80vh;
}

/* Stack links vertically inside the open menu */
.container-topbar .navbar-nav {
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
}

/* Add “Menu” label next to the icon (optional) */
.container-topbar .navbar-toggler::after {
  content: " Menu";
  font-weight: 600;
  margin-left: .5rem;
}
/* Open when hovering over navbar area */
.container-topbar .navbar:hover .navbar-collapse {
  max-height: 80vh;
}

/* Keep collapse working normally otherwise */
.container-topbar .navbar-collapse {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.container-topbar .navbar-collapse.show {
  max-height: 80vh;
}
/* --- Modern 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: .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-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: .2px;
}

.rpc-btn--primary { background: #7a1f2b; color: #fff; }
.rpc-btn--outline { border: 2px solid #7a1f2b; color: #7a1f2b; background: transparent; }

.rpc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

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

.rpc-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  text-align: left;
}

.rpc-card h3 { margin-top: 0; }
.rpc-textlink { font-weight: 700; text-decoration: none; }

.rpc-spacer { height: 28px; }

@media (max-width: 900px){
  .rpc-grid-3 { grid-template-columns: 1fr; }
  .rpc-grid-2 { grid-template-columns: 1fr; }
  .rpc-card { text-align: center; }
}
/* Google Calendar: full width + usable height */
.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;
}

/* Phones */
@media (max-width: 600px){
  .gc-wrap{
    height: 85vh;
    min-height: 700px;
    max-height: none;
  }
}
/* Responsive Google Calendar (no wrapper needed) */
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;
}

/* Phones: taller */
@media (max-width: 600px){
  iframe.gc-iframe,
  iframe[src*="calendar.google.com"]{
    height: 85vh !important;
    min-height: 700px !important;
    max-height: none !important;
  }
}
/* Visit Us Background Section */
.rpc-visit-hero{
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden; /* keeps overlay + image clipped to rounded corners */
}

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

/* overlay */
.rpc-visit-overlay{
  position: absolute;
  inset: 0;                 /* top/right/bottom/left = 0 */
  display: flex;
  flex-direction: column;
  justify-content: center;  /* vertical center */
  align-items: center;      /* horizontal center */
  text-align: center;
  padding: 24px;
  z-index: 2;               /* ensures it sits above the image */
  background: rgba(0,0,0,0.35);
}

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

.rpc-visit-overlay .rpc-lead{
  margin: 0;
  color: #fff;
  max-width: 700px;
}.rpc-stay-connected{
background-image:url('/images/stay-connected.jpg');
background-size:cover;
background-position:center;
padding:120px 20px 80px;
position:relative;
color:white;
text-align:center;
}

.rpc-stay-overlay{
background:rgba(0,0,0,0.45);
display:inline-block;
padding:30px 40px;
border-radius:8px;
margin-bottom:40px;
}

.rpc-stay-connected h2{
color:white;
margin-bottom:10px;
}

.rpc-stay-connected p{
color:white;
}.rpc-grid-3 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 26px;
}

.rpc-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.rpc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
}

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

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

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

.rpc-card p {
  flex-grow: 1;
  margin-bottom: 18px;
}.rpc-grid-3 {
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:26px;
}

.rpc-card{
display:flex;
flex-direction:column;
height:100%;
padding:22px;
}

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

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

.rpc-card p{
flex-grow:1;
}.rpc-mission-spotlight {
  max-width: 1100px;
  margin: 0 auto;
}

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

.rpc-spotlight-block img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}.rpc-grid-3{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:26px;
margin-top:35px;
}

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

@media (max-width:600px){
.rpc-grid-3{
grid-template-columns:1fr;
}
}.rpc-card{
display:flex;
flex-direction:column;
height:100%;
padding:22px;
border-radius:14px;
background:white;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
transition:all .25s ease;
}

.rpc-card:hover{
transform:translateY(-6px);
box-shadow:0 14px 30px rgba(0,0,0,0.12);
}.rpc-mission-spotlight {
  max-width: 1100px;
  margin: 0 auto 70px;
}

.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;
}

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

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

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

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

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

.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 .25s ease;
}

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

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

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

.rpc-card p {
  flex-grow: 1;
}.rpc-mission{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
}

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

.rpc-banner-img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}.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--soft {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
}

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

.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;
}

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

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

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

  .rpc-congregations-hero__content {
    padding: 40px 24px;
  }
}.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-card--soft {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.07);
}

.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;
  }
}.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 .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;
}

@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;
  }
}.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: 768px) {
  .rpc-contact-support-grid {
    grid-template-columns: 1fr;
  }
}.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 .25s ease, box-shadow .25s ease;
}

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

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

.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);
}

.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;
}

@media (max-width: 900px) {
  .rpc-stay-connected-grid {
    grid-template-columns: 1fr;
  }
}.rpc-stay-card h3,
.rpc-stay-card p {
  color: #1f2a44;
}

.rpc-stay-card p {
  opacity: 1;
}

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

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

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

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

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

.navbar .nav-child {
    display: none;
    position: absolute;
    background: #ffffff;
    min-width: 220px;
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    padding: 10px 0;
    transition: all 0.2s ease;
}

/* Show dropdown on hover */

.navbar li:hover > .nav-child {
    display: block;
}

/* Dropdown links */

.navbar .nav-child a {
    padding: 10px 20px;
    display: block;
    color: #333;
}

.navbar .nav-child a:hover {
    background: #f3f3f3;
}

/* Slight spacing for dropdown */

.navbar li {
    position: relative;
/* Parent top-menu items: make them match normal menu links */
.container-header .mod-menu > li.parent > a,
.container-header .mod-menu > li.deeper > a,
.container-header .mod-menu > li.parent > button,
.container-header .mod-menu > li.deeper > button,
.container-header .mod-menu > li.parent > span,
.container-header .mod-menu > li.deeper > span,
.container-header .mod-menu > li.parent > .separator,
.container-header .mod-menu > li.deeper > .separator,
.container-header .mod-menu > li.parent > .mod-menu__heading,
.container-header .mod-menu > li.deeper > .mod-menu__heading {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  display: inline-block;
  padding: 0.5rem 0.75rem;
  line-height: 1.2;
}

/* Add dropdown arrow to parent items */
.container-header .mod-menu > li.parent > a::after,
.container-header .mod-menu > li.deeper > a::after,
.container-header .mod-menu > li.parent > button::after,
.container-header .mod-menu > li.deeper > button::after,
.container-header .mod-menu > li.parent > span::after,
.container-header .mod-menu > li.deeper > span::after,
.container-header .mod-menu > li.parent > .separator::after,
.container-header .mod-menu > li.deeper > .separator::after,
.container-header .mod-menu > li.parent > .mod-menu__heading::after,
.container-header .mod-menu > li.deeper > .mod-menu__heading::after {
  content: " ▾" !important;
  font-size: 0.75em;
  margin-left: 6px;
  font-weight: 700;
}

/* Keep parent menu items white on hover/focus */
.container-header .mod-menu > li.parent:hover > a,
.container-header .mod-menu > li.deeper:hover > a,
.container-header .mod-menu > li.parent:hover > button,
.container-header .mod-menu > li.deeper:hover > button,
.container-header .mod-menu > li.parent:hover > span,
.container-header .mod-menu > li.deeper:hover > span,
.container-header .mod-menu > li.parent:hover > .separator,
.container-header .mod-menu > li.deeper:hover > .separator,
.container-header .mod-menu > li.parent:hover > .mod-menu__heading,
.container-header .mod-menu > li.deeper:hover > .mod-menu__heading {
  color: #fff !important;
}