
/* 
// Media Query Ranges
$medium-range: (40.063em, 64em);
$large-range: (64.063em, 90em);
$screen: "only screen"; */

/*$tablet: only screen and (min-width:64em);
$desktop: only screen and (min-width:90em);
*/



body {
  font-family: Lato, sans-serif;
  color: #3d3d3d;
  font-size: 14px;
  line-height: 20px;
}
h1 {
  font-size: 44px;
  line-height: 1.5;
  letter-spacing: -.025em;
}
h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 700;
}
h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
p {
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}
a {
  color: #000;
  &:hover {
    text-decoration: underline;
  }
}
.container {
  /* width: 90%; */
  /* margin: 0px auto; */
  @media only screen and (min-width: 64em) {
    width: 90%;
  }
}
.page-header {
  border-bottom: 1px solid #eceeed;;
  font-weight: 900;
  margin: 0;
  margin-top: 5%;
  margin-bottom: 5%;
  padding: 0;
}
.content-column {
  width: 100%;

  /* margin-left: 33%; */
  margin-top: 5%;
  margin-bottom: 5%;
  @media only screen and (min-width: 40em) {
    width: 80%;
  }
  @media only screen and (min-width: 64em) {
   max-width: 70%;
   /* float: left; */
  }
}
.ad-column {
  margin-top: 1em;
  width: 300px;
  float: right;
  }
.list-title {
  color: #9f9f9f;
  font-size: 14px;
  text-transform: uppercase;
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px){
  .events-list {
    padding-left: 1%;
    padding-top: 1%;
    list-style-type: none;
    text-decoration: none;
    .event-item {
      border-bottom: 1px solid #eceeed;
      margin-bottom: 1em;
    }
  }
  .linkgrid {
    display: inline-grid;
    /* grid-template-columns: repeat(2, 1fr); */
    column-gap: 15px;
    row-gap: 10px;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
/* @media only screen and (min-width: 600px){} */
/* Medium devices (landscape tablets, 768px and up) */
/* @media only screen and (min-width: 768px){} */
/* Large devices (laptops/desktops, 992px and up) */
/* @media only screen and (min-width: 992px){} */
.events-list {
  padding-left: 0px;
  padding-top: 1%;
  list-style-type: none;
  text-decoration: none;
  .event-item {
    border-bottom: 1px solid #eceeed;
    margin-bottom: 1em;
  }
}
.linkgrid {
  display: inline-grid;
  /* grid-template-columns: repeat(2, 1fr); */
  column-gap: 15px;
  row-gap: 10px;
}

.gridentry > * {
  display: block;
  padding: 1px 20px;
  @media only screen and (min-width: 40em) {
    text-align: left;
    font-size: 24px;
  }
}
.day-column {
  max-width: 30%;
  padding-top: 0.15em;
  /* padding-right: 1em; */
  float: left;
  @media only screen and (min-width: 40em) {
    max-width: 30%;
    padding-top: 0.15em;
    padding-right: 1.5em;
    /* float: left; */
  }
}
.month-name {
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;
  text-transform: uppercase;
  @media only screen and (min-width: 40em) {
    text-align: left;
    font-size: 24px;
    /* text-align: left; */
  }
}
.day-name {
  text-align: left;
  text-transform: uppercase;
  /* font-size: 14px; */
  margin-top: 15%;
  @media only screen and (min-width: 40em) {
    text-align: left;
    font-size: 20px;
  }
}
.title-column {
  max-width: 75%;
  float: left;
}
.title-name {
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;
}
.event-title,
.event-details,
.event-category {
  margin-bottom: 5px;
  font-size: 18px;
  text-align: left;
  @media only screen and (min-width: 40em) {
    text-align: left;
    font-size: 24px;
  }
}
.event-details-list {
  padding-bottom: 0em;
  padding-left: 1em;
  text-decoration: none;
  .event-details-item:nth-child(3) {
    color: #9f9f9f;
    font-style: italic;
  }
}
.event-category-title {
  color: #9f9f9f;
}
.event-category-name {
  text-transform: uppercase;
  text-decoration: none;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}