.interactive-locations {
  width: 100%;
  margin: 0;
  padding: clamp(48px, 10vw, 112px) clamp(20px, 6vw, 120px);
  display: flex;
  justify-content: center;
  background: var(--Light-Grey, #f3f4f6);
  box-sizing: border-box;
  color: var(--Main-Green, #395935);
}

@keyframes interactive-locations-intro {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

html.has-scroll-animations .interactive-locations {
  opacity: 0;
  transform: translateY(32px);
  animation: interactive-locations-intro 0.7s ease 0.1s forwards;
}

.interactive-locations__inner {
  width: 100%;
  max-width: var(--Container-container-large, 1280px);
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 64px);
}

.interactive-locations__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.interactive-locations__title {
  margin: 0;
  color: var(--Main-Green, #395935);
  font-family: 'Teachers', 'Inter', system-ui, sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.6px;
  text-transform: none;
}

.interactive-locations__subtitle {
  margin: 0;
  color: var(--Main-Green, #395935);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  line-height: 150%;
}

.interactive-locations__content {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 6vw, 64px);
}

.interactive-locations__map-wrapper {
  width: 100%;
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.interactive-locations__map-js {
  width: 100%;
  height: clamp(320px, 50vw, 600px);
}

.interactive-locations__map-note {
  margin: 0;
  padding: 14px 16px;
  color: rgba(57, 89, 53, 0.9);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  background: rgba(57, 89, 53, 0.06);
  border-top: 1px solid rgba(57, 89, 53, 0.12);
}

.interactive-locations__map-image {
  position: relative;
  width: 100%;
  height: clamp(320px, 50vw, 600px);
  overflow: hidden;
}

.interactive-locations__map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.interactive-locations__map-embed {
  width: 100%;
  height: clamp(320px, 50vw, 600px);
  position: relative;
}

.interactive-locations__map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.interactive-locations__markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.interactive-locations__marker {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--Main-Green, #395935);
  border: 3px solid #ffffff;
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
  left: 0;
  top: 0;
}

.interactive-locations__marker:hover,
.interactive-locations__marker.is-active {
  transform: translate(-50%, -50%) scale(1.2);
  box-shadow: 0 4px 12px rgba(57, 89, 53, 0.4);
}

.interactive-locations__marker-number {
  display: block;
}

.interactive-locations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

.interactive-locations__card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(57, 89, 53, 0.3);
  border-radius: 7px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  transform: translateY(24px);
  animation: interactive-locations-card-fade 0.6s ease forwards;
  cursor: pointer;
  position: relative;
}

.interactive-locations__card--coming-soon {
  border-style: dashed;
  border-color: rgba(57, 89, 53, 0.4);
  background: rgba(255, 255, 255, 0.95);
  opacity: 0.85;
}

.interactive-locations__card--coming-soon:hover {
  opacity: 0.95;
}

.interactive-locations__card-body--blurred {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  position: relative;
}

.interactive-locations__card-body--blurred::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.interactive-locations__card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--Main-Green, #395935);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 0;
  border: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(57, 89, 53, 0.3);
  z-index: 1;
  animation: interactive-locations-card-badge-pulse 2s ease-in-out infinite;
}

.interactive-locations__card:nth-child(1) {
  animation-delay: 0.1s;
}

.interactive-locations__card:nth-child(2) {
  animation-delay: 0.15s;
}

.interactive-locations__card:nth-child(3) {
  animation-delay: 0.2s;
}

.interactive-locations__card:nth-child(4) {
  animation-delay: 0.25s;
}

.interactive-locations__card:nth-child(5) {
  animation-delay: 0.3s;
}

.interactive-locations__card:nth-child(6) {
  animation-delay: 0.35s;
}

.interactive-locations__card:nth-child(n+7) {
  animation-delay: 0.4s;
}

@keyframes interactive-locations-card-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes interactive-locations-card-badge-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(57, 89, 53, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(57, 89, 53, 0.4);
  }
}

.interactive-locations__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--Main-Green, #395935);
}

.interactive-locations__card--coming-soon:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(57, 89, 53, 0.2);
  border-color: rgba(57, 89, 53, 0.5);
}

.interactive-locations__card.is-active {
  border-color: var(--Main-Green, #395935);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.interactive-locations__card--coming-soon.is-active {
  border-color: rgba(57, 89, 53, 0.6);
  box-shadow: 0 4px 16px rgba(57, 89, 53, 0.25);
}

.interactive-locations__card.is-hidden {
  display: none;
}

.interactive-locations__card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.interactive-locations__card-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interactive-locations__card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.interactive-locations__card-title-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.interactive-locations__card-title {
  margin: 0;
  color: var(--Main-Green, #395935);
  font-family: 'Teachers', 'Inter', system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.32px;
}

.interactive-locations__card-marker {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--Main-Green, #395935);
  color: #ffffff;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.interactive-locations__card-marker:hover {
  transform: scale(1.1);
}

.interactive-locations__card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.interactive-locations__card-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.interactive-locations__card-label {
  color: var(--Main-Green, #395935);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.interactive-locations__card-text {
  margin: 0;
  color: var(--Main-Green, #395935);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.interactive-locations__card-detail--hours {
  gap: 8px;
}

.interactive-locations__card-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.interactive-locations__card-hours-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interactive-locations__card-hours-item {
  color: var(--Main-Green, #395935);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.interactive-locations__card-hours-item:not(:last-child)::after {
  content: ',';
  margin-left: 2px;
}

.interactive-locations__card-link {
  color: var(--Main-Green, #395935);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 89, 53, 0.3);
  transition: border-color 0.2s ease;
}

.interactive-locations__card-link:hover {
  border-color: var(--Main-Green, #395935);
}

.interactive-locations__card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(57, 89, 53, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.interactive-locations__card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--Main-Green, #395935);
  border-radius: 0;
  color: var(--Main-Green, #395935);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background 0.2s ease, color 0.2s ease;
}

.interactive-locations__card-button:hover {
  background: var(--Main-Green, #395935);
  color: #ffffff;
}

.interactive-locations__card-button--learn-more {
  text-transform: none;
  letter-spacing: 0;
}

.interactive-locations__card-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.interactive-locations__empty {
  text-align: center;
  color: var(--Main-Green, #395935);
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  padding: 48px 20px;
}

@media (max-width: 720px) {
  .interactive-locations__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .interactive-locations__card {
    padding: 20px;
  }

  .interactive-locations__map-image,
  .interactive-locations__map-embed,
  .interactive-locations__map-js {
    height: clamp(280px, 60vw, 400px);
  }

  .interactive-locations__marker {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}
