/* =========================================
   PILLARS FEATURE
========================================= */

.rg-pillars-feature {
  padding: 110px 0;
  background: #ffffff;
}

.rg-pillars-feature .page-center {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.rg-pillars-feature__grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 560px);
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

/* =========================================
   CONTENT
========================================= */

.rg-pillars-feature__eyebrow {
  margin-bottom: 20px;

  color: #f26c0c;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.rg-pillars-feature__heading {
  margin: 0 0 28px;

  color: #111827;

  font-size: clamp(42px,4vw,60px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -2px;
}

.rg-pillars-feature__description {
  margin-bottom: 36px;

  color: #1f2937;

  font-size: 18px;
  line-height: 1.8;
}

.rg-pillars-feature__description p:first-child {
  margin-top: 0;
}

.rg-pillars-feature__description p:last-child {
  margin-bottom: 0;
}

/* =========================================
   BUTTON
========================================= */

.rg-pillars-feature__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 230px;
  height: 58px;
  padding: 0 32px;

  border: 2px solid #1f2937;
  border-radius: 999px;

  color: #1f2937;
  background: transparent;

  font-size: 18px;
  font-weight: 600;
  text-decoration: none;

  transition: all .3s ease;
}

.rg-pillars-feature__button:hover {
  background: #c9c7c3;
  color: #1f2937;

  transform: translateY(-2px);
}

/* =========================================
   IMAGE
========================================= */

.rg-pillars-feature__image-wrap {
  display: flex;
  justify-content: center;
}

.rg-pillars-feature__image {
  display: block;

  width: 100%;
  max-width: 560px;

  border-radius: 24px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:991px){

  .rg-pillars-feature {
    padding: 90px 0;
  }

  .rg-pillars-feature__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

}

@media (max-width:767px){

  .rg-pillars-feature {
    padding: 72px 0;
  }

  .rg-pillars-feature .page-center {
    padding: 0 20px;
  }

  .rg-pillars-feature__heading {
    font-size: 38px;
    line-height: 1.05;
  }

  .rg-pillars-feature__description {
    font-size: 16px;
  }
  
  .rg-pillars-feature__eyebrow {
    font-size: 11px;
  }

  .rg-pillars-feature__button {
    width: 100%;
}