/* Added fallbacks to help with CLS, feel free to remove if it doesn't help on your project */
/* Colours */
/* Fluid heading sizes - set your min/max sizes and you're done! */
/* Some device sizes */
/* adjusted breakpoints for above */
/* 100% widths look better than "Snapping" IMO */
/* Utility */
/* Additional Spacers -- don't think you'll need more than 7, but if you do -- maybe just use a custom class  :)  */
.post-card .thumbnail {
  display: flex; }
  @media (min-width: 768px) {
    .post-card .thumbnail {
      display: block; } }
  .post-card .thumbnail img,
  .post-card .thumbnail picture {
    max-height: 100% !important;
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: cover; }
    @media (min-width: 768px) {
      .post-card .thumbnail img,
      .post-card .thumbnail picture {
        max-height: 350px !important; } }

@media (min-width: 640px) {
  .post-card .content-wrap {
    background-color: #F7F8F9; } }

.post-card .content {
  padding: 30px 30px;
  background-color: #F7F8F9;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  height: 100%; }
  @media (min-width: 640px) {
    .post-card .content {
      padding: 30px 30px; } }
  @media (min-width: 768px) {
    .post-card .content {
      padding: 30px 45px; } }
  .post-card .content h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; }
  .post-card .content p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; }
  .post-card .content .read-more {
    display: inline-block;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    color: #62C0BB;
    text-transform: uppercase;
    font-family: "Comfortaa", cursive;
    position: relative;
    letter-spacing: 1.6px;
    transition: 0.3s all ease;
    width: fit-content;
    width: -moz-fit-content; }
    .post-card .content .read-more:after {
      content: "";
      position: absolute;
      right: -16px;
      top: 2px;
      transform: translateX(100%);
      height: 15px;
      width: 15px;
      background: url(../img/arrow-right-solid.svg) center center no-repeat;
      transition: 0.3s all ease; }

.pagination .screen-reader-text {
  display: none; }

.pagination .nav-links {
  justify-content: center; }
  .pagination .nav-links span,
  .pagination .nav-links a {
    border: solid 1px #585858;
    height: 40px;
    width: 40px;
    line-height: 1;
    margin-right: 8px;
    text-align: center;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    text-decoration: none;
    color: #1E1E1E; }
    .pagination .nav-links span:hover,
    .pagination .nav-links a:hover {
      background-color: #62C0BB;
      color: #fff;
      border: 1px solid #62C0BB; }
    .pagination .nav-links span.prev, .pagination .nav-links span.next,
    .pagination .nav-links a.prev,
    .pagination .nav-links a.next {
      border: solid 1px #585858;
      height: 40px;
      width: 40px;
      line-height: 1;
      margin-right: 8px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 !important;
      background-color: #585858;
      color: #fff; }
      .pagination .nav-links span.prev span, .pagination .nav-links span.next span,
      .pagination .nav-links a.prev span,
      .pagination .nav-links a.next span {
        color: #FFFFFF;
        background-color: transparent;
        margin-right: 0; }
        .pagination .nav-links span.prev span:hover, .pagination .nav-links span.next span:hover,
        .pagination .nav-links a.prev span:hover,
        .pagination .nav-links a.next span:hover {
          border: #000; }
