.group-main .mv-main {
  max-width: 1360px;
  margin: auto;
}

.location-section {
  margin-bottom: 5rem;

  @media (width <= 767px) {
    margin-bottom: 3rem;
  }
}

.location-section:first-of-type {
  padding-top: 0;
}

.location-country-title {
  position: relative;
  padding: 1rem 1rem 1rem 1.5rem;
  padding-left: 1rem;
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  background-color: var(--color-gray-bg);

  @media (width <= 767px) {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}

.location-country-title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: '';
  background-color: var(--color-accent);
}

.location-plant-name {
  font-weight: bold;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;

  @media (width <= 767px) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.location-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;

  @media (width <= 767px) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.location-item.full-width {
  grid-column: 1 / -1;
}

.location-name {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;

  @media (width <= 767px) {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }
}

.location-address {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-black);
}

.location-sub-info {
  margin-top: 1.5rem;
}

.location-sub-info p {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.location-sub-info p:last-child {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: 1rem;
}

.map-area {
  height: 760px;
  margin-bottom: 80px;
}

.map-area iframe {
  width: 100%;
  height: 100%;
}

@media (width <= 1439px) {
  .map-area {
    position: relative;
    height: auto;
    padding-bottom: 52.78%;
  }

  .map-area iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (width <= 767px) {
  .map-area {
    margin-bottom: 40px;
  }

  .map-area iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.gap-row-large {
  row-gap: 5rem;
  margin-top: 5rem;

  @media (width <= 767px) {
    row-gap: 3rem;
    margin-top: 3rem;
  }
}

.location-country-title.small-title {
  margin-bottom: 2rem;
}

.gap-row-large:last-child {
  margin-bottom: 7.5rem;

  @media (width <= 767px) {
    margin-bottom: 3.75rem;
  }
}

.location-item.full-width {
  padding-bottom: 2rem;
  margin-bottom: -1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

@media (width <= 767px) {
  .location-grid.cols-2 {
    grid-template-columns: 1fr;
  }
}
