/* services page overrides */
.svc-wide {
  max-width: 920px;
}

/* pricing table */
.svc-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 32px;
  font-size: .86rem;
}

.svc-pricing-table thead th {
  text-align: left;
  padding: 10px 14px;
  background: #f1efed;
  font-weight: 600;
  color: #373234;
  font-size: .82rem;
  border-bottom: 2px solid #e1ddd8;
}

.svc-pricing-table tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid #e1ddd8;
  color: #555354;
  line-height: 1.45;
}

.svc-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.svc-pricing-table tbody tr:hover {
  background: #fafaf9;
}

.svc-pricing-table td:nth-child(2),
.svc-pricing-table td:nth-child(3),
.svc-pricing-table th:nth-child(2),
.svc-pricing-table th:nth-child(3) {
  white-space: nowrap;
  text-align: right;
  font-weight: 500;
  color: #373234;
}

/* cta block */
.svc-cta-block {
  margin: 36px 0 40px;
  padding: 28px 30px;
  background: #111111;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.svc-cta-block__text h3 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.svc-cta-block__text p {
  color: rgba(255,255,255,0.7);
  font-size: .88rem;
  margin: 0;
}

.svc-cta-block__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.svc-cta-block .custom-button--outline {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}
.svc-cta-block .custom-button--outline:hover {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

/* map embed */
.svc-map-embed {
  margin: 14px 0 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e1ddd8;
}

.svc-map-embed iframe {
  display: block;
  border: 0;
}

/* responsive */
@media screen and (max-width: 767px) {
  .svc-pricing-table {
    font-size: .78rem;
  }

  .svc-pricing-table thead th,
  .svc-pricing-table tbody td {
    padding: 8px 10px;
  }

  .svc-cta-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
  }

  .svc-cta-block__buttons {
    width: 100%;
  }

  .svc-cta-block__buttons .custom-button {
    flex: 1;
    text-align: center;
  }

  .svc-map-embed iframe {
    height: 260px;
  }
}
