{% set secondary_color = theme.global_colors.secondary.color %}

.office-locations {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.office-locations .location {
  display: flex;
  gap: 40px;
}
.office-locations .location .map-area {
  width: 60%;
}
.office-locations .location .map-area iframe {
  width: 100%;
}
.office-locations .location .content-area {
  width: 40%;
}
.office-locations .location .content-area .title {
  font-weight: bold;
  margin-bottom: 16px;
}
.office-locations .location .content-area .description {
  margin-left: 30px;
  margin-bottom: 12px;
}
.office-locations .location .content-area .contact-options {
  padding: 0;
  list-style: none;
}
.office-locations .location .content-area .contact-options li:not(:last-child) {
  margin-bottom: 12px;
}
.office-locations .location .content-area .contact-options li > * {
  display: flex;
  gap: 10px;
}
.office-locations .location .content-area .contact-options li > * * {
  font-size: 16px;
  line-height: 1.2;
}
.office-locations .location .content-area .contact-options li > * p {
  margin-top: 2px;
}
.office-locations .location .content-area .contact-options li .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
}
.office-locations .location .content-area .contact-options li .icon svg {
  fill: var(--secondary-color);
}
.office-locations .location .content-area .contact-options li .icon * {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .office-locations {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .office-locations .location {
    flex-direction: column;
    gap: 20px;
  }
  .office-locations .location .content-area,
  .office-locations .location .map-area {
    width: 100%;
  }
}
