  @import url("https://fonts.googleapis.com/css2?family=Prompt&family=Source+Sans+Pro:wght@200;300;400;600;700;900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  font-family: Poppins, sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: multiply;
}

.site-header {
  background-image: url("/academics/wml/special-projects/library-spaces/assets/images/masthead-background.png");
  background-color: #7e7380;
  background-position: center;
  background-size: cover;
  margin-bottom: 3rem;
  padding: 2rem;
}
.site-header .site-branding {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header .wml-logo {
  max-width: 100%;
}
.site-header .uofs-logo {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  font-family: "Prompt", sans-serif;
}
h1 small {
  font-size: 50%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 200;
  display: block;
  margin-bottom: -0.3rem;
  letter-spacing: normal;
}

.filters {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  color: #333;
}
@media (max-width: 480px) {
  .filters {
    padding: 0 0.5rem;
  }
}
.filters .search input {
  border: 1px solid #bbb;
  width: 100%;
  display: block;
  padding: 10px 15px;
  font: inherit;
  border-radius: 0.3rem;
  margin-top: 1rem;
}
.filters .search input::-moz-placeholder {
  color: #222222;
}
.filters .search input::placeholder {
  color: #222222;
}
.filters .dropdown {
  background-color: #f3f6f9;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.3rem;
  height: 100%;
}
.filters .dropdown .dropdown-item label,
.filters .dropdown .dropdown-item input {
  cursor: pointer;
}
.filters .dropdown .dropdown-item:not(:first-child) {
  margin-top: 0.3rem;
}

#count {
  font-size: 1.2rem;
  margin: 0 auto 2rem auto;
  max-width: 1200px;
  text-align: center;
}

.listing {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.listing.filters-listing {
  margin: 0 -0.5rem;
}
.listing.filters-listing .column {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 0.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 700px) {
  .listing.filters-listing .column {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 950px) {
  .listing.filters-listing .column {
    flex: 0 0 25%;
    max-width: 25%;
    margin-bottom: 0;
  }
}
.listing .column {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .listing .column {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (max-width: 767px) {
  .listing .column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 480px) {
  .listing .column {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0.5rem;
  }
}

.card-item {
  background-color: #f3f3f3;
  width: 100%;
  display: block;
  border-radius: 0.3rem;
  box-shadow: #c2c1c1 0px 3px 8px;
  transition: 0.2s ease-in;
  overflow: hidden;
  height: 480px;
}
.card-item .overlay {
  background-size: cover;
  height: 0px;
  padding-top: 57%;
  width: 100%;
}
.card-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}
.card-item .space-info {
  padding: 0 1rem;
}
.card-item .attribute-container {
  background-color: #333333;
  color: #ffffff;
  margin-top: -6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card-item .attribute-container h3 {
  color: #333333;
  display: inline-block;
  background-color: #f3f3f3;
  margin: 0;
  font-size: clamp(0.9rem, 3vw, 1rem);
  text-align: left;
  padding: 0.5rem 1rem 0 1rem;
  font-style: italic;
  width: 100%;
  border-top-right-radius: 50px;
}
.card-item .atts {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.card-item .room-name {
  color: #000000;
  font-family: "Source Sans Pro", Poppins, sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.4rem);
  line-height: 1.2;
  margin-top: 0.7rem;
  padding-right: 1.2em;
  width: calc(100% - 1em);
  position: absolute;
  top: 0;
  left: 1.5em;
  color: #fff;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}
.card-item .category {
  font-size: 0.9em;
  margin-bottom: 0.2rem;
}
.card-item .category strong {
  font-weight: 600;
  font-size: 0.95em;
  text-transform: capitalize;
}
.card-item .attributes {
  font-size: 0.75rem;
}
.card-item .description {
  margin-top: 1.5rem;
}
.card-item .stat {
  display: grid;
  font-size: 0.9em;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.5em;
}
.card-item .stat .feature,
.card-item .stat .lighting {
  font-weight: bold;
}
.card-item .stat .feature ul,
.card-item .stat .lighting ul {
  padding-left: 0;
}
.card-item .stat .feature li,
.card-item .stat .feature a,
.card-item .stat .lighting li,
.card-item .stat .lighting a {
  font-weight: normal;
  list-style-type: none;
}
.card-item .actions {
  text-align: center;
  margin: 0 auto;
  position: absolute;
  bottom: 0px;
  width: 100%;
}
.card-item .actions p {
  margin: 0 6px 0 0;
}
@media (min-width: 480px) {
  .card-item .actions p {
    margin: 0 22px 0 0;
  }
}
.card-item .actions p.no-reservations {
  padding: 10px 0;
  text-align: center;
  color: #ffffff;
  background-color: #4b4e4e;
  margin: 0;
  width: calc(100% - 16px);
}
@media (min-width: 480px) {
  .card-item .actions p.no-reservations {
    width: calc(100% - 2.2em);
  }
}
.card-item .actions p .button {
  display: block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #7aa8b7;
  transition: 0.3s;
  margin: 0;
  width: calc(100% - 0.7em);
}
.card-item .actions p .button.reserve-room {
  background-color: rgb(167, 18, 90);
}
.card-item .actions p .button:hover {
  background-color: rgb(213, 26, 116);
}