html {
  background: #f5f7f8;
  font-family: 'Montserrat', montserrat, sans-serif;
  -webkit-font-smoothing: antialiased;
  padding: 20px 0;
}

.band {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  
  display: grid;
  
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 20px;
  
}

/* card */

.card {
  min-height: 100%;
  background: white;
  box-shadow: 0 4px 5px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  text-align: start;
  color: #453f3e;
  position: relative;
  top: 0;
  transition: all .1s ease-in;
  border-radius: 25px !important;
  overflow: hidden; 
}

.card:hover {
  top: -6px;
  box-shadow: 0 4px 5px rgba(0,0,0,0.2);
  background: rgba(115,115,115,0.2);
  border-radius: 25px !important; /* Rounded corners */
  text-decoration: none;
}

.card:focus {
  outline: none;
}

.card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(27, 46, 88, 0.3);
}

.card,
.card:link,
.card:visited,
.card:hover,
.card:active {
  text-decoration: none;
  color: inherit;
}

.card article {
  padding: 20px;
  display: flex;
  flex: 1;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;  
}
.card .thumb {
  padding-bottom: 60%;
  background-size: cover;
  background-position: center center;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.card p { 
  flex: 1; /* make p grow to fill available space*/
  line-height: 25px;
  font-size: 16px;
  letter-spacing: normal;
  color: #453f3e;
  margin: 0px 0 0 0;
  text-align: left;
}

.card-date {
    color: #8a8a8a;
    font-weight: 700 !important;
    padding-bottom: 1em;
    text-align: left;
    display: block;
    font-size: 14px;
    text-transform: start;
    font-family: 'Times New Roman', Times, serif !important;
  }

.card-publisher {
    color: #9a9a9a;
    font-weight: 700 !important;
    display: block;
    margin-top: auto;
    text-align: right;
    font-size: 14px;
    font-weight: bold;
    text-transform: start;
    font-family: 'Times New Roman', Times, serif !important;
}

.cards-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #2f2f2f;
    line-height: 1.4;
    letter-spacing: 0.2px;
    margin: 8px 0 2px 0;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* typography */
h1 {
  font-size: 18px;
  font-weight: bold;
  line-height: 25px;
  color: #453f3e;
}

.card span {
  color: #453f3e;
  letter-spacing: 2px;
  margin: 30px 0 0 0;
}


@media only screen and (min-width: 500px) {
  .band {
    grid-template-columns: 1fr 1fr;
  }  
  .item-1 {
  grid-column: 1/ span 2;
  }
  .item-1 h1 {
    font-size: 20px;
    line-height: 22px;
    font-weight: bold;
  }
}

@media only screen and (min-width: 850px) {
  .band {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}