

.post-listing-grid__heading {
    border-bottom: 1px solid #404041;
    padding: 0 0 1rem;
    margin-bottom: 19px;
    display: flex;
    align-items: baseline;
    gap: 32px;
    row-gap: 0;
}
@media (max-width: 767px) {
    .post-listing-grid__heading {
        flex-direction: column;
        align-items: start;
        padding-bottom: 16px;
    }
    .post-listing-grid__heading a.view-more {
        align-self: flex-end;
    }
}
.post-listing-grid__heading h2 {
    margin: 0;
}

.post-listing-grid__title-row {
    margin-bottom: 40px;
}
.post-listing-grid__eyebrow {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 9px;
}
.post-listing-grid__title {
    font-size: 32px;
    margin: 0;
}

.post-listing-grid__recents--grid {
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 2rem;
}
.post-listing-grid__recents--grid .post-listing-grid__recents--item {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 16px 23px 24px;
    color: #404041 !important;
}

@media (max-width: 767px) {
    .post-listing-grid__recents--grid .post-listing-grid__recents--item {
        padding: 16px 0 24px;
    }
}

.recent-post__tags {
    margin-bottom: 1rem;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}
.recent-post__image {
    margin-bottom: 1rem;
    position: relative;
}
.recent-post__image > a {
    display: block;
    aspect-ratio: 8 / 5;
    width: 100%;
}
.recent-post__tags a {
    color: #921267 !important;
    transition: .2s ease;
}
.recent-post__tags a:hover {
    color: #921267 !important;
}
.recent-post__image img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.recent-post__image .resource-icon {
    position: absolute;
    top: 8px;
    right: 8px;
}

.recent-post__title {
    color: inherit !important;
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.recent-post__title a {
    color: inherit !important;
}
.recent-post__title a:hover {
    color: #01869E !important;
}
.recent-post__description {
    color: inherit !important;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 400;
}
.recent-post__meta {
    color: inherit !important;
    font-family: 'Red Hat Mono', monospace;
    font-size: 11px;
    line-height: 1.5;
}
.recent-post__meta * {
    color: inherit !important;
}
@media (min-width: 768px) {
    .post-listing-grid__recents--grid .post-listing-grid__recents--item {
        width: calc((100% - 6rem) / 3);
    }
}



.post-listing-grid__recents--more {
    margin-top: 2rem;
    text-align: center;
}
.post-listing-grid__recents--pagination--next {
    display: none;
}


.topic-dropdown {
    position: relative;
}

@media (min-width: 768px) {
    .topic-dropdown {
        margin-left: auto;
        top: -16px;
    }
} 

.topic-dropdown label {
    color: #0B132A;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    display: block;
    margin-bottom: 12px;
}

#topicSelector {
    /* reset */

    margin: 0;      
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    
    border-radius: 4px;
    border: 1px solid #8C8D8E;
    background: #F7F8F9;
    padding: 8px 36px 8px 8px;
    cursor: pointer;

    font-size: 14px;
    font-weight: 500;
    color: #0b132a;
    font-family: "Red Hat Text", sans-serif;
    line-height: 16px;

      background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%);
      background-position:
        calc(100% - 15px) calc(1em - 1px),
        calc(100% - 10px) calc(1em - 1px),
        calc(100% - 2.5em) 0.5em;
      background-size:
        5px 5px,
        5px 5px,
        1px 1.5em;
      background-repeat: no-repeat;
}

#topicSelector > * {
    line-height: 140%; 
}

#topicSelector:focus {
  background-image:
    linear-gradient(45deg, gray 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, gray 50%),
  background-position:
    calc(100% - 10px) 1em,
    calc(100% - 15px) 1em,
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
  border-color: #8C8D8E;
  outline: 0;
}

@media (min-width: 768px) and (max-width: 979px) {
    .recent-post__image img {
        aspect-ratio: 10/9;
        object-fit: cover;
        object-position: left;
        height: inherit;
    }
}