/* top stories section */
body.home section {
  margin-top: var(--CommonSpacing, 40px);
}

body.home section img {
  background-color: var(--ImageBackground);
  outline: 0;
  background-image: url(../images/logo-transparent.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 30%;
}

body.home .section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

body.home .section-header span {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

body.home .section-header h3 {
  background: var(--Gradient, radial-gradient(186.98% 140.09% at -1.97% 7.72%, #0D7BC0 0%, #0C6298 100%));
  display: inline-block;
  padding: 15px 20px;
  color: #FFF;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px; /* 140% */
}

body.home .section-header a, body.home .section-footer a {
  color: var(--PrimaryBlue, #0D7BC0);
  line-height: 50px;
}

/* mobile section header */
@media (max-width: 900px) {
  body.home .section-header {
    text-align: center;
  }

  body.home .section-header h3 {
    margin: 0 auto;
  }

  body.home .section-header a {
    display: none;
  }
}

body.home .section-footer {
  display: none;
}

/* mobile section footer */
@media (max-width: 900px) {
  body.home .section-footer {
    display: block;
    text-align: center;
  }
}

body.home .story-topic {
  display: inline-block;
}

body.home .story-image img {
  object-fit: cover;
  height: auto;
}

body.home .story-headline {
  text-decoration: none;
}

body.home .read-more {
  display: inline-block;
  color: var(--Black, #12191F);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
  text-decoration: none;
  padding-right: 54px;
  background: url(../images/read-more.svg) no-repeat right center;
}

body.home .read-more.gold {
  background-image: url(../images/read-more-gold.svg);
}

.lead-stories {
  display: flex;
  flex-direction: row;
}

.lead-stories .lead-story {
  flex: 3;
  padding-right: 20px;
}

.lead-stories .lead-story img {
  width: 100%;
  height: auto;
  aspect-ratio: 32/15;
  border-radius: 10px;
  margin-bottom: 30px;
}

.lead-stories .lead-story h1 {
  color: var(--Black, #12191F);
  font-family: Inter;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin: 18px 0 8px 0;
}

.lead-stories .lead-story p {
  color: var(--Black, #12191F);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px; /* 140% */
  margin: 8px 0;
}

.lead-stories .secondary-stories {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 20px;
  border: 0px solid #4B5359;
  border-left-width: 0.5px;
  justify-content: space-between;
}

.lead-stories .secondary-stories .secondary-story {
  display: flex;
}

.lead-stories .secondary-stories .secondary-story :nth-child(1) {
  flex: 2;
}

.lead-stories .secondary-stories .secondary-story > div {
  margin-right: 20px;
}

.lead-stories .secondary-stories .secondary-story h2 {
  color: var(--Black, #12191F);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 140% */
  text-transform: capitalize;
  margin-bottom: 18px;
}

.lead-stories .secondary-stories .secondary-story :nth-child(2) {
  flex: 1;
}

.lead-stories .secondary-stories .secondary-story img {
  width: 100%;
  aspect-ratio: 5/3;
  border-radius: 10px;
}

.lead-stories .secondary-stories .secondary-story > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.lead-stories .secondary-stories .secondary-story > div .story-topic {
  margin-top: auto;
}

@media (max-width: 900px) {
  /* place secondary stories under lead */
  .lead-stories {
    flex-direction: column;
  }

  .lead-stories .lead-story {
    padding-right: 0;
    padding-bottom: 20px;
  }

  .lead-stories .secondary-stories {
    padding-left: 0;
    padding-top: 20px;
    border-left-width: 0;
    border-top-width: 0.5px;
  }
}

@media (min-width: 901px) and (max-width: 1170px) {
  .lead-stories .secondary-stories .secondary-story h2 {
    font-size: 18px;
    line-height: 140%;
  }
}

@media (min-width: 1450px) {
  .lead-stories .secondary-stories .secondary-story h2 {
    font-size: 24px;
    line-height: 140%;
  }  
}

@media (min-width: 1450px) {
  .lead-stories .secondary-stories .secondary-story h2 {
    font-size: 24px;
  }
}

/* trending stories section */
section.weekly-trending {
  border-top: 1px solid var(--PrimaryBlue, #0D7BC0);
  margin-top: 60px;
}

section.weekly-trending h2 {
  color: var(--Black, #12191F);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 20px;
}

section.weekly-trending p {
  margin: 20px auto;
}

section.weekly-trending .top-section {
  display: flex;
  align-items: top;
  gap: 20px;
  margin: var(--CommonSpacing, 40px) auto;
}

section.weekly-trending .bottom-section {
  background: rgba(0, 101, 187, 0.05);
  align-items: top;
  display: flex;
  gap: 20px;
  padding: var(--CommonSpacing, 40px);
}

section.weekly-trending .bottom-section article {
  flex: 1;
}

section.weekly-trending .trending-lead-story {
  flex: 7;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

section.weekly-trending .trending-lead-story > div {
  flex: 2;
}

section.weekly-trending .trending-lead-story a.story-image {
  flex: 3;
}

section.weekly-trending .trending-lead-story .story-topic {
  margin-bottom: 20px;
}

section.weekly-trending .trending-lead-story img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
}

section.weekly-trending .trending-secondary-stories {
  flex: 4;
  padding-left: 20px;
  border: 0px solid var(--Lighter-Black, #4B5359);
  border-left-width: 0.5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}

section.weekly-trending .trending-secondary-stories .trending-secondary-story {
  justify-content: space-between;
}

section.weekly-trending .bottom-section h2 {
  margin-top: 33px;
}

section.weekly-trending .bottom-section .story-image img {
  width: 100%;
  aspect-ratio: 21/10;
  border-radius: 10px;
}

/* weekly-trending mobile */
@media (max-width: 900px) {
  section.weekly-trending .top-section {
    flex-direction: column;
  }

  section.weekly-trending .trending-lead-story {
    flex-direction: column-reverse;
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--Lighter-Black, #4B5359);
  }

  section.weekly-trending .trending-lead-story .story-image img {
    aspect-ratio: 32/15;
  }

  section.weekly-trending .trending-secondary-stories {
    border-left-width: 0px;
    padding-left: 0;
  }

  section.weekly-trending .trending-secondary-stories article {
    padding-bottom: 20px;
    border-bottom: 0.5px solid var(--Lighter-Black, #4B5359);
  }

  section.weekly-trending .bottom-section {
    display: flex;
    flex-direction: column;
  }

  section.weekly-trending .bottom-section hr {
    display: none;
  }

  section.weekly-trending .bottom-section article {
    display: flex;
    flex-direction: row-reverse;
  }

  section.weekly-trending .bottom-section article > div {
    flex: 2;
  }

  section.weekly-trending .bottom-section article > div h2 {
    margin-top: 0;
    font-size: 20px;
  }

  section.weekly-trending .bottom-section article > a.story-image {
    display: block;
    flex: 1;
    margin-left: 20px;
  }

  section.weekly-trending .bottom-section article > a.story-image img {
    aspect-ratio: 13/11;
  }


}

@media (max-width: 600px) {
  section.weekly-trending .bottom-section article > div h2 {
    font-size: 16px;
  }
}


/* explore-topics sections */
section.topics-cloud {
  border-radius: 10px;
  background: var(--Gradient, radial-gradient(186.98% 140.09% at -1.97% 7.72%, #0D7BC0 0%, #0C6298 100%));
  padding: var(--CommonSpacing, 40px);
  margin-top: 67px;
  display: flex;
}

section.topics-cloud > div:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 2;
}

section.topics-cloud > div.cloud {
  flex: 3;
}

section.topics-cloud > div.cloud a {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 10px;
  border: 1px solid var(--Yellow, #FFCE51);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(2px);
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: none;
  margin-bottom: 24px;
  margin-right: 24px;
}

section.topics-cloud h3 {
  color: #FFF;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  max-width: 300px;
}

section.explore-topics {
  margin-top: 67px;
  border-top: 1px solid var(--PrimaryBlue, #0D7BC0);
}

section.explore-topics .top-section {
  display: flex;
  gap: var(--CommonSpacing, 40px);
}

section.explore-topics .section-header {
  margin-bottom: var(--CommonSpacing, 40px);
}

section.explore-topics .topic-articles {
  display: flex;
  flex: 1;
  flex-direction: column;
}

section.explore-topics .topic-articles > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section.explore-topics .topic-articles h3 {
  color: var(--Black, #12191F);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  padding-bottom: 10px;
  text-transform: capitalize;
  border-bottom: 0.5px solid var(--PrimaryBlue, #0D7BC0);
  min-height: 2.6em;
}

section.explore-topics .topic-articles article h4 {
  margin: 0 0 1em 0;
  color: var(--Black, #12191F);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
}

section.explore-topics .topic-articles article {
  border-bottom: 0.5px solid var(--Lighter-Black, #4B5359);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

section.explore-topics .topic-articles article a.story-image {
  display: block;
}

section.explore-topics .topic-articles article a.story-image img {
  margin: 1em 0;
  border-radius: 10px;
  aspect-ratio: 15/9;
  width: 100%;
}

/* explore-topics mobile */
@media (max-width: 900px) {
  section.topics-cloud {
    flex-direction: column;
    padding: 40px 20px;
  }

  section.topics-cloud > div:nth-child(1) {
    padding: 20px 0 40px 0;
  }

  section.topics-cloud  h3 {
    font-size: 36px;
    text-align: center;
  }

  section.topics-cloud .cloud {
    text-align: center;
    font-size: 20px;
  }

  section.topics-cloud > div.cloud a {
    margin-right: 4px;
    margin-bottom: 8px;
  }

  section.explore-topics .top-section {
    flex-direction: column;
  }

  section.explore-topics .topic-articles article a.story-image img {
    aspect-ratio: 16/9;
  }
}

/* columns */
section.columns {
  border-top: 1px solid var(--PrimaryBlue, #0D7BC0);
}

section.columns .top-section, section.columns .bottom-section {
  display: flex;
  gap: var(--CommonSpacing, 40px);
}

section.columns .top-section {
  padding-bottom: 20px;
}

section.columns .bottom-section {
  padding: var(--CommonSpacing, 40px);
  padding-top: 20px;
  background-color: rgba(0, 101, 187, 0.05);
  margin-left: -40px;
  margin-right: -40px;
}

section.columns article {
  flex: 1;
}

section.columns article .column-author img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

section.columns article h4 {
  color: var(--Black, #12191F);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin: 20px auto;
}

/* mobile columns */
@media (max-width: 900px) {
  section.columns .top-section,
  section.columns .bottom-section {
    flex-direction: column;
    gap: 0;
  }

  section.columns .top-section article,
  section.columns .bottom-section article {
    padding-bottom: 20px;
    padding: var(--CommonSpacing, 40px);
    margin-left: -12px;
    margin-right: -12px;
  }

  section.columns .top-section article:nth-child(odd), section.columns .bottom-section article:nth-child(odd) {
    background-color: rgba(0, 101, 187, 0.05);
  }

  section.columns .bottom-section {
    background-color: transparent;
  }

  section.columns .top-section article:last-child {
    border-bottom: 0;
  }

  section.columns .bottom-section article {
    display: flex;
    flex-direction: column;
  }
}

/* about section */
section.about-stl-review {
  margin-top: 67px;
  max-width: none;
  background: var(--Gradient, radial-gradient(186.98% 140.09% at -1.97% 7.72%, #0D7BC0 0%, #0C6298 100%));
}

section.about-stl-review > div {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

section.about-stl-review > div > div:nth-child(1) {
  flex: 1;
  padding: 100px var(--CommonSpacing, 40px);
  color: #FFF;
}

section.about-stl-review > div > div:nth-child(1) h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

section.about-stl-review > div > div:nth-child(1) p {
  margin: 1em 0;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  max-width: 420px;
}

section.about-stl-review > div > div:nth-child(1) a.read-more {
  color: #FFF;
}

section.about-stl-review > div > div:nth-child(2) {
  flex: 1;
  background: url(../images/arch.jpg) no-repeat center;
  background-size: cover;
}

/* about mobile */
@media (max-width: 900px) {
  section.about-stl-review > div {
    flex-direction: column-reverse;
  }

  section.about-stl-review > div > div:nth-child(2) {
    aspect-ratio: 1/1;
    width: 100%;
    display: block;
  }
}

/* videos */
section.latest-videos {
  margin-top: 67px;
  border-top: 1px solid var(--PrimaryBlue, #0D7BC0);
}

section.latest-videos .top-section {
  display: flex;
  gap: 20px;
}

section.latest-videos .top-section article {
  flex: 1;
  max-width: 400px;
  width: 100%;
}

section.latest-videos a.video-thumbnail {
  display: block;
  aspect-ratio: 16/9;
  background-color: var(--ImageBackground);
  outline: 0;
  background-image: url(../images/logo-transparent.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.latest-videos a.video-thumbnail div.play-button {
  border-radius: 50%;
  border: solid 1px #FFF;
  width: 60px;
  height: 60px;
  -webkit-backdrop-filter: blur(5.970149517059326px);
  backdrop-filter: blur(5.970149517059326px);
  background: url(../images/play-button.svg) no-repeat;
  background-size: 35%;
  background-position: 55% center;
  transition: transform 0.2s ease-in-out;
}

section.latest-videos a.video-thumbnail:hover {
  opacity: 1;
}

section.latest-videos a.video-thumbnail:hover div.play-button {
  transform: scale(1.1);
}

section.latest-videos .top-section article h4 {
  color: var(--Black, #12191F);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  margin: 1em 0;
}

@media (max-width: 900px) {
  section.latest-videos .top-section {
    flex-direction: column;
    align-items: center;
  }

  section.latest-videos a.video-thumbnail {
    aspect-ratio: 16/9;
  }
}

/* archive */
section.explore-archive {
  margin-top: 67px;
  max-width: none;
  background: var(--Gradient, radial-gradient(186.98% 140.09% at -1.97% 7.72%, #0D7BC0 0%, #0C6298 100%));
}

section.explore-archive > div {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

section.explore-archive > div > div:nth-child(2) {
  flex: 1;
  padding: 200px var(--CommonSpacing, 40px);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.explore-archive > div > div:nth-child(2) h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
}

section.explore-archive > div > div:nth-child(2) p {
  margin: 1em 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  max-width: 420px;
}

section.explore-archive > div > div:nth-child(2) a.read-more {
  color: #FFF;
}

section.explore-archive > div > div:nth-child(1) {
  flex: 1;
  background: url(../images/archive.jpg) no-repeat center;
  background-size: cover;
}

/* explore archive mobile */
@media (max-width: 900px) {
  section.explore-archive > div {
    flex-direction: column;
  }

  section.explore-archive > div > div:nth-child(1) {
    aspect-ratio: 1/1;
    width: 100%;
    display: block;
  }
}