/* Content — styled after .our-story, with top padding to clear the absolute navbar */
.adr-content {
  padding-block: 6.25rem;
  padding-block-start: 10rem;
}

.adr-content__heading {
  font-size: 1.875rem;
  line-height: calc(2.25 / 1.875);
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(85, 85, 85);
  margin-block-end: 1rem;
}

@media (min-width: 768px) {
  .adr-content {
    padding-block-start: 12rem;
  }
}

.adr-content__inner {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: 1rem;
  color: rgb(119, 119, 119);
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.adr-content__subheading {
  font-size: 1.875rem;
  line-height: calc(2.25 / 1.875);
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(85, 85, 85);
  margin-block-start: 1rem;
}

/* Entities */
.adr-entity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.adr-entity__name {
  font-weight: 600;
  color: rgb(85, 85, 85);
}

.adr-entity__region {
  font-size: 1.5rem;
  line-height: calc(2 / 1.5);
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(85, 85, 85);
}

.adr-content__inner address {
  font-style: normal;
}

.adr-content__inner a {
  color: rgb(178, 0, 0);
  text-decoration: none;
}

.adr-content__inner a:hover {
  text-decoration: underline;
}

/* Other regions grid */
.adr-regions {
  display: grid;
  gap: 1.5rem;
}

/* Divider between the Algarve entity and the region list */
.adr-entity + .adr-content__subheading {
  border-top: 1px solid rgb(230, 230, 230);
  padding-block-start: 1.5rem;
}

@media (min-width: 768px) {
  .adr-regions {
    grid-template-columns: repeat(2, 1fr);
  }
}
