.blog-quote-container::after {
  display: none;
}

.blog-nav {
  background-color: var(--bg);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 5;
}

.blog-quote-container {
  flex-direction: column;
  padding-right: 3.5rem;
  margin-bottom: 3rem;
}

.blog-quote-container h4 {
  margin: 0;
  margin-bottom: 1rem;
}

.quote-card-wrapper {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 3rem;
}

.quote {
  margin: 0;
  width: 100%;
}

.youtube-videos, .podcast-audio {
  margin-bottom: 2rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.youtube-videos h4, .podcast-audio h4 {
  margin-bottom: 1rem;
}

.youtube-iframe-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 3rem;
}

.video-card {
  height: 12rem;
  border-radius: 4px;
  box-shadow: 0px 1px 3.6px rgba(0, 0, 0, 0.052),
    0px 2.6px 10px rgba(0, 0, 0, 0.075), 0px 6.3px 24.1px rgba(0, 0, 0, 0.098),
    0px 21px 80px rgba(0, 0, 0, 0.15);
  display: flex;
}

.podcast-card {
  height: 6rem;
  border-radius: 4px;
  box-shadow: 0px 1px 3.6px rgba(0, 0, 0, 0.052),
    0px 2.6px 10px rgba(0, 0, 0, 0.075), 0px 6.3px 24.1px rgba(0, 0, 0, 0.098),
    0px 21px 80px rgba(0, 0, 0, 0.15);
}

.video-card iframe, .podcast-card iframe {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.view-more-vidz {
  background-color: var(--blue);
  color: var(--bg);
  font-size: 0.9rem;
  width: fit-content;
  height: fit-content;
  padding: 0.5rem;
  border-radius: 4px;
  margin-left: 3.5rem;
}

.news-container {
  margin-top: 3rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  display: flex;
  flex-direction: column;
}

.news-update-wrapper {
  width: 100%;
  margin-top: 1rem;
  height: fit-content;
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-auto-rows: auto;
}


.active-blog {
  display: flex;
  flex-direction: column;
}

.active-blog .title {
  width: 100%;
  text-align: left;
  font-size: 1rem;
  border-bottom: 3px solid var(--blue);
}

.blog-img {
  margin-top: 1rem;
  width: 100%;
  height: 20rem;
  border-top-left-radius: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.blog-content {
  padding: 1rem;
  padding-bottom: 2rem;
  border-bottom-left-radius: 4px;
 
  width: 100%;
  font-size: 0.9rem;
  background-color: #fff;
}

.more-blogs {
  /* background-color: var(--blue); */
  padding-left: 1rem;
  height: 100%;
  overflow-y: auto;
  padding: 0.5rem;
  padding-top: 0;
  border-left: 3px solid var(--blue);
}

@media screen and (max-width: 720px) {
  .news-update-wrapper{
    display: flex;
    flex-direction: column;
  }
  .more-blogs{
    padding-top: 2rem;
    border-left: 0px solid var(--blue);
  }
}


.more-blog-card {
  display: flex;
  width: 100%;
  overflow: hidden;
  height: 5rem;
  box-shadow: 0px 1px 3.6px rgba(0, 0, 0, 0.052),
    0px 2.6px 10px rgba(0, 0, 0, 0.075), 0px 6.3px 24.1px rgba(0, 0, 0, 0.098),
    0px 21px 80px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    position: relative;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: ease 0.2s;
}

.more-blog-card:hover{
  background-color: #fff;
}

.more-blog-card .image{
  height: 100%;
  width: 35%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.more-blog-card .title {
  font-size: 0.8rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 4rem;
  display: flex;
  align-items: center;
  padding-top: 0.5rem;
  padding-left: 0.5rem;
}


.date-posted{
  position: absolute;
  right: 1rem;
  bottom: 0.5rem;
  font-size: 0.7rem;
  font-style: italic;
  color: var(--blue);
}


.more-card-content{
  display: none;
}

.blog-on-active{
  transition: ease 0.2s;
  background-color: var(--blue);
}

.blog-on-active:hover{
  background-color: var(--blue-hover);
}
.blog-on-active .date-posted{
  color: var(--bg);
}

@media (max-width: 700px) {

  .blog-quote-container {
    flex-direction: column;
    padding-right: 0.7rem;
    margin-bottom: 3rem;
  }

  .youtube-videos {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }

  .news-container {
    margin-top: 2rem;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
  
}