/* === OXYGEN Issue with these Flex Mixins - They can't be used as a base Oxy Class (.ct-div-block) overides them in the DOM  ===*/
.list-card {
  /*@include flexStart(row, space-between;*/
  width: 100%;
  height: 100% !important;
  border: 2px solid var(--black);
  /*@include devices(mobile-p) {
        min-height: 50vh;
    }*/
}
.list-card__inner {
  /*@include flexStart(column, space-between);*/
  width: 100%;
  min-height: 40rem;
  padding: 2rem;
}
.list-card__inner h4, .list-card__inner h6 {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  text-align: left;
  /*a {
                    color: var(--black);
                }*/
}
.list-card__inner h4 a:hover, .list-card__inner h6 a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__inner h4, .list-card__inner h6 {
    color: var(--white);
  }
}
.list-card__inner h4 {
  margin-bottom: 2rem;
}
.list-card__inner h6 {
  margin-top: auto;
}
@media only screen and (max-width: 992px) and (orientation: portrait) {
  .list-card__inner {
    padding: 1.4rem;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__inner {
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
  }
}
.list-card__icon {
  stroke: var(--black);
  stroke-linejoin: round;
  stroke-width: 2;
  margin: 0 0 0 auto;
  transform: rotate(0deg);
  transition: 0.2s;
}
.list-card__body {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  padding: 1rem;
  border: 2px solid var(--black);
  border-bottom: 0;
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__body {
    border-color: var(--white);
  }
}
.list-card__body h5 {
  font-size: 1.8rem;
  font-size: calc(1.8rem + ((1vw - 0.32rem) * 0.625));
  font-size: clamp(1.8rem, calc(1.8rem + ((1vw - 0.32rem) * 0.625)), 2.4rem);
  min-height: 0vw;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__body h5 {
    color: var(--white);
  }
}
.list-card__body h5 a {
  color: var(--black);
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__body h5 a {
    color: var(--white);
  }
}
.list-card__body h5 a:hover {
  text-decoration: underline;
}
.list-card__footer {
  width: 100%;
  /*margin: auto 0 0 0;*/
}
.list-card__author, .list-card__postdate {
  /*@include flexCenter(row, center);*/
  width: 50%;
  height: auto;
  min-height: 40px;
  max-height: 51px;
  padding: 0 2rem;
  border: 2px solid var(--black);
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__author, .list-card__postdate {
    border-color: var(--white);
  }
}
.list-card__author h6, .list-card__postdate h6 {
  /*@include flexCenter(row, flex-start);*/
  width: 100%;
  height: 100%;
  color: var(--black);
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__author h6, .list-card__postdate h6 {
    color: var(--white);
  }
}
.list-card__author h6 a, .list-card__postdate h6 a {
  color: var(--black);
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__author h6 a, .list-card__postdate h6 a {
    color: var(--white);
  }
}
.list-card__author h6 a:hover, .list-card__postdate h6 a:hover {
  text-decoration: underline;
}
.list-card__author {
  border-right: 0;
}
.list-card__excerpt {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  padding: 2rem;
  border: 2px solid var(--black);
  border-left: 0;
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .list-card__excerpt {
    border-color: var(--white);
  }
}
.list-card:hover .list-card__icon {
  transform: rotate(45deg);
  transition: 0.2s;
  stroke: var(--primary);
}
