:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.share-popup {
  margin: 15rem 15rem 0rem 0rem;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.share-popup .share-popup-content {
  direction: ltr;
  background: white;
  border-radius: 0.6rem;
  padding: 2.2rem;
  position: relative;
  width: 40rem;
  box-shadow: 0 0 1.1586rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width > 768px) {
  .share-popup .share-popup-content {
    width: 90%;
    max-width: 40rem;
  }
}
.share-popup .share-popup-content .close-popup {
  position: absolute;
  top: 2.2rem;
  left: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black-main);
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s ease;
}
.share-popup .share-popup-content .close-popup svg {
  width: 100%;
  height: 100%;
}
.share-popup .share-popup-content .close-popup:hover {
  opacity: 0.7;
}
.share-popup .share-popup-content .popup-header {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.share-popup .share-popup-content .popup-header svg {
  width: 2.0726rem;
  height: 2.1364rem;
  flex-shrink: 0;
}
.share-popup .share-popup-content .popup-header h3 {
  color: var(--neutral-800, #333032);
  text-align: right;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}
.share-popup .share-popup-content .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .link-section {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-end;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .link-section .link-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-800);
  text-align: right;
  margin: 0;
}
.share-popup .share-popup-content .popup-content .link-section .link-container {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0.4rem;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .link-url {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(51, 48, 50, 0.5);
  text-transform: uppercase;
  margin: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-800);
  transition: opacity 0.2s ease;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn svg {
  width: 100%;
  height: 100%;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn:hover {
  opacity: 0.7;
}
.share-popup .share-popup-content .popup-content .divider {
  width: 100%;
  height: 0.1rem;
  background: var(--neutral-200, #E5E5E5);
}
.share-popup .share-popup-content .popup-content .platform-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons .platform-icon {
  border: none;
  border-radius: 0.4rem;
  width: 3.2818rem;
  height: 3.2818rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons .platform-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-800, #333032);
  text-align: right;
  margin: 0;
  white-space: nowrap;
}

body.share-popup-open {
  overflow: hidden;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.border-container {
  position: relative;
}

.border {
  position: absolute;
  background-color: var(--red-30);
}
.border.dark {
  background-color: var(--red-main);
}
.border.light {
  background-color: var(--grey-10);
}
.border.white {
  background-color: var(--white-main);
}
.border.red {
  background-color: var(--red-30);
}
.border.black {
  background-color: var(--black-main, #333032);
}
.border.transparent {
  background-color: rgba(255, 255, 255, 0.2);
}
.border.black.transparent {
  background-color: rgba(51, 48, 50, 0.2);
}
.border.white.transparent {
  background-color: rgba(255, 255, 255, 0.2);
}
.border.gray {
  background: rgba(51, 48, 50, 0.2);
}

.border.top {
  top: 0;
  left: 0;
}
[lang=en] .border.top {
  right: 0;
  left: auto;
}
.border.top {
  height: 1px;
  width: 0;
}

.border.top-fullwidth {
  top: 0;
  width: 200vw;
  left: -100vw;
}

.border.horizontal-fullwidth {
  height: 1px;
  width: 200vw;
  right: -100vw;
}

.border.bottom-fullwidth {
  bottom: 0;
  height: 1px;
  width: 200vw;
  left: -100vw;
}

.border.top.active-stroke {
  animation: drawBorderTop 1s forwards;
}

.border.right {
  top: 0;
  right: 0;
}
[lang=en] .border.right {
  left: 0;
  right: auto;
}
.border.right {
  width: 1px;
  height: 0;
}

.border.right.active-stroke {
  animation: drawBorderRight 1s forwards;
}

.border.bottom {
  bottom: 0;
  left: 0;
}
[lang=en] .border.bottom {
  right: 0;
  left: auto;
}
.border.bottom {
  height: 1px;
  width: 0;
}

.border.bottom.active-stroke {
  animation: drawBorderBottom 1s forwards;
}

.border.left {
  top: 0;
  left: 0;
}
[lang=en] .border.left {
  right: 0;
  left: auto;
}
.border.left {
  width: 1px;
  height: 0;
}

.border.left.active-stroke {
  animation: drawBorderLeft 1s forwards;
}

@keyframes drawBorderTop {
  to {
    width: 100%;
  }
}
@keyframes drawBorderRight {
  to {
    height: 100%;
  }
}
@keyframes drawBorderBottom {
  to {
    width: 100%;
  }
}
@keyframes drawBorderLeft {
  to {
    height: 100%;
  }
}
.border.left.one-six {
  left: 16.667%;
}
[lang=en] .border.left.one-six {
  right: 16.667%;
  left: auto;
}
.border.left.one-three {
  left: 33.333%;
}
[lang=en] .border.left.one-three {
  right: 33.333%;
  left: auto;
}
.border.left.one-two {
  left: 50%;
}
[lang=en] .border.left.one-two {
  right: 50%;
  left: auto;
}
.border.left.two-three {
  left: 66.667%;
}
[lang=en] .border.left.two-three {
  right: 66.667%;
  left: auto;
}
.border.left.two-three-vertical {
  left: 33.23%;
}
[lang=en] .border.left.two-three-vertical {
  right: 33.23%;
  left: auto;
}
.border.left.five-six {
  left: 83.333%;
}
[lang=en] .border.left.five-six {
  right: 83.333%;
  left: auto;
}

.border.top.one-six {
  top: 16.667%;
}
.border.top.one-four {
  top: 25%;
}
.border.top.twenty-nine {
  top: 28.4%;
}
.border.top.one-three {
  top: 33.333%;
}
.border.top.two-three {
  top: 66.667%;
}
.border.top.one-two {
  top: 50%;
}
.border.top.sixty-five {
  top: 64.2%;
}
.border.top.three-four {
  top: 75%;
}

.timeline-wrapper.year-active .border.top.one-two {
  top: 24%;
}
.timeline-wrapper.year-active .border.top.three-four {
  top: 85%;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.main-layout {
  display: grid;
  grid-template-columns: 3.6rem 1fr 3.6rem;
}
@media (width > 768px) {
  .main-layout {
    grid-template-columns: 10rem 1fr 10rem;
    --hue-cell: calc((100vw - 20rem) / 7);
  }
}
@media (width > 1440px) {
  .main-layout {
    grid-template-columns: 1fr 124rem 1fr;
    --hue-cell: calc(124rem / 7);
  }
}
.main-layout > * {
  grid-column: 2;
}
.main-layout > .full {
  grid-column: 1/-1;
}

@media (width > 768px) {
  .main-layout-desktop {
    display: grid;
    grid-template-columns: 10rem 1fr 10rem;
    --hue-cell: calc((100vw - 20rem) / 7);
  }
}
@media (width > 768px) and (width > 1440px) {
  .main-layout-desktop {
    grid-template-columns: 1fr 124rem 1fr;
    --hue-cell: calc(124rem / 7);
  }
}
@media (width > 768px) {
  .main-layout-desktop > *:not(.border) {
    grid-column: 2;
  }
  .main-layout-desktop > .full {
    grid-column: 1/-1;
  }
}

.single-blog-breadcrumbs.breadcrumbs {
  padding: 1.6rem 0;
}

.single-blog-page {
  padding-top: 3rem;
  max-width: 100%;
  direction: rtl;
  text-align: right;
  overflow: hidden;
}
@media (width > 768px) {
  .single-blog-page {
    padding-top: var(--header-height);
  }
}

.content-layout {
  grid-column: 2;
}

/* ------------------------------
   BLOG META (Label + Hue)
------------------------------ */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0 3.6rem 2.2rem;
  flex-wrap: wrap;
}
@media (width > 768px) {
  .blog-meta {
    max-width: 124rem;
    margin: 0 2.6rem 2.2rem;
  }
}

/* ------------------------------
   BLOG LABELS (multiple categories)
------------------------------ */
.blog-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 3.8rem;
}
@media (width > 768px) {
  .blog-labels {
    margin-top: 0;
    padding-top: 4.1rem;
  }
}
.blog-labels .blog-label {
  font-family: "Simpler", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  padding: 0.6rem 1.2rem;
  background-color: rgba(217, 217, 217, 0.2);
  color: var(--red-main);
  border-radius: 0.4rem;
  border: 1px solid rgba(217, 217, 217, 0.2);
  white-space: nowrap;
}

/* ------------------------------
   BLOG HEADER (Title + Share)
------------------------------ */
.blog-header {
  max-width: 23.7rem;
  margin: 0 2.6rem 3.2rem;
  position: relative;
}
@media (width > 768px) {
  .blog-header {
    max-width: 124rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }
}

.blog-title {
  font-family: "Simpler", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--red-main);
  margin-bottom: 1.6rem;
  max-width: 23.7rem;
}
@media (width > 768px) {
  .blog-title {
    font-size: 4.4rem;
    max-width: 52.1rem;
    flex: 1;
    margin-bottom: 0;
  }
}

.share {
  display: flex;
  align-items: center;
  width: 7.1rem;
  height: 2.4rem;
  flex-shrink: 0;
  gap: 0.4rem;
  padding: 0rem;
  margin-left: 3.8rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
@media (width > 768px) {
  .share {
    margin-left: 0;
    margin-top: 0;
  }
}
.share:hover {
  opacity: 0.7;
}
.share a {
  color: var(--Main-Black, #000);
  text-align: right;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.016rem;
  text-decoration: none;
}
.share img {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

/* ------------------------------
   BLOG FEATURED IMAGE WITH GRID
------------------------------ */
.blog-image-container {
  position: relative;
  width: 100%;
  height: 25.2rem;
  margin-bottom: 3.2rem;
  overflow: hidden;
}
@media (width > 768px) {
  .blog-image-container {
    height: 35.2rem;
    margin-bottom: 0;
  }
}
.blog-image-container .blog-featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.blog-image-container .blog-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.blog-image-container .blog-grid-overlay .grid-hue-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 33.3333333333%;
  height: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 1.1rem;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-hue-item {
    width: 14.2857142857%;
    height: 50%;
  }
}
.blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  color: white;
  width: 100%;
  max-width: 5rem;
  padding-left: 1.1rem;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text {
    max-width: 6.9rem;
  }
}
.blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text .hue-name-line {
  font-family: Nexa, Simpler;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
  color: white;
  text-align: left;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text .hue-name-line {
    font-size: 1.7rem;
  }
}
.blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text .hue-code-line {
  font-family: Nexa, Simpler;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
  color: white;
  text-align: left;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-hue-item .hue-grid-text .hue-code-line {
    font-size: 1.4rem;
  }
}
.blog-image-container .blog-grid-overlay .grid-blur-item-3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.3333333333%;
  height: 50%;
  background: var(--White-Grid, rgba(255, 255, 255, 0.3));
  backdrop-filter: blur(20px);
  z-index: 1;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-blur-item-3 {
    left: 14.2857142857%;
    right: auto;
    width: 14.2857142857%;
    height: 50%;
  }
}
.blog-image-container .blog-grid-overlay .grid-line {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
}
.blog-image-container .blog-grid-overlay .grid-line.left {
  width: 1px;
  height: 100%;
  top: 0;
}
.blog-image-container .blog-grid-overlay .grid-line.left.one-three {
  left: 33.3333333333%;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.one-three {
    left: 14.2857142857%;
  }
}
.blog-image-container .blog-grid-overlay .grid-line.left.two-three {
  left: 66.6666666667%;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.two-three {
    left: 28.5714285714%;
  }
}
.blog-image-container .blog-grid-overlay .grid-line.left.three-seven, .blog-image-container .blog-grid-overlay .grid-line.left.four-seven, .blog-image-container .blog-grid-overlay .grid-line.left.five-seven, .blog-image-container .blog-grid-overlay .grid-line.left.six-seven {
  display: none;
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.three-seven, .blog-image-container .blog-grid-overlay .grid-line.left.four-seven, .blog-image-container .blog-grid-overlay .grid-line.left.five-seven, .blog-image-container .blog-grid-overlay .grid-line.left.six-seven {
    display: block;
  }
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.three-seven {
    left: 42.8571428571%;
  }
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.four-seven {
    left: 57.1428571429%;
  }
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.five-seven {
    left: 71.4285714286%;
  }
}
@media (width > 768px) {
  .blog-image-container .blog-grid-overlay .grid-line.left.six-seven {
    left: 85.7142857143%;
  }
}
.blog-image-container .blog-grid-overlay .grid-line.top {
  height: 1px;
  width: 100%;
  left: 0;
}
.blog-image-container .blog-grid-overlay .grid-line.top.one-two {
  top: 50%;
}

/* ------------------------------
   HUE COLOR SQUARE
------------------------------ */
.blog-hue-square {
  width: 100%;
  margin-bottom: 3.2rem;
  padding: 0 3.6rem;
}
.blog-hue-square .hue-square-content {
  width: 100%;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hue-square .hue-square-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  color: white;
}
.blog-hue-square .hue-square-text .hue-name-line {
  font-family: Nexa, Simpler;
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
}
.blog-hue-square .hue-square-text .hue-code-line {
  font-family: Nexa, Simpler;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (width > 768px) {
  .blog-hue-square {
    padding: 0;
    max-width: 120rem;
    margin: 0 auto 3.2rem;
  }
}

/* ------------------------------
   LEARN SECTION
------------------------------ */
.blog-learn-section {
  margin: 6rem 0;
  padding: 0 3.6rem;
  background-color: var(--white-main);
  border-top: 1px solid rgba(219, 0, 50, 0.2);
}
@media (width > 768px) {
  .blog-learn-section {
    padding: 0;
    margin: 6rem auto;
    max-width: 124rem;
  }
}
.blog-learn-section .learn-content {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (width > 768px) {
  .blog-learn-section .learn-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding: 6.4rem 10rem;
  }
}
.blog-learn-section .learn-content-text {
  flex: 1;
}
.blog-learn-section .learn-content-text .learn-title {
  font-family: "Simpler", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--red-main);
  margin-bottom: 2.4rem;
}
@media (width > 768px) {
  .blog-learn-section .learn-content-text .learn-title {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
  }
}
.blog-learn-section .learn-content-text .learn-description {
  font-family: "Simpler", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black-main);
  text-align: right;
}
@media (width > 768px) {
  .blog-learn-section .learn-content-text .learn-description {
    font-size: 1.8rem;
  }
}
.blog-learn-section .learn-content-button {
  display: flex;
  justify-content: flex-start;
}
@media (width > 768px) {
  .blog-learn-section {
    justify-content: flex-start;
    flex-shrink: 0;
  }
}

/* ------------------------------
   MAIN DESCRIPTION
------------------------------ */
.blog-description {
  max-width: 30.9rem;
  margin: 0 3.6rem 3.2rem;
}
.blog-description p {
  font-family: "Simpler", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--black-main);
  margin-bottom: 1.8rem;
  max-width: 30.9rem;
}
@media (width > 768px) {
  .blog-description {
    max-width: 120rem;
    margin: 0 auto 3.2rem;
    padding: 0 10rem;
  }
}

/* ------------------------------
   COLOR PALETTE
------------------------------ */
.blog-color-palette {
  max-width: 30.9rem;
  margin: 4rem auto;
  padding: 0 3.6rem;
}
.blog-color-palette h3 {
  font-family: "Simpler", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black-main);
  margin-bottom: 2.4rem;
  text-align: right;
  max-width: 30.9rem;
}
@media (width > 768px) {
  .blog-color-palette h3 {
    max-width: 100%;
  }
}
.blog-color-palette .color-palette-item {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
  padding: 1.6rem;
  background-color: #f9f9f9;
  border-radius: 0.8rem;
}
@media (width > 768px) {
  .blog-color-palette {
    max-width: 124rem;
    margin: 4rem auto;
    padding: 0 10rem;
  }
}

/* ------------------------------
   GUTENBERG CONTENT
------------------------------ */
@media (width > 768px) {
  .blog-content {
    max-width: 124rem;
    margin-top: 8.5rem;
    padding: 0;
  }
}
.blog-content {
  max-width: 124rem;
}
.blog-content a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}
.blog-content p {
  font-family: "Simpler", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--black-main);
  margin-bottom: 1.6rem;
  max-width: 30.9rem;
  margin: 0 3.6rem;
  padding-top: 1.2rem;
  padding-bottom: 3.2rem;
}
@media (width > 768px) {
  .blog-content p {
    max-width: 67.3rem;
    margin: 0 auto;
    font-size: 2.2rem;
    letter-spacing: 0rem;
    margin-right: 32.7%;
  }
}
.blog-content img {
  width: 100%;
  height: 25.3rem;
  display: block;
  margin: 1.2rem 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (width > 768px) {
  .blog-content img {
    height: auto;
    max-height: 60rem;
    margin-right: 32.7%;
    max-width: 77.9rem;
  }
}
.blog-content iframe,
.blog-content .wp-block-embed iframe,
.blog-content video {
  display: block;
  margin: 1.2rem 0;
  width: 100%;
}
@media (width > 768px) {
  .blog-content iframe,
  .blog-content .wp-block-embed iframe,
  .blog-content video {
    margin-right: 32.7%;
    max-width: 77.9rem;
  }
}
.blog-content h2 {
  font-family: "Simpler", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--red-main);
  text-align: right;
  max-width: 30.9rem;
  margin-top: 2.4rem;
  margin: auto 3.6rem;
  padding-bottom: 1.2rem;
}
@media (width > 768px) {
  .blog-content h2 {
    font-size: 3.5rem;
    max-width: 42rem;
    margin: 0 auto;
    letter-spacing: 0rem;
    margin-right: 32.7%;
    padding-top: 2rem;
  }
}
.blog-content h3 {
  font-family: "Simpler", sans-serif;
  font-weight: 700;
  color: var(--red-main);
  margin-top: 3rem;
  margin-bottom: 1.4rem;
}
@media (width > 768px) {
  .blog-content h3 {
    max-width: 120rem;
    margin-right: 32.7%;
  }
}
.blog-content h4 {
  line-height: 2.8rem;
  font-size: 2.4rem;
  margin: 0 3.6rem;
}
@media (width > 768px) {
  .blog-content h4 {
    margin-right: 32.7%;
  }
}
.blog-content ul,
.blog-content ol {
  font-family: "Simpler", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black-main);
  margin: 0 3.6rem;
  padding-top: 1.2rem;
  padding-bottom: 3.2rem;
  padding-inline-start: 2rem;
}
@media (width > 768px) {
  .blog-content ul,
  .blog-content ol {
    max-width: 67.3rem;
    margin: 0 auto;
    font-size: 2.2rem;
    margin-right: 32.7%;
    padding-bottom: 0;
  }
}
.blog-content ul {
  list-style-type: disc;
}
.blog-content ol {
  list-style-type: decimal;
}
.blog-content li {
  list-style: inherit;
  margin-bottom: 0.8rem;
  padding-inline-start: 0.4rem;
}
.blog-content li a {
  font-size: inherit;
}
