
/* ==========================================================
   4) CONTENT COMPONENTS — CSS
   (Put ALL component CSS here globally)
========================================================== */

/* ---------- Image Columns ---------- */


.contentComponent-heroCols,
.contentComponent-heroCols *{
  box-sizing: border-box;
}

.contentComponent-heroCols{
  width: 100%;
  position: relative;
}

/* Grid */
.contentComponent-heroCols .cc-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

/* Card */
.contentComponent-heroCols .cc-card{
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background image */
.contentComponent-heroCols .cc-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

/* Dark overlay */
.contentComponent-heroCols .cc-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

/* Thin dividers between columns */
.contentComponent-heroCols .cc-card + .cc-card{
  border-left: 1px solid rgba(255,255,255,.18);
}

/* Content */
.contentComponent-heroCols .cc-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  padding: 64px 44px;
  color: #fff;
}

.contentComponent-heroCols .cc-title{
  margin: 0 0 14px 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(26px, 2.1vw, 40px);
}

.contentComponent-heroCols .cc-times{
  margin: 0 0 16px 0;
  font-weight: 800;
  line-height: 1.55;
  font-size: 16px;
}

.contentComponent-heroCols .cc-body{
  margin: 0 auto;
  max-width: 460px;
  font-size: 16px;
  line-height: 1.75;
}

.contentComponent-heroCols .cc-body p{
  margin: 0 0 12px 0;
}

.contentComponent-heroCols .rp-btn{
  margin-top: 26px;
  display: inline-block;
}

/* Responsive */
@media (max-width: 991px){
  .contentComponent-heroCols .cc-grid{
    grid-template-columns: 1fr;
  }
  .contentComponent-heroCols .cc-card + .cc-card{
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.18);
  }
  .contentComponent-heroCols .cc-inner{
    padding: 44px 22px;
  }
}

/* ---------- HERO CARDS ---------- */

.contentComponent-heroCards.full-bleed{
  position:relative;
  width:100vw;
  max-width:100vw;
  left:50%;
  margin-left:-50vw;
  margin-right:-50vw;
  overflow:hidden;
}

.contentComponent-heroCards .heroCard{
  position:relative;
  width:100%;
  min-height:560px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background-size:cover;
  background-position:50% 50%;
  background-repeat:no-repeat;
}

.contentComponent-heroCards .heroCard:before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  z-index:1;
}

.contentComponent-heroCards .heroCard:after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  width:52%;
  background:linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 100%);
  z-index:1;
  pointer-events:none;
}

.contentComponent-heroCards .heroCard.is-right:after{
  left:auto;
  right:0;
  width:52%;
  background:linear-gradient(270deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 100%);
}

.contentComponent-heroCards .heroInner{
  position:relative;
  z-index:2;
  width:100%;
  padding:80px 8vw;
  display:flex;
}

.contentComponent-heroCards .heroText{
  max-width:640px;
  color:#fff;
}

.contentComponent-heroCards .heroCard.is-right .heroInner{
  justify-content:flex-end;
  text-align:left;
}

.contentComponent-heroCards .heroText p{
  font-size:20px;
  line-height:1.75;
  opacity:.95;
}

@media (max-width:991px){
  .contentComponent-heroCards .heroCard{ min-height:520px; }
  .contentComponent-heroCards .heroInner{ padding:56px 22px; }
  .contentComponent-heroCards .heroCard:after,
  .contentComponent-heroCards .heroCard.is-right:after{
    width:100%;
    background:linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.05) 100%);
  }
  .contentComponent-heroCards .heroText{ max-width:720px; }
  .contentComponent-heroCards .heroText p{ font-size:18px; }
}

/* ---------- COLUMNS ---------- */

.contentComponent-columns{
  padding:80px 0;
}

.contentComponent-columns .cc-head{
  text-align:center;
  max-width:980px;
  margin:0 auto 46px auto;
  padding:0 18px;
}

.contentComponent-columns .cc-subheading{
  margin:0 auto 18px auto;
  font-size:18px;
  line-height:1.7;
  opacity:.9;
  max-width:860px;
  color: var(--rp-muted);
}

.contentComponent-columns .cc-head .cc-intro{
  margin:0 auto;
  font-size:18px;
  line-height:1.7;
  opacity:.9;
  max-width:860px;
  color: var(--rp-muted);
}

.contentComponent-columns .cc-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  margin:0 auto;
  max-width:1200px;
}

.contentComponent-columns .cc-item{
  text-align:center;
  padding:0 26px;
  margin-bottom:40px;
}

.contentComponent-columns.cols-2 .cc-item{ width:50%; }
.contentComponent-columns.cols-3 .cc-item{ width:33.3333%; }
.contentComponent-columns.cols-4 .cc-item{ width:25%; }

.contentComponent-columns .cc-imgWrap{
  width:100%;
  height:210px;
  border:1px solid rgba(0,0,0,.10);
  overflow:hidden;
  background:#fff;
}

.contentComponent-columns .cc-imgWrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.contentComponent-columns .cc-title{
  margin:22px 0 14px 0;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
  color: var(--rp-charcoal);
}

.contentComponent-columns .cc-body{
  font-size:16px;
  line-height:1.8;
  opacity:.9;
  max-width:320px;
  margin:0 auto;
  color: var(--rp-muted);
}

@media (max-width:991px){
  .contentComponent-columns{ padding:56px 0; }
  .contentComponent-columns.cols-4 .cc-item,
  .contentComponent-columns.cols-3 .cc-item{ width:50%; }
  .contentComponent-columns .cc-item{ padding:0 16px; }
}

@media (max-width:575px){
  .contentComponent-columns.cols-4 .cc-item,
  .contentComponent-columns.cols-3 .cc-item,
  .contentComponent-columns.cols-2 .cc-item{ width:100%; }
  .contentComponent-columns .cc-imgWrap{ height:220px; }
}

/* ---------- CIRCLE FEATURE ---------- */

.contentComponent-circleFeature{
  position:relative;
  padding:84px 0;
  margin:0 !important;
}

.contentComponent-circleFeature.has-bg::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:100vw;
  background:var(--cf-bg);
  z-index:0;
}

.contentComponent-circleFeature.flush-next{
  padding-bottom:0 !important;
}
.contentComponent-circleFeature.flush-next .cf-inner{
  padding-bottom:64px;
}

.contentComponent-circleFeature .cf-inner{
  position:relative;
  z-index:2;
  max-width:1280px;
  margin:0 auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  gap:64px;
}

.contentComponent-circleFeature .cf-media{
  position:relative;
  flex:0 0 340px;
  max-width:340px;
}

.contentComponent-circleFeature .cf-circle{
  width:340px;
  height:340px;
  border-radius:999px;
  overflow:hidden;
  position:relative;
  z-index:2;
}

.contentComponent-circleFeature .cf-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.contentComponent-circleFeature .cf-dots{
  position:absolute;
  top:50%;
  left:10%;
  transform:translate(-50%,-50%);
  width:220px;
  height:220px;
  opacity:.35;
  z-index:1;
  background-image:radial-gradient(currentColor 1.4px, transparent 1.4px);
  background-size:12px 12px;
}

.contentComponent-circleFeature .cf-content{
  flex:1;
  max-width:720px;
  color:var(--cf-fg, inherit);
}

.contentComponent-circleFeature .cf-title{
  margin:0 0 14px 0;
  font-weight:900;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.contentComponent-circleFeature .cf-sub{
  margin:0 0 18px 0;
  font-size:18px;
  line-height:1.7;
  opacity:.9;
  color: var(--rp-muted);
}

.contentComponent-circleFeature .cf-body{
  font-size:20px;
  line-height:1.85;
  opacity:.92;
  color: var(--rp-muted);
}

.contentComponent-circleFeature .cf-body > *:last-child{ margin-bottom:0 !important; }
.contentComponent-circleFeature .cf-content > *:last-child{ margin-bottom:0 !important; }

.contentComponent-circleFeature.is-right .cf-inner{
  flex-direction:row-reverse;
}

@media (max-width:991px){
  .contentComponent-circleFeature{ padding:60px 0; }
  .contentComponent-circleFeature .cf-inner{
    flex-direction:column;
    gap:34px;
    text-align:center;
  }
  .contentComponent-circleFeature.is-right .cf-inner{ flex-direction:column; }
  .contentComponent-circleFeature .cf-circle{ width:280px; height:280px; }
  .contentComponent-circleFeature .cf-body{ font-size:18px; }
}
@media (max-width:420px){
  .contentComponent-circleFeature .cf-circle{ width:240px; height:240px; }
}