@charset "utf-8";
/* CSS Document */

/*  ///  ----------  LOCATION DIV CSS  ----------  ///  */
#mapLoc {
  width: 575px;
  height: max-content;
}

#mapLoc {
  position: relative;
  display: grid;
  grid-template: "head"
    "info"
    "social"
    "body"
    / 1fr;
  background: white;
  width: min(550px, 100%);
  height: auto;
  padding: 1rem 2.5rem 2rem 2rem;
}

#mapLoc :is(h1, h2) {
  margin-bottom: .5rem;
}

#mapLoc address {
  padding-top: 1rem;
}

#mapLoc .mapButtons a {
  text-decoration: none;
  padding: 0.3em 0.7em;
}

.mapHead {
  grid-area: head;
}

.mapInfo {
  grid-area: info;
}

.mapSoc {
  grid-area: social;
}

.mapBody {
  grid-area: body;
}


.mapHead {
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
}

#mapLoc .mapHead img {
  align-self: flex-start;
  width: 85px;
  object-fit: scale-down;
  margin-right: 1rem;
}

#mapLoc .headers {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  width: 100%;
}

#mapLoc .contactList {
  --od-c: white;
  display: grid;
  grid-template-rows: auto;
  justify-content: center;
  margin-bottom: 2rem;
}

#mapLoc .contactCard {
  width: -moz-fit-content;
  width: fit-content;
  justify-self: center;
}

#mapLoc .mapButtons {
  display: flex;
  flex-flow: row wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

#mapLoc button {
  --od-c: white;
  border-top: 1.5px solid var(--od-c-red);
  width: -moz-fit-content;
  width: fit-content;
}

#mapLoc .mapSoc {
  --od-ff: var(--od-ff-body);
  --of-fz: var(--od-fz-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  font-size: var(--od-fz);
  width: 100%;
  margin: 0 auto 2rem auto;
}

#mapLoc .mapSoc .ghostButton {
  --od-c: var(--od-c-offBlack);
  --od-c-btn: var(--od-c-offBlack);
  display: grid;
  place-content: center;
  flex: auto;
  align-items: stretch;
  text-align: center;
  width: min(20rem, 100%);
  height: auto;
  margin-top: 0;
}

#mapLoc .mapSoc .ghostButton:hover {
  --od-c: black;
  --od-c-btn: black;
  --od-bg: rgb(0, 0, 0, 0.05);
}

#mapLoc .mapBody h3 {
  border-bottom: 1.5px solid var(--od-c-red);
  padding-bottom: .2em;
  margin-bottom: .5em;
  color: var(--od-c);
}

#stateTrainLoc #mapLoc {
  padding: 0;
}

.mapButtons {
  grid-area: buttons;
}

#mapLoc.mapVA2 {
  grid-template: "head"
    "info"
    "buttons"
    "social"
    "body"
    /1fr;
}

#mapLoc.mapVA2 .btnGrid {
  grid-template-columns: repeat(autofit, minmax(20rem 1fr));
  justify-content: space-evenly;
}

#mapLoc.mapVA2 .btnGrid a {
  border-top-color: var(--army-c-gold);
}

.mapButtons.btnGrid.dark {
  padding-bottom: 0;
}


/*  /// -----  MEDIA QUERIES  -----  ///  */

@media (max-width: 900px) {}

#mapLoc {

  width: 100%;

}



@media (max-width: 480px) {
  #mapLoc .mapHead img {
    width: 60px;
  }
}








/*  end of school.css  */