.author-header {
    color: var(--dark_blue);
}
@media (min-width: 769px){
    .author-header {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 1rem;
      flex-direction: column;
      width: 800px;
      max-width: 100%;
    }
    /*.author-info{
      width: calc(100% - 150px - 1rem);
    } */
  .author_bio {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.blog-header {
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}
.author-name{
    color: var(--dark_blue);
    margin-top: .3rem;
    margin-bottom: 2.5rem;
}
.author-name:after {
    transform: translateY(1rem);
}
.author-avatar{
  border-radius: 50%;
}

.author-header svg {
  fill: var(--typo-link-color);
  width: 2rem;
  margin-right: .5rem;
}

.author-header .author-links svg {
  margin-top: .75rem;
}

.author-header .author-links a:is(:hover, :focus, :active) {
  background-size: 0;
}
.svg {
     fill: color: var(--dark_blue); 
}
.author-links {
    margin-bottom: 1rem;
}

.blog-listing {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(303px,1fr));
    grid-gap: 2rem;
}

.post-item {
    background: #F9FAFE;
    border: 1px solid #bdc8d4;
    border-radius: 12px;
    /* box-shadow: 6px 6px 8px rgba(129, 129, 129, 0.15);
    border-radius: 4px; 
    transition: .4s box-shadow;*/
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-inline: .8rem;
    position: relative;
    z-index: 1;
}
/* .post-item:is(:hover,:focus,:focus-within) {
    box-shadow: 6px 6px 8px rgba(129, 129, 129, 0.35);
} */

.post-item:is(:hover,:focus,:focus-within) .read-more .icon {
    transform: translateX(0)
}
.post-item a {
    background: none;
    width: calc(100%);
    max-width: calc(100%);
}
.post-item .featured-image {
  width: calc(100% + 1.6rem); 
  max-width: calc(100% + 1.6rem);
  aspect-ratio: 1.9/1;
  object-fit: cover;
  object-position: 100%;
  margin-inline: -0.8rem;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

.post-item.tiny .featured-image {
  border-bottom-left-radius: 12px;
  border-top-right-radius: 0;
}
/*
.featured-image-link {
    z-index: 1;
}
*/
.post-title-link:before {
    position: absolute;
    top: 0;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    /*z-index: -1;*/
}
.post-item .tag-link {
    background-color: var(--tag-bg, #1098F7);
    border-radius: 4px;
    display: inline-block;
    width: auto;
    flex-shrink: 1;
    --ele-color: #fff;
    padding: 0.2em 0.5em;
    margin-bottom: 0.2em;
    text-transform: uppercase;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-top: 1.5rem;
    z-index: 1;
}
.post-item .post-title {
    margin-bottom: 1em;
    font-size: 1.39rem;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 1px;
}
/*
.post-item .featured-image-link:focus ~ .post-title{
    --ele-color: var(--dark_blue);
}
*/
.post-item .post-title:after {
   content: none; 
}
.post-title-link:not(:hover) {
    --ele-color: inherit;
}
.post-summary {
    margin-bottom: 1.39rem;
}
.post-item .read-more {
    height: 54px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #bdc8d4;
    font-size: .9rem;
    margin-left: -0.8rem;
    width: calc(100% + 1.6rem);
    max-width: calc(100% + 1.6rem);
    padding: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: auto;
    color: var(--typo-link-color);
}
.read-more .icon {
    width: 2rem;
    transform: translateX(-.5em);
    transition: .4s transform;
}

.listing-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block: 5rem 1rem;
}
.pagination-link {
    --width: 2.75rem;
    font-size: 1.25rem;
    width: var(--width);
    display: inline-block;
    background: none;
    text-align: center;
    --ele-color: var(--dark_blue);
}
:is(.prev,.next).pagination-link {
    font-size: 1.5rem;
}
:is(:hover,:focus,.active).pagination-link {
    --ele-color:var(--primary);
}
.pagination-link.active {
  width: calc(var(--width)*2.5);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-around;
  flex-direction: row;
}
.pagination-link.active span {
  flex-shrink:0;
  width:var(--width);
}
/*.pagination-link.active:before,*/
.pagination-link.active:after {
  content:"";
  display: inline-block;
  height: 2px;
  background-color: var(--primary);
  margin-block: auto;
  flex-grow: 1;
  flex-shrink:1;
}
/*
.pagination-link.active:first-child:before,
.pagination-link.active:last-child:after {
  display:none;
}
*/
/*
@media(max-width: 769px){
    .listing-filters {
        margin-bottom: 2rem;
    }
}*/
.listing-filters {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
}
.filter-wrapper {
    height: 2em;
    min-width: 300px;
    position: relative;
    color: var(--color-dark_blue);
    cursor: pointer;
    z-index: 2;
}
.active.filter-wrapper {
    z-index: 3;
}
.filter-wrapper,
.filter-inner {
    background-color: var(--off_white);
}
.filter-inner {
    border: 2px solid #BDC8D4;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top:0;
    left:0;
    right:0;
    max-height: 420px;
    overflow-y: auto;
    transition: .4s border-color;
}
.filter-wrapper:is(:hover,.active,:focus-within) .filter-inner {
    border-color: var(--primary);
}
.filter-item.selected {
    justify-content: space-between;
}
.filter-item.selected .selected-text {
    max-width: 90%;
    width: 90%;
    padding: .15em 0;
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: sticky;
    top: 0;
    background-color: inherit;
    color: inherit;

}
.filter-item {
    display: flex;
    align-items: center;
    width: 100%;
    padding-inline: 1rem;
    font-size: .9rem;
    line-height: 2rem;
    font-weight: 600;
    transition: max-height .4s;
}
.filter-item:first-child {
    margin-block: .5rem;
}
.filter-wrapper.active .filter-item:last-child {
    margin-bottom: .5rem;
}
.filter-item:not(.selected) {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .2s opacity ease-in-out, .4s max-height;
}
.filter-item.topic-child{
    padding-left: 2rem;
}
.filter-wrapper:is(.active,:focus,:focus-within) .filter-item {
    max-height: 6rem;
    opacity: 1;
}

/* .topics-filter .filter-item {
    box-shadow: 0 0 0 0 transparent;
} */

.filter-item input,
.filter-item .icon {
    pointer-events: none;
}
.topics-filter input {display: none;}
.topics-filter .filter-item label {
    width: 100%;
    padding: .2rem 1rem;
    border-radius: 4px;
    transition: color .4s, background-color .4s, box-shadow .4s, max-height .4s;
}
.filter-item input:checked + label {
    color: var(--primary);
}
.topics-filter :is(:hover,:focus-within,:focus,.active):not(.selected).filter-item label {
    background-color: #F0F3FF;
   /* box-shadow: 0px 4px 4px rgba(189, 200, 212, 0.31); */
}
.topics-filter .filter-item label:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background-color: var(--tag-bg);
    margin-right: 1em;
    transition: opacity .4s;
}
.topics-filter .filter-item.topic-child:not(:hover) label:before {
    opacity: .6;
}
[data-tag] {
    --tag-bg: var(--dark_blue);
}
[data-tag="innovation-culture"] {
    --tag-bg: var(--primary);
}
[data-tag="end2end-innovation"] {
    --tag-bg: #1098F7;
}
[data-tag="where-to-play"] {
    --tag-bg: #866DF9;
}
[data-tag="environmental-scanning"] {
    --tag-bg: #866DF9;
}
[data-tag="foresight"] {
    --tag-bg: #866DF9;
}
[data-tag="how-to-win"]{
    --tag-bg: #00BB62;
}
[data-tag="portfolio-management"] {
    --tag-bg: #FF6310;
}
[data-tag="idea-management"] {
    --tag-bg: #00BB62;
}
[data-tag="what-to-execute"] {
    --tag-bg: #FF6310;
}
[data-tag="roadmapping"] {
    --tag-bg: #FF6310;
}
[data-tag="go-to-market"] {
    --tag-bg: #FF6310;
}

.filter-wrapper:is(:hover,.active,:focus-within) .selected,
.content_type-filter .filter-item:hover {
    color: var(--primary);
    transition: .4s color;
}

.content_type-filter [type="checkbox"] {
    width: 1.2rem !important;
    height: 1.2rem !important;
}
.content_type-filter input ~ [for*="content_type"] {
    margin-left: 1em;
}
/*
.content_type-filter input:checked,
.content_type-filter .filter-item:is(:hover,:focus-within) input {
    box-shadow: inset 0 0 0 1px var(--primary);
}*/

.listing-filters [type="reset"] {
    margin-top: 0;
}



.listing-filters-wrapper{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:1.5rem;
    margin-bottom:1.5rem;
}
.listing-filters-wrapper > .hs-search-field{
    width:100%;
    max-width:500px;
    min-width:300px;
}
.listing-filters-wrapper > .hs-search-field > .hs-search-field__bar{
    margin:0;
}
.listing-filters-wrapper > .hs-search-field .hs-search-field__input{
    font-weight:600;
    padding-block:0.6rem;
}

.post-item.resources a:not(.post-title-link) {
  position: relative;
} 

.post-item.resources .resource_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% + 1.6rem);
  margin-left: -.8rem;
  margin-bottom: .4rem;
  border-top-right-radius: .25rem;
  border-top-left-radius: .25rem;
}

.post-item.resources .resource_overlay:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: .5;
}

.post-item.resources .resource_logo {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 10rem;
  height: auto;
}

@media screen and (max-width: 375px) {
  .blog-listing {
    grid-template-columns: repeat(auto-fill,minmax(256px,1fr));
  }
}