.news-list-item {
  display: grid;
  grid:
    "teaser title" min-content
    "teaser address" 1fr
    / 250px auto;
  gap: 2px 20px;

  font-size: 15px;
  line-height: 1.2em;
  margin-right: 15px;
}

.news-list-item__teaser img {
  height: 100%;
  width: 100%;
}

.fire-station-list-item__address {
  grid-area: address;
}

.fire-station-location-col {
  position: sticky;
  top: 0px;
  right: 0px;
  height: 100%;
  vertical-align: top;
  width: 450px;
  float: right;
}

.mapLabel {
  color: white;
  font-size: 15px;
  background-color: #ce2029;
  padding: 10px 10px;
  min-height: 17px;
}

.fire-station-location-col iframe {
  height: 450px;
  width: 100%;
}

.getDirectionsContainer {
  background-color: #ce2029;
  padding: 10px 10px;
  min-height: 17px;
  margin-top: -4px;
  font-size: 15px;
}

.getDirectionsLink {
  color: white !important;
  text-decoration: none !important;
}

@media screen and (max-width: 640px) {
  .news-list-item {
    display: flex;
    flex-direction: column;
  }

  .news-list-item__teaser {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 900px) {
  .fire-station-location-col {
    display: none;
  }

  .news-list-item {
    margin-right: 0;
  }
}

@media screen and (max-width: 1400px) {
  .fire-station-location-col {
    width: 300px;
  }

  .fire-station-location-col iframe {
    height: 300px;
    width: 300px;
  }
}

/* Fire Station Page */
.fire-station__info-container {
    display: flow-root;
}

.fire-station__location-container {
    margin-top: 20px;
}

.mapLink {
  color: white;
  text-decoration: none;
  background-color: rgba(0, 43, 90, 0.8);
  padding: 5px 8px;
  display: block;
}

@media screen and (min-width: 780px) {
    article .item-side-img {
        float: right;
        max-width: 23% !important;
        margin-left: 20px;
    }
}

@media screen and (max-width: 780px) {
    article .item-side-img {
        float: none;
        width: 250px;
    }
}