/* City website-design landing pages */
.nws-loc {
  padding: 80px 0 40px;
}

.nws-loc .sec-title {
  margin-bottom: 28px;
}

.nws-loc .sec-title .title {
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.nws-loc .sec-title .text {
  max-width: 720px;
  color: #5b6570;
  font-size: 16px;
  line-height: 1.7;
}

.nws-loc-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 40px;
  padding: 16px 20px;
  background: #f7f8fa;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 12px;
  color: #3d4550;
  font-size: 14px;
  line-height: 1.6;
}

.nws-loc-note strong {
  color: var(--headings-color, #131313);
}

.nws-loc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}

.nws-loc-card {
  min-height: 100%;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 14px;
}

.nws-loc-card h3 {
  margin: 0 0 8px;
  color: var(--headings-color, #131313);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.nws-loc-card p {
  margin: 0;
  color: #5b6570;
  font-size: 14px;
  line-height: 1.65;
}

.nws-loc-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-bottom: 48px;
  align-items: start;
}

.nws-loc-split ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nws-loc-split li {
  position: relative;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid rgba(19, 19, 19, 0.06);
  color: #3d4550;
  font-size: 15px;
  line-height: 1.6;
}

.nws-loc-split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-color1, #f2520d);
}

.nws-loc-aside {
  padding: 24px 22px;
  background: #131313;
  color: #fff;
  border-radius: 14px;
}

.nws-loc-aside h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 20px;
}

.nws-loc-aside p,
.nws-loc-aside li {
  color: rgba(255, 255, 255, 0.82);
}

.nws-loc-aside ul {
  margin: 12px 0 0;
  padding: 0 0 0 18px;
}

.nws-loc-aside li {
  margin: 0 0 8px;
  padding: 0;
  border: 0;
  font-size: 14px;
  line-height: 1.55;
}

.nws-loc-aside li::before {
  display: none;
}

.nws-loc-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}

.nws-loc-steps li {
  padding: 18px 16px;
  background: #fff;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 12px;
}

.nws-loc-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--theme-color1, #f2520d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nws-loc-steps h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.nws-loc-steps p {
  margin: 0;
  color: #5b6570;
  font-size: 13px;
  line-height: 1.55;
}

.nws-loc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 48px;
}

.nws-loc-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 16px;
  border: 1px solid rgba(19, 19, 19, 0.1);
  border-radius: 999px;
  color: var(--headings-color, #131313);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nws-loc-links a:hover,
.nws-loc-links a:focus-visible {
  border-color: rgba(242, 82, 13, 0.45);
  color: var(--theme-color1, #f2520d);
}

.nws-loc-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 40px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 14px;
}

.nws-loc-cta p {
  margin: 8px 0 0;
  max-width: 560px;
  color: #5b6570;
}

.nws-loc-faq {
  padding-bottom: 80px;
}

@media (max-width: 991.98px) {
  .nws-loc-split,
  .nws-loc-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .nws-loc {
    padding: 56px 0 24px;
  }
  .nws-loc-grid,
  .nws-loc-split,
  .nws-loc-steps {
    grid-template-columns: 1fr;
  }
  .nws-loc-cta {
    padding: 20px 16px;
  }
}
