/**
 * @file
 * Our Locations section component styles.
 */

.locations {
  padding: 4rem 0;
}

.locations__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Eyebrow label with a short cyan underline (matches the section header style). */
.locations__eyebrow {
  display: inline-block;
  position: relative;
  margin-bottom: 2.5rem;
  padding-bottom: 0.85rem;
  color: #6c757d;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.locations__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background-color: var(--pp-cyan, #009CDD);
}

/* One location: text on the left, image on the right. */
.locations__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.locations__item:last-child {
  margin-bottom: 0;
}

.locations__title {
  color: var(--pp-dark-blue, #001A72);
  margin-bottom: 0.25rem;
}

.locations__subtitle {
  color: var(--pp-dark-blue, #001A72);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.locations__body {
  margin-bottom: 0;
}

.locations__media img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .locations {
    padding: 3rem 0;
  }

  .locations__item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
