/* BLOG
-------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700;800;900&display=swap");
/* Usable
-------------------------------------------------- */
.grid {
  display: -ms-grid;
  display: grid;
}

.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-align-items: initial;
  -moz-box-align: initial;
  -ms-flex-align: initial;
  align-items: initial;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex.flex-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex.flex-left {
  -webkit-justify-content: left;
  -moz-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}
.flex.flex-center {
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex.flex-right {
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex.align-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  align-items: center;
}
.flex.flex-start {
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.mt-none {
  margin-top: 0px !important;
}

.mt-xsmall {
  margin-top: fluid(5, 10) !important;
}

.mt-small {
  margin-top: fluid(10, 20) !important;
}

.mt-medium {
  margin-top: fluid(15, 30) !important;
}

.mt-large {
  margin-top: fluid(20, 40) !important;
}

.mt-xlarge {
  margin-top: fluid(30, 60) !important;
}

.mt-xxlarge {
  margin-top: fluid(40, 80) !important;
}

.mb-none {
  margin-top: 0px !important;
}

.mb-xsmall {
  margin-top: fluid(5, 10) !important;
}

.mb-small {
  margin-top: fluid(10, 20) !important;
}

.mb-medium {
  margin-top: fluid(15, 30) !important;
}

.mb-large {
  margin-top: fluid(20, 40) !important;
}

.mb-xlarge {
  margin-top: fluid(30, 60) !important;
}

.mb-xxlarge {
  margin-top: fluid(40, 80) !important;
}

.lg-backdrop {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.lg-icon {
  background: transparent !important;
  border: none !important;
  outline: none !important;
}

.lg-outer .lg-thumb {
  margin: 0 auto;
}

/* Placeholders
-------------------------------------------------- */
.fill {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left center;
  object-position: left center;
  display: block;
}
.fill.contain {
  -o-object-fit: contain;
  object-fit: contain;
}
.fill.left {
  -o-object-position: left center;
  object-position: left center;
}

/* RATIO MIXIN
-------------------------------------------------- */
.main .section.blog .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: min(1.875rem + 0.625 * ((100vw - 20rem) / 100), 2.5rem);
}
@media (min-width: 64rem) {
  .main .section.blog .wrapper {
    -ms-grid-columns: 1fr 17.5rem;
    grid-template-columns: 1fr 17.5rem;
    gap: min(1.25rem + 1.25 * ((100vw - 64rem) / 56), 2.5rem);
  }
}
.main .section.blog .wrapper .left .top {
  color: #FFFFFF;
  background: #CC4949;
  margin-bottom: min(1.25rem + 1.25 * ((100vw - 20rem) / 100), 2.5rem);
  padding: min(1.25rem + 1.5625 * ((100vw - 20rem) / 100), 2.8125rem) min(1.25rem + 2.5 * ((100vw - 20rem) / 100), 3.75rem);
  border-radius: min(0.9375rem + 0.9375 * ((100vw - 20rem) / 100), 1.875rem);
}
.main .section.blog .wrapper .left .top h1 {
  margin: 0;
}
.main .section.blog .wrapper .left .top .text {
  margin-top: 0.9375rem;
}
.main .section.blog .wrapper .left .posts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: min(1.25rem + 0.625 * ((100vw - 20rem) / 100), 1.875rem) min(1.875rem + 0.9375 * ((100vw - 20rem) / 100), 2.8125rem);
}
@media (min-width: 37.5rem) {
  .main .section.blog .wrapper .left .posts {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}