<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.Locations.AIT-Block {
  --border-color: var(--red);
  --columns: 1;
  container-type: inline-size;
  container-name: locations;
}

.Locations.AIT-Block,
.Locations.AIT-Block .location,
.Locations.AIT-Block .location-top,
.Locations.AIT-Block .location-details,
.Locations.AIT-Block .location-bottom,
.Locations.AIT-Block .menu-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Locations.AIT-Block .location h1,
.Locations.AIT-Block .location h2,
.Locations.AIT-Block .location h3,
.Locations.AIT-Block .location h4,
.Locations.AIT-Block .location h5,
.Locations.AIT-Block .location h6,
.Locations.AIT-Block .location p {
  margin: 0;
}

.Locations.AIT-Block .location-top,
.Locations.AIT-Block .location-bottom {
  border: 0.5rem solid var(--border-color);
  width: 100%;
  transition: border-color 0.3s ease;
}

.Locations.AIT-Block .locations-wrapper,
.Locations.AIT-Block .location-bottom,
.Locations.AIT-Block .menu-container {
  gap: 1rem;
}

.Locations.AIT-Block .locations-wrapper {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
}

.Locations.AIT-Block .location {
  text-align: center;
}

.Locations.AIT-Block .location a {
  text-decoration: none;
}

.Locations.AIT-Block .location-top {
  background-color: var(--red);
  border-bottom: 0;
  color: var(--white);
}

.Locations.AIT-Block .location-top a {
  color: var(--white);
  transition: text-shadow 0.3s ease;
  &amp;:is(:hover, :focus) {
    text-shadow: 0 0 0.5em var(--white);
  }
}

.Locations.AIT-Block .location-details {
  padding: 0.5rem 1rem 1rem;
}

.Locations.AIT-Block .location-name {
  text-transform: uppercase;
}

.Locations.AIT-Block .location-address {
  font-weight: 400;
}

.Locations.AIT-Block .location:has(.location-image:is(:hover, :focus)) {
  .location-bottom {
    --border-color: var(--red);
  }

  .location-archive-link {
    color: var(--green);
  }
}

.Locations.AIT-Block .location-bottom {
  --border-color: var(--gray);
  background-color: var(--gray);
  border-top: 0;
  color: var(--black);
  padding: 1rem 0.5rem 0.5rem;
}

.Locations.AIT-Block .location-bottom a {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.Locations.AIT-Block .location-bottom a:is(:hover, :focus) {
  color: var(--green);
}

.Locations.AIT-Block .location-bottom .menu-title {
  text-transform: uppercase;
}

.Locations.AIT-Block .location-bottom .menu-container p {
  font-style: italic;
}

.Locations.AIT-Block .location-bottom .menu-container strong {
  font-weight: 500;
  font-variant: small-caps;
  font-style: normal;
}

@container locations (min-width: 768px) {
  .Locations.AIT-Block .locations-wrapper {
    --columns: 2;
  }

  /* Make last location span two columns when there's an odd number */
  .Locations.AIT-Block
    .locations-wrapper:has(.location:last-child:nth-child(odd))
    .location:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
  }
}
</pre></body></html>