.article {
 color: var(--text-color);
 font-family: var(--body-font);
 background: var(--bg-color);
 padding-top: 4rem;
 margin-bottom: 4rem;
 max-width: 1800px;
 margin-left: auto;
 margin-right: auto;
}

.article .article-wrapper {
 margin-left: 4rem;
 margin-right: 4rem;
 margin-top: 1rem;
 max-width: 1800px;
 position: relative;
 display: flex;
 justify-content: center;
}

.article .title-section,
.article .top-section,
.article .bottom-section {
 gap: 10%;
 display: flex;
 justify-content: space-between;
}

.article .bottom-section .right-article-column {
 width: 60%;
 align-items: end;
}

.article .left-article-column {
 width: 20%;
 display: flex;
 flex-direction: column;
 position: relative;
 z-index: 0;
}

.article .right-article-column {
 width: 80%;
 display: flex;
 flex-direction: column;
}

.article .back-link {
 display: inline-block;
 margin-bottom: 40px;
 width: 15rem;
 text-transform: uppercase;
 font-size: .688rem;
 font-weight: 100;
 color: var(--text-color);
 text-decoration: none;
 letter-spacing: .06em;
}

.article .article-title {
 font-family: var(--title-font);
 font-size: 3rem;
 font-weight: 300;
 margin-bottom: 1rem;
 margin-top: 6rem;
 margin-right: 4rem;
 line-height: 1.2;
}

.article .meta-row {
 display: flex;
 justify-content: space-between;
 font-size: .688rem;
 font-weight: 100;
 color: var(--accent-meta);
 margin-bottom: 40px;
 border-top: .1px solid var(--text-color);
 padding-top: 10px;
}

.article .hero-image img {
 width: 100%;
 aspect-ratio: 16/9;
 height: auto;
 object-fit: cover;
 margin: 0 0 1.5rem 0;
 background-position: center;
 background-size: cover;
}

.article .share-sidebar {
 position: absolute;
 padding-top: 1rem;
 border-top: .1px solid var(--text-color);
 width: 15rem;
 font-size: 12px;
 color: var(--accent-hl-alt);
 text-align: left;
 top: 0;
 left: 0;
 right: 0;
 z-index: 1;
 pointer-events: none;
}

.article .share-label {
 display: flex;
 gap: 1rem;
 align-items: center;
 letter-spacing: .08em;
}

.article .share-icon {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 1.2rem;
 height: 1.2rem;
 padding: .4rem;
 border: 0.1px solid var(--text-color);
 border-radius: 50%;
 font-size: .688rem;
}

.top-section .left-article-column .heateor_sss_sharing_container {
  position: relative;
  z-index: 2;
  margin-left: 3rem;
  margin-top: .8rem;
}

.article .tags {
 position: absolute;
 margin: 0;
 margin-top: 0.6rem;
 padding-top: 2rem;
 padding-bottom: 1.5rem;
 width: 15rem;
 font-size: .688rem;
 color: var(--accent-meta);
 border-top: .1px solid var(--text-color);
 border-bottom: .1px solid var(--text-color);
 top: 0;
}

.article .tags h4 {
 margin: 0;
 padding-bottom: 1rem;
 font-size: .688rem;
 font-weight: 500;
 color: var(--accent-hl-alt);
 letter-spacing: .08em;
 text-transform: uppercase;
}

.related-articles {
 margin-top: 0;
}

.related-articles li {
 display: block;
 padding-top: 0.5rem;
 padding-bottom: 0.5rem;
 text-decoration: none;
 color: var(--accent-meta);
}

.related-articles a {
 text-decoration: none;
}

.related-articles a:hover {
 text-decoration: underline;
}

.article .highlight {
 font-family: var(--body-font);
 color: var(--accent-hl-alt);
 text-transform: uppercase;
 font-size: 2rem;
 font-weight: 100;
 letter-spacing: 1px;
 line-height: 1.3;
 margin: 0 0 0 0;
 padding: 0;
 border: none;
}

.article .wp-block-post-content {
 font-size: 1rem;
 font-weight: 200;
}

.article .wp-block-post-content h3 {
 font-family: var(--body-font);
 font-weight: 300;
 margin-top: 2rem;
 margin-bottom: .75rem;
 font-size: 1.75rem;
 line-height: 1.25;
}

.article .wp-block-post-content p {
 margin: 0 0 1rem 0;
}

.article .section-rule {
 margin: 3rem 0 2rem;
 padding-top: 0;
 border-top: none;
}

.article .table-container {
 overflow-x: auto;
}

.article .media-row {
 display: grid;
 grid-template-columns: minmax(180px, 320px) 1fr;
 gap: 4rem;
 align-items: start;
 margin: 4rem 0 4rem 0;
}

.article .media-image {
 width: 100%;
 max-width: 320px;
 background: center/cover no-repeat;
 border-radius: 6px;
 margin: 0;
}

.article .media-content h3 {
 margin-top: 0;
}

.article .styled-list {
 margin: 1rem 0 2rem 1.25rem;
}

.article .styled-list li {
 margin: .35rem 0;
}

.article .circles-4 {
 display: grid;
 grid-template-columns: repeat(4, minmax(8rem, 1fr));
 gap: 1.25rem;
 align-items: start;
 justify-items: center;
 justify-content: center;
 max-width: 100%;
}

.article .image-circle {
 width: clamp(7rem, 18vw, 12rem);
 aspect-ratio: 1/1;
 border-radius: 50%;
 background: #ddd center/cover no-repeat;
 max-width: 100%;
}

.fa-share-alt-square {
 background-color: aqua;
 color: red;
}

.article .wp-block-post-content h3.side-by-side {
 margin-top: 0;
 margin-bottom: 1rem;
}

.bottom-call-to-action .wp-block-buttons {
 margin: 0;
}

.bottom-call-to-action .wp-block-button {
 background: transparent;
 padding: 0;
 border: 0;
 box-shadow: none;
}

.bottom-call-to-action .wp-block-button__link {
 background-color: var(--text-color);
 color: var(--bg-color);
 padding: .3rem .75rem;
 border-radius: 50px;
 text-transform: uppercase;
 font-size: .75rem;
 text-decoration: none;
 border: 0;
 box-shadow: none;
 line-height: inherit;
}

.bottom-call-to-action .wp-block-button__link:hover {
 background-color: var(--button-bg);
 color: var(--text-color);
 transition: transform .3s ease;
}

.wp-block-button.call-to-action-button .wp-block-button__link {
 background-color: var(--text-color);
 color: var(--bg-color);
 padding: .3rem .75rem;
 border-radius: 50px;
 text-transform: uppercase;
 font-size: .75rem;
 text-decoration: none;
}

.top-section .left-article-column {
 display: flex;
 align-items: center;
 gap: 6rem;
}

.top-section .left-article-column>.wp-block-html,
.top-section .left-article-column>.wp-block-shortcode {
 margin: 0;
 padding: 0;
}

.top-section .left-article-column .heateor_sss_sharing_container {
 margin: 0;
 margin-left: 3rem;
 margin-top: 0.8rem;
 padding: 0;
}

  .article .image-block {
    height: auto !important;
    max-height: none !important;
  }
  
  .article .image-block img {
    display: block;
    width: 100% !important;
    height: auto !important;
    object-fit: contain;
  }

@media screen and (max-width:1024px) {
.article {
    --wp--style--global--content-size: 100%;
  }

 .article .left-article-column {
  display: none;
 }

 .article .right-article-column {
  width: 100%;
 }

  .article .title-section .right-article-column {
   width: 100%;
  }

 .article .bottom-section .right-article-column {
  width: 100%;
 }

 .article .article-wrapper {
  margin-left: 2rem;
  margin-right: 2rem;
 }

 .article .tags {
  display: none;
 }

 .article .top-section .left-article-column,
 .article .bottom-section .left-article-column {
  display: none;
 }

 .article .title-section {
  gap: 0;
  flex-direction: column;
 }

 .article .title-section .left-article-column {
  display: block;
  width: auto;
 }

 

 .article .back-link {
  width: auto;
  margin-bottom: 0;
 }
}

@media screen and (max-width: 820px) {
 .article .meta-row {
  margin-bottom: 0;
 }

 .article .media-row {
   gap: 2rem;
   margin-top: 2rem;
   margin-bottom: 2rem;
 }


    .article .image-block {
     height: 100%;
     width: auto;
     object-fit: cover;
    }
  
    .article .image-block img {
     height: 100%;
     width: auto;
    }
}

@media screen and (max-width:768px) {
 .article .article-wrapper {
  padding: 0;
  margin-left: 2rem;
  margin-right: 2rem;
 }

 .article .top-section,
 .article .bottom-section {
  gap: 2rem;
 }

 .article .left-article-column,
 .article .right-article-column {
  width: 100%;
 }

 .article .meta-row {
  flex-direction: column;
  gap: 5px;
 }

 .article .share-sidebar,
 .article .tags {
  display: none;
 }

 .article .highlight {
  font-size: 2rem;
 }

 .article .article-title {
  font-size: 2rem;
  margin-top: 3rem;
  width: 100%;
 }

 .article .media-row {
  grid-template-columns: 1fr;
 }

 .article .circles-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: .25rem;
 }

 .article .image-circle {
  width: clamp(7rem, 22vw, 11rem);
 }

  .article .article-table table {
   border: 0.1px solid var(--text-color);
  }

 .article .article-table td {
  font-size: 0.5rem;
 }
}

@media screen and (min-width: 782px) {
  .article .wp-block-columns:not(.is-not-stacked-on-mobile)
    > .wp-block-column[style*="flex-basis"] {
      flex: 1 1 auto !important; 
     }
}


@media screen and (max-width: 1024px) {

 .article .title-section,
 .article .top-section,
 .article .bottom-section {
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
 }

 .article .title-section .left-article-column,
 .article .top-section .left-article-column,
 .article .bottom-section .left-article-column {
  display: flex;
  width: 100%;
  order: 1;
 }

 .article .top-section .left-article-column {
  align-items: start;
 }

 .article .title-section .right-article-column,
 .article .top-section .right-article-column,
 .article .bottom-section .right-article-column {
  width: 100%;
  order: 2;
 }

 .article .article-wrapper {
  margin-left: 2rem;
  margin-right: 2rem;
 }

  .article .share-label {
   display: none;
  }
 
  .article .share-icon {
   display: none;
  }
 
  .article .share-sidebar {
   position: static;
   top: auto;
   width: auto;
   padding-top: 0;
   border-top: none;
   margin: 0 0 1rem 0;
  }
 
  .article .top-section .left-article-column {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: .75rem;
   min-width: 0;
  }
 
  .article .top-section .left-article-column .heateor_sss_sharing_container {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: .5rem;
   margin: 0 !important;
   padding: 0 !important;
  }
 
  .heateor_sss_sharing_container .heateor_sss_sharing_ul {
   display: flex;
   flex-wrap: wrap;
   gap: .5rem;
   margin: 0 !important;
   padding: 0 !important;
   list-style: none;
  }
 
  .heateor_sss_sharing_container .heateor_sss_sharing_ul li {
   margin: 0 !important;
  }
 
  .article .left-article-column,
  .article .right-article-column {
   min-width: 0;
  }
}

@media screen and (max-width: 768px) {

 .article .title-section,
 .article .top-section {
  gap: 1rem;
 }

  .article .bottom-section {
   gap: 0;
  }

  .article .highlight {
   font-size: 2rem;
   line-height: 110%;
   letter-spacing: -2%;
  }

  .article .share-icon {
  width: 1rem;
  height: 1rem;
  padding: .3rem;
  font-size: .6rem;
 }

   .article .bottom-call-to-action {
     margin-top: 0;
    }

  .article .bottom-call-to-action {
    padding-left: 0;
    padding-right: 0;
  }
}

.article .wp-block-image img,
.article .image-block img[height] {
  height: auto !important;
  max-width: 100%;
  display: block;
}

.article .wp-block-image,
.article figure,
.article .image-block {
  min-width: 0;
  min-height: 0;
}


.article .table-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.article .table-container .wp-block-table.outlined-table {
  margin: 0;
  max-width: 100%;
}

.article .table-container .wp-block-table.outlined-table table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  min-width: 0;
}

.article .table-container .wp-block-table.outlined-table th,
.article .table-container .wp-block-table.outlined-table td {
  border: 0.8px solid var(--text-color);
  padding: .6rem .8rem;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

@media screen and (max-width: 767px) {
  .article .table-container .wp-block-table.outlined-table th,
    .article .table-container .wp-block-table.outlined-table td {
      border: 0.7px solid var(--text-color);
      padding: 0.2rem;
      font-size: 0.5rem;
      line-height: 0.8rem;
    }
}