/* Atlanta Realtor 2026 visual system. Loaded after the legacy child styles. */
:root {
  --atl2-pine: #143d36;
  --atl2-pine-dark: #0b2a26;
  --atl2-brick: #a64032;
  --atl2-brick-dark: #7e2e25;
  --atl2-peach: #f2a65a;
  --atl2-peach-light: #ffd7aa;
  --atl2-sky: #cde7e5;
  --atl2-sky-light: #edf7f6;
  --atl2-ink: #172421;
  --atl2-text: #46534f;
  --atl2-muted: #697571;
  --atl2-line: #d9e2df;
  --atl2-soft: #f5f8f7;
  --atl2-white: #ffffff;
  --atl2-shadow: 0 18px 46px rgba(11, 42, 38, 0.12);
}

body.atl-v2-site,
body.atl-v2-site button,
body.atl-v2-site input,
body.atl-v2-site select,
body.atl-v2-site textarea {
  color: var(--atl2-text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.atl-v2-site {
  background: var(--atl2-white);
  font-size: 16px;
  line-height: 1.7;
}

body.atl-v2-site h1,
body.atl-v2-site h2,
body.atl-v2-site h3,
body.atl-v2-site h4 {
  color: var(--atl2-ink);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
  text-transform: none;
}

body.atl-v2-site a {
  color: var(--atl2-pine);
}

body.atl-v2-site img {
  max-width: 100%;
}

.atl-v2-shell {
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}

.atl-v2-skip {
  background: var(--atl2-peach);
  color: var(--atl2-ink) !important;
  font-weight: 800;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -100px;
  z-index: 100000;
}

.atl-v2-skip:focus {
  top: 10px;
}

body.atl-v2-site > .header-wrapper,
body.atl-v2-site > #header-wrapper,
body.atl-v2-site #footer-wrapper,
body.atl-v2-site .page-head {
  display: none !important;
}

.atl-v2-header {
  background: rgba(255, 255, 255, 0.97);
  border-top: 5px solid var(--atl2-pine);
  box-shadow: 0 1px 0 rgba(20, 61, 54, 0.13);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.admin-bar .atl-v2-header {
  top: 32px;
}

.atl-v2-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 82px;
}

.atl-v2-header__brand {
  display: inline-flex;
  text-decoration: none;
}

.atl-v2-brand {
  align-items: center;
  color: var(--atl2-pine);
  display: inline-flex;
  gap: 11px;
}

.atl-v2-brand img {
  display: block;
  height: 48px;
  width: 42px;
}

.atl-v2-brand__words {
  align-items: baseline;
  display: flex;
  gap: 7px;
  line-height: 1;
  white-space: nowrap;
}

.atl-v2-brand__words strong,
.atl-v2-brand__words span {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  letter-spacing: 0;
}

.atl-v2-brand__words strong {
  color: var(--atl2-pine);
  font-weight: 800;
}

.atl-v2-brand__words span {
  color: var(--atl2-brick);
  font-weight: 500;
}

.atl-v2-nav {
  align-items: center;
  display: flex;
}

.atl-v2-menu {
  align-items: center;
  display: flex;
  gap: 4px;
}

.atl-v2-menu > a {
  border-radius: 4px;
  color: var(--atl2-ink) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 13px;
  text-decoration: none;
}

.atl-v2-menu > a:hover,
.atl-v2-menu > a:focus-visible {
  background: var(--atl2-sky-light);
  color: var(--atl2-pine) !important;
}

.atl-v2-menu > .atl-v2-menu__cta {
  background: var(--atl2-pine);
  color: #fff !important;
  margin-left: 10px;
  padding-left: 17px;
  padding-right: 17px;
}

.atl-v2-menu > .atl-v2-menu__cta:hover,
.atl-v2-menu > .atl-v2-menu__cta:focus-visible {
  background: var(--atl2-brick);
  color: #fff !important;
}

.atl-v2-menu-toggle {
  align-items: center;
  background: var(--atl2-pine);
  border: 0;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.atl-v2-menu-toggle > span:not(.screen-reader-text) {
  background: #fff;
  display: block;
  height: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
  width: 20px;
}

.atl-v2-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.atl-v2-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.atl-v2-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

#atl-v2-content {
  height: 0;
  outline: none;
}

.atl-v2-home-page #map-head,
.atl-v2-home-page .advance-search.rh_classic_main_search,
.atl-v2-home-page .main > .property-items,
.atl-v2-home-page .main > .pagination,
.atl-v2-home-page .home-recent-posts {
  display: none !important;
}

.atl-v2-home-page .main-wrapper > .container,
.atl-v2-guide-page .main-wrapper > .container,
.atl-neighborhood-directory-page .main-wrapper > .container,
.atl-v2-contact-page .main-wrapper > .container,
.atl-v2-home-page .main-wrapper .row,
.atl-v2-guide-page .main-wrapper .row,
.atl-neighborhood-directory-page .main-wrapper .row,
.atl-v2-contact-page .main-wrapper .row,
.atl-v2-home-page .main-wrapper .span12,
.atl-v2-guide-page .main-wrapper .span12,
.atl-neighborhood-directory-page .main-wrapper .span12,
.atl-v2-contact-page .main-wrapper .span12,
.atl-v2-home-page .main-wrapper .main,
.atl-v2-guide-page .main-wrapper .main,
.atl-neighborhood-directory-page .main-wrapper .main,
.atl-v2-contact-page .main-wrapper .main,
.atl-v2-home-page .main-wrapper .main-wrap,
.atl-v2-guide-page .main-wrapper .main-wrap,
.atl-neighborhood-directory-page .main-wrapper .main-wrap,
.atl-v2-contact-page .main-wrapper .main-wrap {
  box-sizing: border-box;
  float: none;
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

.atl-v2-home-page .main-wrapper .inner-wrapper,
.atl-v2-guide-page .main-wrapper .inner-wrapper,
.atl-neighborhood-directory-page .main-wrapper .inner-wrapper,
.atl-v2-contact-page .main-wrapper .inner-wrapper {
  margin: 0;
  padding: 0;
}

body.atl-v2-home-page .container.contents.single,
body.atl-v2-guide-page .container.contents.single,
body.atl-neighborhood-directory-page .container.contents.single,
body.atl-v2-contact-page .container.contents.single,
body.atl-v2-home-page .contents.single,
body.atl-v2-guide-page .contents.single,
body.atl-neighborhood-directory-page .contents.single,
body.atl-v2-contact-page .contents.single {
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

body.atl-v2-home-page .contents.single > .row,
body.atl-v2-guide-page .contents.single > .row,
body.atl-neighborhood-directory-page .contents.single > .row,
body.atl-v2-contact-page .contents.single > .row,
body.atl-v2-home-page .main-wrap.span8,
body.atl-v2-guide-page .main-wrap.span8,
body.atl-neighborhood-directory-page .main-wrap.span8,
body.atl-v2-contact-page .main-wrap.span8,
body.atl-v2-home-page .main-wrap.span12,
body.atl-v2-guide-page .main-wrap.span12,
body.atl-neighborhood-directory-page .main-wrap.span12,
body.atl-v2-contact-page .main-wrap.span12,
body.atl-v2-home-page .main.page-main,
body.atl-v2-guide-page .main.page-main,
body.atl-neighborhood-directory-page .main.page-main,
body.atl-v2-contact-page .main.page-main {
  border: 0 !important;
  box-sizing: border-box;
  float: none;
  margin: 0;
  max-width: none;
  padding: 0;
  width: 100%;
}

body.atl-v2-home-page .post-content,
body.atl-v2-guide-page .post-content,
body.atl-neighborhood-directory-page .post-content,
body.atl-v2-contact-page .post-content {
  margin: 0;
  padding: 0;
}

.atl-v2-home-page .main-wrapper .post,
.atl-v2-guide-page .main-wrapper .post,
.atl-neighborhood-directory-page .main-wrapper .post,
.atl-v2-contact-page .main-wrapper .post,
.atl-v2-home-page .main-wrapper .post-content,
.atl-v2-guide-page .main-wrapper .post-content,
.atl-neighborhood-directory-page .main-wrapper .post-content,
.atl-v2-contact-page .main-wrapper .post-content {
  margin: 0;
  padding: 0;
}

.atl-v2-home-page .sidebar-wrap,
.atl-v2-guide-page .sidebar-wrap,
.atl-neighborhood-directory-page .sidebar-wrap,
.atl-v2-contact-page .sidebar-wrap,
.atl-v2-home-page .post-header,
.atl-v2-guide-page .post-header,
.atl-neighborhood-directory-page .post-header,
.atl-v2-contact-page .post-header {
  display: none !important;
}

.atl-v2-kicker {
  color: var(--atl2-brick);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.atl-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.atl-v2-button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  text-decoration: none;
}

.atl-v2-button--peach {
  background: var(--atl2-peach);
  color: var(--atl2-ink) !important;
}

.atl-v2-button--peach:hover,
.atl-v2-button--peach:focus-visible {
  background: var(--atl2-peach-light);
}

.atl-v2-button--glass {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.76);
  color: #fff !important;
}

.atl-v2-button--glass:hover,
.atl-v2-button--glass:focus-visible {
  background: #fff;
  color: var(--atl2-pine) !important;
}

.atl-v2-button--pine {
  background: var(--atl2-pine);
  color: #fff !important;
}

.atl-v2-button--pine:hover,
.atl-v2-button--pine:focus-visible {
  background: var(--atl2-pine-dark);
}

.atl-v2-home-hero,
.atl-v2-guide-hero {
  background-image: linear-gradient(90deg, rgba(7, 31, 28, 0.92) 0%, rgba(9, 36, 32, 0.72) 50%, rgba(9, 36, 32, 0.22) 100%), var(--atl-v2-hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  min-height: 670px;
  position: relative;
}

.atl-v2-home-hero__content,
.atl-v2-guide-hero__content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 670px;
  padding-bottom: 94px;
  padding-top: 86px;
}

.atl-v2-home-hero h1,
.atl-v2-guide-hero h1,
.atl-v2-directory-hero h1,
.atl-v2-contact > header h1 {
  color: #fff;
  font-size: 72px;
  margin: 0 0 22px;
  max-width: 820px;
}

body.atl-v2-site .atl-v2-home-hero h1,
body.atl-v2-site .atl-v2-guide-hero h1 {
  color: #fff;
}

.atl-v2-home-hero__content > p:not(.atl-v2-kicker),
.atl-v2-guide-hero__content > p:not(.atl-v2-kicker) {
  font-size: 20px;
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

.atl-v2-home-hero .atl-v2-kicker,
.atl-v2-guide-hero .atl-v2-kicker,
.atl-v2-band--pine .atl-v2-kicker,
.atl-v2-band--brick .atl-v2-kicker {
  color: var(--atl2-peach-light);
}

.atl-v2-credit {
  color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
}

.atl-v2-credit a {
  color: inherit !important;
  text-decoration: underline;
}

.atl-v2-home-hero > .atl-v2-credit,
.atl-v2-guide-hero > .atl-v2-credit {
  bottom: 12px;
  position: absolute;
  right: 18px;
}

.atl-v2-band {
  width: 100%;
}

.atl-v2-band--sky {
  background: var(--atl2-sky);
}

.atl-v2-band--soft {
  background: var(--atl2-soft);
}

.atl-v2-band--pine {
  background: var(--atl2-pine);
  color: #dcece8;
}

.atl-v2-band--brick {
  background: var(--atl2-brick);
  color: #fff1e9;
}

body.atl-v2-site .atl-v2-band--pine h1,
body.atl-v2-site .atl-v2-band--pine h2,
body.atl-v2-site .atl-v2-band--pine h3,
body.atl-v2-site .atl-v2-band--brick h2,
body.atl-v2-site .atl-v2-band--brick h3 {
  color: #fff;
}

.atl-v2-intro-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding-bottom: 58px;
  padding-top: 58px;
}

.atl-v2-intro-grid h2 {
  font-size: 42px;
  margin: 0;
  max-width: 580px;
}

.atl-v2-intro-grid > p {
  color: #304945;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.atl-v2-section {
  padding-bottom: 88px;
  padding-top: 88px;
  scroll-margin-top: 96px;
}

.atl-v2-section-heading {
  align-items: end;
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 36px;
}

.atl-v2-section-heading h2 {
  font-size: 44px;
  margin: 0;
  max-width: 780px;
}

.atl-v2-section-heading > a,
.atl-v2-related > .atl-v2-section-heading > a {
  color: var(--atl2-pine) !important;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 800;
  padding-bottom: 3px;
  text-decoration: none;
}

.atl-v2-section-heading > a:hover,
.atl-v2-section-heading > a:focus-visible {
  text-decoration: underline;
}

.atl-v2-guide-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.atl-v2-guide-card {
  background: #fff;
  border: 1px solid var(--atl2-line);
  border-radius: 6px;
  box-shadow: 0 7px 24px rgba(20, 61, 54, 0.07);
  min-width: 0;
  overflow: hidden;
}

.atl-v2-guide-card[hidden] {
  display: none;
}

.atl-v2-guide-card__image {
  aspect-ratio: 4 / 3;
  background: var(--atl2-sky-light);
  display: block;
  overflow: hidden;
}

.atl-v2-guide-card__image img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
  width: 100%;
}

.atl-v2-guide-card:hover .atl-v2-guide-card__image img {
  transform: scale(1.025);
}

.atl-v2-guide-card__body {
  padding: 23px;
}

.atl-v2-guide-card__body h3 {
  font-size: 29px;
  margin: 0 0 10px;
}

.atl-v2-guide-card__body h3 a {
  color: var(--atl2-ink) !important;
  text-decoration: none;
}

.atl-v2-guide-card__body > p:not(.atl-v2-kicker) {
  line-height: 1.65;
  margin: 0;
  min-height: 80px;
}

.atl-v2-guide-card__meta {
  border-top: 1px solid var(--atl2-line);
  color: var(--atl2-muted);
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 12px;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 14px;
}

.atl-v2-service-grid {
  align-items: start;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  padding-bottom: 82px;
  padding-top: 82px;
}

.atl-v2-service-grid h2 {
  font-size: 48px;
  margin: 0;
  max-width: 520px;
}

.atl-v2-service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.atl-v2-service-list > div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 20px;
  grid-template-columns: 110px minmax(0, 1fr);
  padding: 20px 0;
}

.atl-v2-service-list strong {
  color: #fff !important;
}

.atl-v2-service-grid > .atl-v2-button {
  grid-column: 2;
  justify-self: start;
  margin-top: -28px;
}

.atl-v2-faq-list {
  border-top: 1px solid var(--atl2-line);
}

.atl-v2-faq-list details {
  border-bottom: 1px solid var(--atl2-line);
}

.atl-v2-faq-list summary {
  align-items: center;
  color: var(--atl2-ink);
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  justify-content: space-between;
  list-style: none;
  padding: 23px 0;
}

.atl-v2-faq-list summary::-webkit-details-marker {
  display: none;
}

.atl-v2-faq-list summary span {
  color: var(--atl2-brick);
  font-size: 28px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.atl-v2-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.atl-v2-faq-list details > div {
  max-width: 860px;
  padding: 0 52px 24px 0;
}

.atl-v2-faq-list details > div p {
  margin: 0;
}

.atl-v2-directory-hero > .atl-v2-shell,
.atl-v2-contact > header > .atl-v2-shell {
  padding-bottom: 82px;
  padding-top: 82px;
}

.atl-v2-directory-hero h1,
.atl-v2-contact > header h1 {
  font-size: 62px;
  margin-bottom: 18px;
}

.atl-v2-directory-hero .atl-v2-shell > p:not(.atl-v2-kicker),
.atl-v2-contact > header .atl-v2-shell > p:not(.atl-v2-kicker) {
  font-size: 19px;
  margin: 0;
  max-width: 760px;
}

.atl-v2-filter {
  align-items: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: var(--atl2-shadow);
  color: var(--atl2-pine);
  display: flex;
  gap: 12px;
  margin-top: 30px;
  max-width: 560px;
  padding: 0 16px;
}

.atl-v2-filter > span[aria-hidden="true"] {
  font-size: 22px;
  transform: rotate(-20deg);
}

.atl-v2-filter input {
  background: transparent;
  border: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box;
  color: var(--atl2-ink);
  font-size: 16px;
  height: 56px;
  margin: 0;
  outline: none;
  padding: 0;
  width: 100%;
}

.atl-v2-empty {
  border: 1px solid var(--atl2-line);
  margin: 24px 0 0;
  padding: 22px;
  text-align: center;
}

.atl-v2-guide-hero {
  min-height: 610px;
}

.atl-v2-guide-hero__content {
  min-height: 610px;
}

.atl-v2-guide-hero h1 {
  font-size: 78px;
}

.atl-v2-guide-nav {
  background: #fff;
  border-bottom: 1px solid var(--atl2-line);
  position: sticky;
  top: 87px;
  z-index: 900;
}

.admin-bar .atl-v2-guide-nav {
  top: 119px;
}

.atl-v2-guide-nav > div {
  display: flex;
  overflow-x: auto;
}

.atl-v2-guide-nav a {
  border-bottom: 3px solid transparent;
  color: var(--atl2-ink) !important;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  padding: 19px 21px 16px;
  text-decoration: none;
}

.atl-v2-guide-nav a:hover,
.atl-v2-guide-nav a:focus-visible {
  border-bottom-color: var(--atl2-brick);
  color: var(--atl2-pine) !important;
}

.atl-v2-quick-facts {
  background: var(--atl2-pine-dark);
}

.atl-v2-quick-facts > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atl-v2-quick-facts > div > div {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding: 27px 24px;
}

.atl-v2-quick-facts > div > div:last-child {
  border-right: 0;
}

.atl-v2-quick-facts span,
.atl-v2-quick-facts strong {
  display: block;
}

.atl-v2-quick-facts span {
  color: #9fbbb5;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.atl-v2-quick-facts strong {
  color: #fff;
  font-size: 17px;
  margin-top: 5px;
}

.atl-v2-overview {
  display: grid;
  gap: 82px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.atl-v2-overview h2 {
  font-size: 48px;
  margin: 0 0 23px;
}

.atl-v2-overview p {
  font-size: 17px;
  line-height: 1.82;
  margin: 0 0 20px;
}

.atl-v2-overview .atl-v2-lead {
  color: var(--atl2-ink);
  font-size: 20px;
}

.atl-v2-overview aside {
  align-self: start;
  border-left: 5px solid var(--atl2-peach);
  padding: 5px 0 5px 30px;
}

.atl-v2-overview aside h2 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.atl-v2-overview aside ul {
  list-style: none;
  margin: 0;
}

.atl-v2-overview aside li {
  border-bottom: 1px solid var(--atl2-line);
  padding: 13px 0;
}

.atl-v2-property-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.atl-v2-property-card {
  background: #fff;
  border: 1px solid var(--atl2-line);
  border-radius: 6px;
  overflow: hidden;
}

.atl-v2-property-card__image {
  aspect-ratio: 3 / 2;
  background: var(--atl2-sky-light);
  display: block;
}

.atl-v2-property-card__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.atl-v2-property-card > div {
  padding: 18px;
}

.atl-v2-property-card > div > strong {
  color: var(--atl2-brick);
  font-size: 17px;
}

.atl-v2-property-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  margin: 5px 0 7px;
}

.atl-v2-property-card h3 a {
  color: var(--atl2-ink) !important;
  text-decoration: none;
}

.atl-v2-property-card p {
  color: var(--atl2-muted);
  font-size: 12px;
  margin: 0;
}

.atl-v2-listing-empty {
  align-items: center;
  background: #fff;
  border: 1px solid var(--atl2-line);
  border-left: 5px solid var(--atl2-peach);
  display: flex;
  gap: 42px;
  justify-content: space-between;
  padding: 30px 32px;
}

.atl-v2-listing-empty h3 {
  font-size: 27px;
  margin: 0 0 6px;
}

.atl-v2-listing-empty p {
  margin: 0;
  max-width: 720px;
}

.atl-v2-disclaimer,
.atl-v2-reviewed {
  color: var(--atl2-muted);
  font-size: 12px;
  margin: 15px 0 0;
}

.atl-v2-section-intro {
  color: var(--atl2-muted);
  font-size: 17px;
  margin: -13px 0 36px;
  max-width: 800px;
}

.atl-v2-place-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.atl-v2-place-card {
  border: 1px solid var(--atl2-line);
  border-radius: 6px;
  min-width: 0;
  overflow: hidden;
}

.atl-v2-place-card figure {
  aspect-ratio: 4 / 3;
  background: var(--atl2-sky-light);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.atl-v2-place-card figure img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.atl-v2-place-card figure .atl-v2-credit {
  background: rgba(11, 42, 38, 0.86);
  bottom: 0;
  left: 0;
  padding: 5px 8px;
  position: absolute;
}

.atl-v2-place-card > div {
  padding: 23px;
}

.atl-v2-place-card h3 {
  font-size: 28px;
  margin: 0 0 10px;
}

.atl-v2-place-card > div > p:last-child {
  margin: 0;
}

.atl-v2-buyer-grid {
  display: grid;
  gap: 76px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  padding-bottom: 82px;
  padding-top: 82px;
}

.atl-v2-buyer-grid h2 {
  font-size: 48px;
  margin: 0 0 20px;
}

.atl-v2-buyer-grid p {
  font-size: 17px;
  margin: 0;
  max-width: 700px;
}

.atl-v2-resource-list {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.atl-v2-resource-list a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff !important;
  display: block;
  padding: 17px 0;
  text-decoration: none;
}

.atl-v2-resource-list strong,
.atl-v2-resource-list span {
  display: block;
}

.atl-v2-resource-list span {
  color: #ffd5cd;
  font-size: 12px;
  margin-top: 3px;
}

.atl-v2-related {
  border-top: 1px solid var(--atl2-line);
}

.atl-v2-related > div {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atl-v2-related > div > a {
  border: 1px solid var(--atl2-line);
  border-radius: 4px;
  color: var(--atl2-ink) !important;
  display: block;
  padding: 15px 17px;
  text-decoration: none;
}

.atl-v2-related > div > a:hover,
.atl-v2-related > div > a:focus-visible {
  border-color: var(--atl2-pine);
}

.atl-v2-related span,
.atl-v2-related small {
  display: block;
}

.atl-v2-related span {
  font-weight: 800;
}

.atl-v2-related small {
  color: var(--atl2-muted);
  margin-top: 2px;
}

.atl-v2-contact-grid {
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
}

.atl-v2-contact-grid h2 {
  font-size: 48px;
  margin: 0 0 20px;
}

.atl-v2-contact-grid > div > p:not(.atl-v2-kicker) {
  font-size: 17px;
}

.atl-v2-contact-lines {
  border-top: 1px solid var(--atl2-line);
  margin-top: 30px;
}

.atl-v2-contact-lines a {
  border-bottom: 1px solid var(--atl2-line);
  color: var(--atl2-ink) !important;
  display: grid;
  gap: 20px;
  grid-template-columns: 80px minmax(0, 1fr);
  padding: 16px 0;
  text-decoration: none;
}

.atl-v2-contact-form {
  background: var(--atl2-soft);
  border-top: 5px solid var(--atl2-peach);
  padding: 30px;
}

.atl-v2-contact-form ol,
.atl-v2-contact-form ul {
  list-style: none;
  margin: 0;
}

.atl-v2-contact-form li,
.atl-v2-contact-form p {
  margin: 0 0 16px;
}

.atl-v2-contact-form label {
  color: var(--atl2-ink);
  font-size: 13px;
  font-weight: 800;
}

.atl-v2-contact-form input[type="text"],
.atl-v2-contact-form input[type="email"],
.atl-v2-contact-form input[type="tel"],
.atl-v2-contact-form textarea {
  background: #fff;
  border: 1px solid var(--atl2-line);
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 5px;
  padding: 11px;
  width: 100%;
}

.atl-v2-contact-form input[type="submit"] {
  background: var(--atl2-pine);
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-weight: 800;
  min-height: 48px;
  padding: 0 22px;
}

.atl-v2-footer {
  background: var(--atl2-pine-dark);
  border-top: 7px solid var(--atl2-peach);
  color: #afc7c1;
}

.atl-v2-footer__grid {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(250px, 1.3fr) minmax(135px, 0.7fr) minmax(145px, 0.8fr) minmax(240px, 1.1fr);
  padding-bottom: 58px;
  padding-top: 68px;
}

.atl-v2-brand--footer .atl-v2-brand__words strong,
.atl-v2-brand--footer .atl-v2-brand__words span {
  color: #fff;
}

.atl-v2-footer__brand > a {
  text-decoration: none;
}

.atl-v2-footer__brand p {
  line-height: 1.7;
  margin: 22px 0;
  max-width: 320px;
}

.atl-v2-footer h2 {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.atl-v2-footer nav a,
.atl-v2-footer__contact > a:not(.atl-v2-button),
.atl-v2-footer__phone {
  color: #c9dad6 !important;
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
  text-decoration: none;
}

.atl-v2-footer a:hover,
.atl-v2-footer a:focus-visible {
  color: #fff !important;
  text-decoration: underline;
}

.atl-v2-footer__contact p {
  line-height: 1.7;
  margin: 0 0 13px;
}

.atl-v2-footer__contact .atl-v2-button {
  display: inline-flex;
  margin-top: 12px;
}

.atl-v2-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  font-size: 11px;
  gap: 24px;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 24px;
}

@media (max-width: 1040px) {
  .atl-v2-menu > a {
    padding-left: 9px;
    padding-right: 9px;
  }

  .atl-v2-guide-grid,
  .atl-v2-property-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atl-v2-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .admin-bar .atl-v2-header {
    top: 46px;
  }

  .atl-v2-menu-toggle {
    display: flex;
  }

  .atl-v2-menu {
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--atl2-line);
    box-shadow: var(--atl2-shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    position: absolute;
    right: 24px;
    top: 74px;
    width: min(340px, calc(100vw - 48px));
  }

  .atl-v2-menu.is-open {
    display: flex;
  }

  .atl-v2-menu > a {
    border-bottom: 1px solid var(--atl2-line);
    border-radius: 0;
    min-height: 46px;
    padding: 12px;
  }

  .atl-v2-menu > .atl-v2-menu__cta {
    border: 0;
    border-radius: 4px;
    margin: 8px 0 0;
  }

  .atl-v2-home-hero,
  .atl-v2-home-hero__content {
    min-height: 620px;
  }

  .atl-v2-home-hero h1,
  .atl-v2-guide-hero h1 {
    font-size: 60px;
  }

  .atl-v2-intro-grid,
  .atl-v2-service-grid,
  .atl-v2-overview,
  .atl-v2-buyer-grid,
  .atl-v2-contact-grid {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .atl-v2-service-grid > .atl-v2-button {
    grid-column: auto;
    margin-top: -18px;
  }

  .atl-v2-place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atl-v2-place-card:last-child {
    grid-column: 1 / -1;
  }

  .atl-v2-related > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .admin-bar .atl-v2-header {
    top: 46px;
  }
}

@media (max-width: 680px) {
  .atl-v2-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .atl-v2-header__inner {
    min-height: 70px;
  }

  .atl-v2-brand {
    gap: 7px;
  }

  .atl-v2-brand img {
    height: 40px;
    width: 35px;
  }

  .atl-v2-brand__words {
    display: block;
  }

  .atl-v2-brand__words strong,
  .atl-v2-brand__words span {
    display: block;
    font-size: 18px;
  }

  .atl-v2-brand__words span {
    font-size: 12px;
    margin-top: 3px;
    text-transform: uppercase;
  }

  .atl-v2-menu {
    right: 14px;
    top: 64px;
    width: calc(100vw - 28px);
  }

  .atl-v2-home-hero,
  .atl-v2-guide-hero {
    background-position: 58% center;
    min-height: 550px;
  }

  .atl-v2-home-hero__content,
  .atl-v2-guide-hero__content {
    min-height: 550px;
    padding-bottom: 65px;
    padding-top: 62px;
  }

  .atl-v2-home-hero h1,
  .atl-v2-guide-hero h1,
  .atl-v2-directory-hero h1,
  .atl-v2-contact > header h1 {
    font-size: 44px;
  }

  .atl-v2-home-hero__content > p:not(.atl-v2-kicker),
  .atl-v2-guide-hero__content > p:not(.atl-v2-kicker) {
    font-size: 17px;
  }

  .atl-v2-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .atl-v2-button {
    width: 100%;
  }

  .atl-v2-intro-grid,
  .atl-v2-service-grid {
    padding-bottom: 52px;
    padding-top: 52px;
  }

  .atl-v2-intro-grid h2,
  .atl-v2-service-grid h2,
  .atl-v2-overview h2,
  .atl-v2-buyer-grid h2,
  .atl-v2-contact-grid h2,
  .atl-v2-section-heading h2 {
    font-size: 35px;
  }

  .atl-v2-section {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .atl-v2-section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }

  .atl-v2-guide-grid,
  .atl-v2-property-grid,
  .atl-v2-place-grid,
  .atl-v2-related > div,
  .atl-v2-footer__grid {
    grid-template-columns: 1fr;
  }

  .atl-v2-guide-card__body > p:not(.atl-v2-kicker) {
    min-height: 0;
  }

  .atl-v2-place-card:last-child {
    grid-column: auto;
  }

  .atl-v2-guide-nav {
    top: 75px;
  }

  .admin-bar .atl-v2-guide-nav {
    top: 121px;
  }

  .atl-v2-guide-nav > div {
    padding-left: 0;
    padding-right: 0;
  }

  .atl-v2-guide-nav a {
    padding-left: 18px;
    padding-right: 18px;
  }

  .atl-v2-quick-facts > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atl-v2-quick-facts > div > div:nth-child(2) {
    border-right: 0;
  }

  .atl-v2-quick-facts > div > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .atl-v2-overview aside {
    border-left: 0;
    border-top: 5px solid var(--atl2-peach);
    padding: 24px 0 0;
  }

  .atl-v2-listing-empty {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .atl-v2-service-list > div {
    grid-template-columns: 1fr;
  }

  .atl-v2-directory-hero > .atl-v2-shell,
  .atl-v2-contact > header > .atl-v2-shell,
  .atl-v2-buyer-grid {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .atl-v2-footer__grid {
    gap: 38px;
    padding-bottom: 46px;
    padding-top: 52px;
  }

  .atl-v2-footer__contact .atl-v2-button {
    width: 100%;
  }

  .atl-v2-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .atl-v2-guide-card__image img,
  .atl-v2-menu-toggle > span:not(.screen-reader-text),
  .atl-v2-faq-list summary span {
    transition: none;
  }
}
