/* Core Values / Approach Pillars — Acreways Living */

.aw-pillars {
  background-color: #ffffff;
  box-sizing: border-box;
  width: 100%;
  padding-top: 1rem;
}

.aw-pillars--bg-loaded .product-card {
  background-image: url('../images/services-bg-section.png');
}

.aw-pillars__header {
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
  margin-bottom: 2.5rem;
  text-align: center;
}

.aw-pillars__label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3676f1;
  background: var(--blue-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 0.75rem 0;
}

.aw-pillars__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #0b2d6d;
  margin: 0 0 1rem 0;
}

.aw-pillars__body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin: 0 auto;
  max-width: 600px;
}

.aw-pillars__grid {
  max-width: 1500px;
  margin-inline: auto;
  padding-inline: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem 2rem;
}

.product-card {
  font-family: 'Manrope', sans-serif;
  background-color: #ffffff;
  background-repeat: repeat;
  border: 1px solid rgba(209, 213, 219, 0.5);
  border-radius: 0.75rem;
  padding: 2.25rem 1.75rem 1.5rem;
  position: relative;
  box-shadow: 0 11px 40px rgba(11, 45, 109, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 235px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 45, 109, 0.14);
}

.product-icon {
  position: absolute;
  top: -28px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3676f1;
  border: 4px solid #cfe0fd;
  /* box-shadow: 0 4px 12px rgba(11, 45, 109, 0.2); */
}

.product-icon-svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
}

.product-title {
  font-size: 19px;
  font-weight: 700;
  color: #0b2d6d;
  line-height: 1.35;
  margin: 0 0 0.75rem 0;
  max-width: 85%;
}

.product-description {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .aw-pillars__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .aw-pillars__heading {
    font-size: 34px;
  }
}

@media (min-width: 1024px) {
  .aw-pillars__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
