body {
  overflow-x: hidden; 
}

.ribbon {
  height: 1300px; 
}

.company-ribbon-container {
  position: absolute;
  right: 0px;
  top: 0px;
  overflow: hidden;
}

.ribbon-animation {
  transition: transform .1s linear;
}

.heading-ventures-link {
  display: block;
  max-width: 235px;
}

.ventures-tile {
  width: 160px;
  min-height: 200px;
  border-radius: 10px;
  background-color: var(--full-white);
  box-shadow: 0 2px 4px 0 rgba(227,213,254,0.6);
  padding: 14px;
  transition: box-shadow .3s ease-in-out;
}

.ventures-tile:hover, .ventures-tile.active {
  cursor: pointer; 
  box-shadow: 0 0 9px 0 var(--jelly-200);
}

.ventures-tile.active {
  border: 1px solid var(--jelly-100);
}

.ventures-title.active {
  border: 1px solid var(--jelly-100);
  box-shadow: 0 0 9px 0 var(--jelly-200); 
}

.ventures-expanded-view {
  display: none;  
}

.ventures-title:not(active) .ventures-expanded-view .expanded-padding {
  padding-bottom: 0px !important;
}

.tile-wrapper.active .ventures-expanded-view {
  display: flex; 
  padding-bottom: 40px;
  height: 100%;
}

.tile-wrapper.active .ventures-expanded-view .expanded-padding,
.tile-wrapper.active .ventures-expanded-view {
    min-height: 460px;
}

.venture-icon-container {
  height: 45px; 
  width: 100%;
  margin: 0px auto 16px;
}

.venture-icon {
  display: block;
  height: auto;
  max-height: 45px;
  max-width: 100%;
}

.ventures-card-title {
  color: var(--licorice-400);
  font-size: 12.5px;
  font-weight: bold;
  line-height: 18px;
  text-align: center;
  margin-bottom: 4px;
}

.ventures-card-subtitle {
  color: var(--licorice-400);
  font-size: 12.5px;
  line-height: 18px;
  text-align: center;
}

.category-hidden {
  display: none;
  visibility: hidden;
}

.expanded-container {
  position: absolute;
  display: flex;
  left: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.expanded-container .co-text-wrap {
    max-height: fit-content;
    overflow: auto;
}

{# press release card css #}
.newsfeed-card {
  border-radius: 10px;
  background-color: var(--full-white);
  box-shadow: 0 0 10px 0 var(--jelly-75);
  width: 350px;
  height: fit-content;
  transition: box-shadow .3s ease;
  margin-right: 30px;
  margin-bottom: 48px;
}

.card-left-padding {
  padding-left: 30px;
}

.card-padding {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
}

.tiles-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
}


.newsfeed-card:hover {
  box-shadow: 0 3px 20px 0 var(--jelly-90);
}

.card-share-image {
  -ms-flex: 1 1 350px;
  flex: 1 1 350px;
  max-width: 350px;
  height: 180px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.card-link, .card-link:hover {
  color: inherit;
  text-decoration: inherit;
  width: inherit;
  height: inherit;
}

.card-kicker {
  background: transparent !important; 
  padding: 0px;
}

h5.newsfeed-jelly { 
  color: var(--jelly-300);
}


@media screen and (max-width: 767px) {
  .card-left-padding {
    padding-left: 18px;
  }

  .card-padding {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 18px;
  }

  .newsfeed-card {
    height: auto;
    padding-bottom: 24px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media screen and (max-width: 992px) {
  .mobile-dropdown-container {
    border-radius: 5px;
    background-color: var(--licorice-25);
    position: relative;
    padding: 12px 16px;
    margin-bottom: 32px;
  }

  .mobile-dropdown-container:before {
    content: "";
    display: block;
    background: url(https://6778953.fs1.hubspotusercontent-na1.net/hubfs/6778953/caret-licorice500.svg);
    position: absolute;
    width: 12px;
    height: 7px;
    right: 24px;
    top: 32px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .mobile-dropdown-container.active:before {
    transform: rotate(0);
  }

  .mobile-dropdown-container:hover {
    cursor: pointer; 
  }

  .mobile-category-selector {
    color: var(--licorice-500);
    font-size: 18px;
    letter-spacing: -0.4px;
    line-height: 24px; 
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .mobile-category-selector {
    display: none; 
  }

  .mobile-category-selector.active, .mobile-dropdown-container.active .mobile-category-selector {
    display: block;
  }

  .pagination-hidden {
    display: none; 
    visibility: hidden;
  }
  
  
  .ribbon-animation {
    overflow: hidden;
    max-width: 100vw; 
  }
}


@media screen and (min-width: 390px) {
  .tile-wrapper.active .ventures-expanded-view .expanded-padding,
  .tile-wrapper.active .ventures-expanded-view {
    min-height: 480px;
  }
}

@media screen and (min-width: 500px) {
  .tile-wrapper.active .ventures-expanded-view .expanded-padding,
  .tile-wrapper.active .ventures-expanded-view {
    min-height: 580px;
  }
}

@media screen and (min-width: 560px) {
  .tiles-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media screen and (min-width: 768px) {
  .tile-wrapper.active .ventures-expanded-view .expanded-padding,
  .tile-wrapper.active .ventures-expanded-view {
    min-height: 630px;
  }
  
  .tiles-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media screen and (min-width: 992px) {
  .tiles-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  
  .tile-wrapper.active .ventures-expanded-view .expanded-padding,
  .tile-wrapper.active .ventures-expanded-view {
    min-height: 300px;
  }  

  .heading-ventures-link {
    max-width: 340px;
  }

  .category-selector {
    border-radius: 20px;
    background-color: var(--jelly-75);
    color: var(--jelly-400);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.4px;
    line-height: 1.1428571;
    text-align: center;
    text-transform: uppercase;
    transition: color .3s ease-in-out, background-color 0.3s ease-in-out;
  }

  .category-selector.active, .category-selector:hover {
    color: var(--full-white);
    background-color: var(--jelly-400);
    cursor: pointer;
  }
}

@media screen and (min-width: 1200px) {
  .tile-wrapper.active .ventures-expanded-view .expanded-padding,
  .tile-wrapper.active .ventures-expanded-view {
    min-height: 330px;
  }  
    .tiles-container {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
}
