/* Property Tax Hub shared navigation enhancements */

.pth-utility-bar {
  width: 100%;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.pth-utility-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.pth-utility-inner a {
  color: #0a2240;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.pth-utility-inner a:hover,
.pth-utility-inner a:focus {
  color: #c9922a;
  text-decoration: underline;
}

.pth-utility-separator {
  color: #94a3b8;
}


/* Main Hub Search Your PIN feature */

.pth-property-lookup {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;

  padding: 28px 30px;

  border-radius: 18px;

  background:
    linear-gradient(
      135deg,
      #0a2240 0%,
      #0e3060 100%
    );

  box-shadow:
    0 12px 30px
    rgba(10, 34, 64, .15);
}

.pth-property-lookup::after {
  content: "";
  position: absolute;

  width: 220px;
  height: 220px;

  right: -80px;
  top: -100px;

  border-radius: 50%;

  background:
    rgba(201,146,42,.12);
}

.pth-property-lookup-content {
  position: relative;
  z-index: 1;
}

.pth-property-lookup-label {
  margin: 0 0 5px;

  color: #c9922a;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: .13em;
  text-transform: uppercase;
}

.pth-property-lookup h2 {
  margin: 0;

  color: #ffffff;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size:
    clamp(23px, 3vw, 30px);

  font-weight: 700;
}

.pth-property-lookup p {
  max-width: 720px;

  margin: 9px 0 0;

  color: #dbe5ef;

  font-size: 15px;
  line-height: 1.6;
}

.pth-property-lookup-action {
  position: relative;
  z-index: 1;

  display: inline-flex;
  justify-content: center;
  align-items: center;

  min-width: 175px;

  padding: 13px 20px;

  border-radius: 10px;

  background: #c9922a;

  color: #ffffff !important;

  font-size: 14px;
  font-weight: 800;

  text-decoration: none !important;

  box-shadow:
    0 5px 14px
    rgba(0,0,0,.12);

  transition:
    transform .15s ease,
    background .15s ease;
}

.pth-property-lookup-action:hover,
.pth-property-lookup-action:focus {
  background: #b07d22;
  transform: translateY(-1px);
}

@media (max-width: 720px) {

  .pth-property-lookup {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pth-property-lookup-action {
    width: 100%;
  }

}
