.block_cont {
  margin: 50px 16px;
}

.is_home .block_cont {
  margin: 100px 16px 50px;
}

.block_cont.full_width {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1200px) {
  .block_cont {
    margin: 50px 16px 16px;
  }
  .block_cont.full_width {
    margin-left: 0;
    margin-right: 0;
  }
}

.block_cont.is_first {
  margin-top: 0;
}



/*
 * image_block
 */


.image_block {
  margin: auto;
}

.image_block.inline {
  max-width: 1248px;
}

.is_home .image_block.inline {
  max-width: 1248px;
}

.image_block .image_link {
  display: block;
}

.image_block .image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left;
  max-height: 95vh;
}

.block_cont.full_width .image_block  .image {
  max-height: unset;
}

.image_block .mobile_image + .image {
  display: none;
}

@media (min-width: 768px) {
  .image_block .mobile_image + .image {
    display: block;
  }
}

@media (min-width: 768px) {
  .image_block .mobile_image {
    display: none;
  }
}

.image_block .caption {
  font-family: 'NBAkademieMono';
  letter-spacing: -0.1em;
  font-size: 13px;
  color: #555;
  margin: 0px auto 0;
}

.image_block.full_width .caption {
  margin: 0px 16px 0;
}



/*
 * text_block
 */


.text_block {
  max-width: 665px;
  font-size: 17px;
  margin: 0 auto;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .text_block {
    font-size: 18px;
  }
}

.text_block.center {
  text-align: center;
}

.text_block.right {
  text-align: right;
}

.text_block p {
  text-indent: 50px;
  margin: 0;
}

.content_page .text_block p {
  text-indent: 0;
  margin-top: 1.4em;
}

/*
 * two_column_block
 */


.two_column_block {
  max-width: 1000px;
  margin: auto;
}

.two_column_block:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.two_column_block .col {
  width: calc(50% - 30px);
  float: left;
}

.two_column_block .col_70 {
  width: calc(70% - 30px);
}

.two_column_block .col_30 {
  width: calc(30% - 30px);
}

.two_column_block .col + .col {
  margin-left: 60px;
}

@media (max-width: 1200px) {
  .two_column_block .col {
    float: none;
    width: auto;
  }

  .two_column_block .col + .col {
    margin-left: 0;
    margin-top: 1.4em;
  }
}

.two_column_block .col .block_cont {
  margin: 40px 0 0;
  break-inside: avoid-column;
}

.two_column_block .col .block_cont:first-child {
  margin-top: 0;
}


/*
 * columns_block
 */

.columns_block {
  margin: auto;
  display: grid;
}

.columns_block.max_width_1600 {
  max-width: 1600px;
}

.columns_block.max_width_1000 {
  max-width: 1000px;
}

.columns_block .col {
  min-width: 0;
  min-height: 1px;
}

.columns_block .col .block_cont {
  margin: 40px 0 0;
  break-inside: avoid-column;
}

.columns_block.white_background .col {
  background: #fff;
}

@media (max-width: 900px) {
  .columns_block {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 600px) {
  .columns_block {
    grid-template-columns: 1fr !important;
  }
}

.columns_block .col .block_cont {
  margin: 40px 0 0;
  break-inside: avoid-column;
}

.columns_block.white_background .col {
  background: #fff;
}


.columns_block .col .block_cont:first-child {
  margin-top: 0;
}





.image_2_column_block {
  max-width: 1800px;
  margin: auto;
}

.image_2_column_block:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.image_2_column_block .col {
  width: calc(50% - 30px);
  float: left;
}

.image_2_column_block .col + .col {
  margin-left: 60px;
}

@media (max-width: 1200px) {
  .image_2_column_block .col {
    float: none;
    width: auto;
  }

  .image_2_column_block .col + .col {
    margin-left: 0;
    margin-top: 2em;
  }
}

.image_2_column_block .col_image {
  width: 100%;
  display: block;
  height: auto;
}




/*
 * anchor block
 */

.anchor_block {
  transform: translateY(-80px);/* scroll past header */
}




/* inline accordion block */


.inline_accordion_block .accordion_title {
  max-width: 1000px;
  margin: auto;
  cursor: pointer;
  font-size: 1.2em;
  font-style: italic;
  font-weight: bold;
}
.inline_accordion_block .items_block {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 1em;
}
.inline_accordion_block .items_block.active {
  display: block;
}

.inline_accordion_block .items_block .block_cont {
  margin: 20px 0;
}


/* boxed accordion block */


.boxed_accordion_block .heading {
  font-size: inherit;
  margin: 0;
}

.boxed_accordion_block .title {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  padding: 1em 2.5em 1em 1em;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  position: relative;
  text-decoration: none;
}

.boxed_accordion_block .title:hover {
  opacity: 0.9;
}

.boxed_accordion_block .title:after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  width: 3em;
  height: 100%;
  background: url('/static/images/chevron_right_white.svg') center/2em no-repeat;
  transform: rotate(90deg);
  transform-origin: center;
}

.boxed_accordion_block.active .title:after {
  transform: rotate(-90deg);
}

.boxed_accordion_block .items_block {
  display: none;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2em;
  box-sizing: border-box;
  border: 2px solid #000;
  border-top: none;
}

.boxed_accordion_block.active .items_block {
  display: block;
}

.boxed_accordion_block .items_block .block_cont {
  margin: 20px 0;
}


/* covers block */


.covers_block {
  max-width: 1000px;
  margin: auto;
}

.covers_block .covers_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .covers_block .covers_grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.covers_block .cover_item {
  position: relative;
  aspect-ratio: 500 / 650;
  overflow: hidden;
}

.covers_block .cover_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}


/* embed block */


.embed_block.content_width {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.embed_block_cont.full_width {
  background: #000;
}
.embed_block.full_width {
  /* 
   * We dont want the height to be more than 100vh - 80px:
   * A) height = 56.25% width
   * B) height < 100vh - 80px
   * Solving:
   *         height < 100vh - 80px
   * 0.5625 * width < 100vh - 80px
   *          width < (100vh - 80px) / 0.5625
   *          width < (100vh - 80px) * 1.7777
   *          width < 177.77vh - 141.216px
   */
  max-width: calc(177.77vh - 141.216px);
  margin: auto;
}
.embed_block .responsive-object {
  position: relative;
}
.embed_block .responsive-object iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
}


.html_block {
  margin: 0 auto;
}

.html_block.small {
  max-width: 665px;
}

.html_block.medium {
  max-width: 976px;
}


/*
 * button block
 */

.button_block_cont {
  margin: 50px 50px;
}

@media (max-width: 1200px) {
  .button_block_cont {
    margin: 50px 20px 20px;
  }
}

.button_block {
  margin: auto;
  max-width: 1000px;
}

.two_column_block .button_block_cont {
  margin: 1em 0;
}

.inline_accordion_block .button_block_cont {
  margin: 1em 0;
}

.boxed_accordion_block .button_block_cont {
  margin: 1em 0;
}

.button_block .button {
  color: #fff;
  background: #000;
  border: 2px solid #000;
  font-size: 1.2em;
  font-family: 'PPKyoto', sans-serif;
  font-weight: 700;
  padding: 0.6em 2em;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
  cursor: pointer;
  border-radius: 5px;
}

.button_block .button.button-1 {
  background: #000;
  border: 2px solid #000;
}

.button_block .button.button-2 {
  background: #000;
  border: 2px solid #000;
}

.button_block .button.button-3 {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.button_block .button.button-4 {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.button_block.left {
  text-align: left;
}

.button_block.center {
  text-align: center;
}

.button_block.right {
  text-align: right;
}


/*
 * reduce_space_block
 */

@media (max-width: 1200px) {
  .reduce_space_block.desktop {
    display: none;
  }
}

.reduce_space_block.mobile {
  display: none;
}

@media (max-width: 1200px) {
  .reduce_space_block.mobile {
    display: block;
  }
}


.list_block {
  margin: auto;
  column-count: 3;
  column-gap: 30px;
  max-width: 1000px;
}

.list_block.full_width {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

@media (max-width: 1200px) {
  .list_block {
    column-count: 2 !important;
  }
}

.list_block .block_cont {
  margin: 40px 0 0;
  break-inside: avoid-column;
}

.list_block .block_cont:first-child {
  margin-top: 0;
}




/*
 * theme_block
 */

.theme_block {
  overflow: hidden;
  position: relative;
  margin: 50px 0 0;
}

.theme_block.parallax {
  min-height: 50vh;
}

@media (max-width: 1200px) {
  .theme_block {
    margin: 50px 0 0;
  }
}


.theme_block .desktop_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.theme_block.parallax .desktop_bg {
  height: 100vh;
  background-attachment: fixed;
}

@media (max-width: 900px) {
  .theme_block .desktop_bg {
    display: none;
  }
}

.theme_block .mobile_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
  display: none;
}

@media (max-width: 900px) {
  .theme_block .mobile_bg {
    display: block;
  }
}

.theme_block.theme-1 .richtext {
  color: var(--sand);
}
.theme_block.theme-1 .col * {
  color: var(--sand);
}
.theme_block.theme-1 .desktop_bg,
.theme_block.theme-1 .mobile_bg {
  background-color: var(--pine);
}

.theme_block.theme-2 .richtext * {
  color: #000;
}
.theme_block.theme-2 .col * {
  color: #000;
}
.theme_block.theme-2 .desktop_bg,
.theme_block.theme-2 .mobile_bg {
  background-color: var(--sand);
}

.theme_block.theme-3 .richtext * {
  color: #000;
}
.theme_block.theme-3 .col * {
  color: #000;
}
.theme_block.theme-3 .desktop_bg,
.theme_block.theme-3 .mobile_bg {
  background-color: var(--ochre);
}

.theme_block.theme-4 .richtext * {
  color: #fff;
}
.theme_block.theme-4 .col * {
  color: #fff;
}
.theme_block.theme-4 .desktop_bg,
.theme_block.theme-4 .mobile_bg {
  background-color: var(--earth);
}

.theme_block.theme-5 .richtext * {
  color: #fff;
}
.theme_block.theme-5 .col * {
  color: #fff;
}
.theme_block.theme-5 .desktop_bg,
.theme_block.theme-5 .mobile_bg {
  background-color: var(--basalt);
}

.theme_block > .block_cont:last-of-type {
  padding-bottom: 50px;
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .theme_block > .block_cont:last-of-type {
    padding-bottom: 50px;
  }
}

.theme_block + .theme_block {
  margin-top: 0;
}



/*
 * video_block
 */

.video_block {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: center/cover;
  aspect-ratio: 16 / 9;
}

.video_block.full_width {
  max-width: none;
  width: 100%;
}

.video_block .video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


/* Home top block 2:1:4 */

.home_top_block {
  max-width: 1280px;
  padding: 0 16px;
  margin: 100px auto 20px;
  display: grid;
  grid-column-gap: 32px;
  grid-row-gap: 40px;
  justify-content: space-evenly;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .home_top_block {
    grid-template-columns: 5fr 3fr;
  }
}

@media (min-width: 976px) {
  .home_top_block {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home_top_block .lede {
  grid-row: 1;
  grid-column: auto;
  min-width: 0;
}

@media (min-width: 576px) {
  .home_top_block .lede {
    grid-row: 1;
    grid-column: 1;
  }
}

@media (min-width: 976px) {
  .home_top_block .lede {
    grid-column: 2 / span 2;
    grid-row: 1;
  }
}


.home_top_block .offlede {
  grid-row: 3;
  grid-column: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-row-gap: 40px;
  row-gap: 40px;
}

@media (min-width: 576px) {
  .home_top_block .offlede {
    grid-row: 2;
    grid-column: 1 / span 2;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 32px;
  }
}

@media (min-width: 976px) {
  .home_top_block .offlede {
    grid-row: 1;
    grid-column: 1;
    grid-template-columns: 1fr;
  }
}


.home_top_block .stacked {
  grid-row: 2;
  grid-column: auto;
  min-width: 0;
}

@media (min-width: 576px) {
  .home_top_block .stacked {
    grid-row: 1;
    grid-column: 2;
  }
}

@media (min-width: 976px) {
  .home_top_block .stacked {
    grid-row: 1;
    grid-column: 4;
  }
}


.home_top_block .offlede .standard_article {
  min-width: 0;
}

.home_top_block .standard_article .dek {
  display: none;
}


.home_top_block .stacked .stacked_article {
  margin-bottom: 40px;
}



/* Home hero block */


.home_hero_block {
}

.home_hero_block .youtube {
  position: relative;
  padding-top: 56.25%;
}

.home_hero_block .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.home_hero_block .img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  max-height: calc(100vh - 80px - 200px);
}

.home_hero_block .img_link {
  display: block;
}

.home_hero_block .caption {
  font-family: 'NBAkademieMono';
  letter-spacing: -0.1em;
  color: #555;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  transform: rotate(-90deg) translateY(-100%);
  transform-origin: top right;
}

@media (min-width: 768px) {
  .home_hero_block .caption {
    transform: none;
    padding: 0 16px;
  }
}

.home_hero_block .caption u {
  text-decoration: none;
}

.home_hero_block .caption p {
  display: inline;
}

.home_hero_block .text_cont {
  position: relative;
  max-width: 1280px;
  margin: auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .home_hero_block .text_cont {
    flex-direction: row;
    gap: 50px;
  }
}

.home_hero_block .left {
  flex: 1 1 50%;
}

.home_hero_block .title {
  margin-top: -17px;
  font-size: 33px;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .home_hero_block .title {
    font-size: 53px;
    margin-top: -40px;
    line-height: 1.0;
  }
}

.home_hero_block .title_link {
  text-decoration: none;
}

.home_hero_block .dek {
  font-size: 16px;
  line-height: 1.4;
  flex: 1 1 50%;
}

@media (min-width: 768px) {
  .home_hero_block .dek {
    font-size: 20px;
    margin-top: 15px;
  }
}

.home_hero_block .byline {
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .home_hero_block .byline {
    margin-top: 30px;
    font-size: 25px;
  }
}

.home_hero_block .byline .author {
  color: inherit;
  display: inline;
  text-decoration: none;
}

.home_hero_block .byline .joiner {
  display: inline;
}



/* Home top two block 2:1 */


.home_top_three_block {
  max-width: 1800px;
  padding: 0 16px;
  margin: 100px auto 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 40px;
  grid-column-gap: 32px;
  box-sizing: border-box;
}


@media (min-width: 976px) {
  .home_top_three_block {
    grid-template-columns: 1fr 2fr 1fr;;
  }

  .home_top_three_block .offlede .standard_article:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .home_top_three_block .offlede .standard_article:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }

  .home_top_three_block .offlede {
    display: contents;
  }
}

.home_top_three_block .standard_article .dek {
  display: none;
}

.home_top_three_block .standard_article {
  min-width: 0;
}




/* Subscribe block */


.subscribe_block {
  margin-bottom: 40px;
}

.subscribe_block .col_title_cont {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.subscribe_block .col_title {
  font-size: 22px;
  font-family: 'NBAkademieMono';
  letter-spacing: -0.1em;
  text-decoration: none;
  line-height: 1.4;
}

.subscribe_block .subscribe .grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-column-gap: 32px;
  column-gap: 32px;
}

@media (min-width: 576px) {
  .subscribe_block .subscribe .grid {
    grid-template-columns: 2fr 1fr;
  }
}

.subscribe_block .subscribe .grid .dek {
  font-size: 15px;
  line-height: 1.4;
}

.subscribe_block .subscribe .grid .img_link {
  display: block;
}

.subscribe_block .subscribe .grid .img {
  display: block;
  width: 100%;
  height: auto;
}

.subscribe_block .subscribe .button {
  display: block;
  text-align: center;
  padding: 10px 14px;
  font-weight: 600;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 16px;
  margin-top: 24px;
}


/* Quad belt block */


.quad_belt_block {
  max-width: 1280px;
  padding: 0 16px;
  margin: 60px auto;
  box-sizing: border-box;
  display: grid;
  grid-column-gap: 32px;
  column-gap: 32px;
  grid-row-gap: 40px;
  row-gap: 40px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 576px) {
  .quad_belt_block {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 976px) {
  .quad_belt_block {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quad_belt_block .standard_article {
  min-width: 0;
}


/* Double wide stack belt block */

.double_wide_stack_belt_block {
  max-width: 1280px;
  padding: 0 16px;
  box-sizing: border-box;
  margin: 60px auto;
  display: grid;
  grid-column-gap: 32px;
  grid-row-gap: 40px;
  justify-content: space-evenly;
  grid-template-columns: 1fr;
}

@media (min-width: 976px) {
  .double_wide_stack_belt_block {
    grid-template-columns: repeat(2, 1fr);
  }
}

.double_wide_stack_belt_block .stack {
  display: grid;
  grid-template-columns: auto;
  grid-column-gap: 32px;
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 576px) {
  .double_wide_stack_belt_block .stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
  }
}

.double_wide_stack_belt_block .stacked_article {
  margin-bottom: 40px;
}


/* Double stack block */

.double_stack_block {
  max-width: 1280px;
  padding: 0 16px;
  box-sizing: border-box;
  margin: 60px auto;
}

.double_stack_block .section_title_cont {
}

.double_stack_block .section_title {
  font-size: 22px;
  font-family: 'NBAkademieMono';
  letter-spacing: -0.1em;
  text-decoration: none;
}

.double_stack_block .section_title p {
  display: inline;
}

.double_stack_block .articles {
  display: grid;
  position: relative;
  height: 100%;
  grid-row-gap: 40px;
  grid-column-gap: 32px;
  margin: 25px 0 0;
  padding: 0;
  list-style-type: none;
}

@media (min-width: 976px) {
  .double_stack_block .articles {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
}



/* Home bottom block */


.home_bottom_block {
  max-width: 1280px;
  padding: 0 16px;
  margin: 60px auto 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .home_bottom_block {
    grid-template-columns: repeat(2, 1fr);
  }

  .home_bottom_block > .left {
    grid-column: 1;
    grid-row: 1;
  }

  .home_bottom_block > .middle {
    grid-column: 1;
    grid-row: 2;
  }

  .home_bottom_block > .right {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 1100px) {
  .home_bottom_block {
    grid-template-columns: repeat(3, 1fr);
  }

  .home_bottom_block > .left,
  .home_bottom_block > .middle,
  .home_bottom_block > .right {
    grid-column: auto;
    grid-row: auto;
  }
}

.home_bottom_block .col_title_cont {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 25px;
}

.home_bottom_block .col_title {
  text-decoration: none;
  font-size: 22px;
  font-family: 'NBAkademieMono';
  letter-spacing: -0.1em;
}

.home_bottom_block .podcasts .standard_article {
  margin-top: 40px;
}

.home_bottom_block .podcasts .standard_article:first-child {
  margin-top: 0px;
}


.home_bottom_block .latest .latest_article {
  margin-top: 40px;
}

.home_bottom_block .latest .latest_article:first-child {
  margin-top: 0px;
}

.home_bottom_block .popular_list {
  list-style: none;
  padding: 0;
  counter-reset: step_counter;
  margin: 0;
}


.home_bottom_block .banner {
  display: block;
}

.home_bottom_block .banner_img {
  margin-top: 40px;
  display: block;
  width: 100%;
  height: auto;
}
