/* card structure */
.item-card {
  margin: 0 22px 20px;
}

.item-card__title a {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  transition: all 0.3s;
  display: block;
}

.item-card__title a:hover {
  color: #74ae00;
}

.item-card__date {
  font-weight: 700;
  font-size: 14px;
  color: #b1b1b1;
  margin: 12px 0 5px;
  display: block;
}

.item-card__summary {
  font-size: 14px;
  line-height: 130%;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.item-card__link {
  font-weight: 700;
  font-size: 13px;
  border-bottom: 3px solid #74ae00;
  padding-bottom: 2px;
  color: #74ae00;
  transition: all 0.3s;
}

.item-card__link:hover {
  border-color: #222;
  color: #222;
}

/* expand/collapse */
.extra-items.is-collapsed {
  display: none;
}

.expand-toggle-wrapper {
  text-align: center;
  margin-top: 20px;
}

.expand-toggle {
  background: #73ae00;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.expand-toggle:hover {
  background: #5c8f00;
}
.expandable-nodes .items-list {   
    margin-bottom: 50px;
}
.expandable-nodes .items-list:first-child, 
.expandable-nodes .items-list.extra-items:not(.is-collapsed) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 44px;
}
.expandable-nodes .items-list .item-card {
    margin: 0;
}

.expandable-nodes .items-list .item-card .item-card__image a {
    position: relative;
}
.expandable-nodes .items-list .item-card .item-card__image a img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s;
}
.expandable-nodes .items-list .item-card .item-card__image a:after {
    content: "";
    padding-bottom: 58.25%;
    display: block;
}
.podcast-cards + .podcast-cards {
    padding-top: 0;
}
.podcast-cards {
    padding-top: 80px;   
    padding-bottom: 80px;
}
.podcast-cards .nav {
    border-bottom: 1.06px solid #000;
    margin-bottom: 45px;
}
.podcast-cards .nav button {
    background: #73ae00;
    font-weight: 700;
    font-size: 19.17px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    padding: 13px 38px;
    margin-bottom: -1px;
    cursor: default;
}
.podcast-cards .slick-dots {
    display: none !important;
}
.podcast-cards .slick-list .slick-track {
    margin-left: 0;
}
@media(max-width: 1199px){
  .expandable-nodes .items-list:first-child,
  .expandable-nodes .items-list.extra-items:not(.is-collapsed) {  
      grid-template-columns: 1fr 1fr;  
  }
}
@media(max-width: 767px){
  .expandable-nodes .items-list:first-child,
  .expandable-nodes .items-list.extra-items:not(.is-collapsed) {      
      grid-template-columns: 1fr;
      gap: 32px;
  }
  .expandable-nodes {
      padding: 0 15px;
  }
  .podcast-cards{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .expandable-nodes .items-list .item-card .item-card__image a img {
    position: relative;   
    aspect-ratio: 9/5; 
  }
  .expandable-nodes .items-list .item-card .item-card__image a:after {
    padding-bottom: 0;
  }
}
