/* Article headings */
.article .article_title h3,
.article .article_text h3,
.article .article_bulletPoint h3,
.article .article_captionImage h3,
.article .default_editor h3 {
  display: flex;
  align-items: center;
}

.article .article_title h3::before,
.article .article_text h3::before,
.article .article_bulletPoint h3::before,
.article .article_captionImage h3::before,
.article .default_editor h3::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  background-color: #000;
}

/* Keep generated table-of-contents headings separate from article h3 styling. */
.article .default_editor .c-anchor h3 {
  display: block;
}

.article .default_editor .c-anchor h3::before {
  content: none;
  display: none;
}
/* Article-content links */
.article .article_text a:not(.c-button_arrow),
.article .article_bulletPoint a:not(.c-button_arrow),
.article .article_title a:not(.c-button_arrow),
.article .article_captionImage a:not(.c-button_arrow),
.article .article_table a:not(.c-button_arrow),
.article .default_editor a:not(.c-button_arrow) {
  color: #0066cc;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.article .article_text a:not(.c-button_arrow):hover,
.article .article_bulletPoint a:not(.c-button_arrow):hover,
.article .article_title a:not(.c-button_arrow):hover,
.article .article_captionImage a:not(.c-button_arrow):hover,
.article .article_table a:not(.c-button_arrow):hover,
.article .default_editor a:not(.c-button_arrow):hover {
  opacity: 0.5;
}
.article .default_editor a.c-anchor_link:not(.c-button_arrow) {
  color: inherit;
}
@media (max-width: 750px) {
  .article .article_title h3::before,
  .article .article_text h3::before,
  .article .article_bulletPoint h3::before,
  .article .article_captionImage h3::before,
  .article .default_editor h3::before {
    width: 1.0666666667vw;
    height: 4.2666666667vw;
    margin-right: 2.1333333333vw;
  }
}

@media (min-width: 751px) {
  .article .article_title h3::before,
  .article .article_text h3::before,
  .article .article_bulletPoint h3::before,
  .article .article_captionImage h3::before,
  .article .default_editor h3::before {
    width: 0.2777777778vw;
    height: 1.25vw;
    margin-right: 0.6944444444vw;
  }
}

/* Scrollable article tables */
.article .article_table {
  --table-cell-width: 28.5333333333vw;
  --table-row-height: 32vw;
  --table-cell-font-size: 3.4666666667vw;
  --table-cell-padding: 2.4vw 0 0 1.8666666667vw;
  overflow-x: auto;
  border-radius: 10px;
}

.article .article_table .article_tableInner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.article .article_table .article_tableInner table {
  display: block;
  width: max-content;
  min-width: 100%;
  height: 100% !important;
  table-layout: fixed;
}

.article .article_table .article_tableInner table thead,
.article .article_table .article_tableInner table tbody,
.article .article_table .article_tableInner table tfoot {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.article .article_table .article_tableInner table tr {
  display: flex;
  width: 100%;
}

.article .article_table .article_tableInner table :is(th, td) {
  width: var(--table-cell-width);
  min-width: var(--table-cell-width);
  min-height: var(--table-row-height);
  flex: 1 0 var(--table-cell-width);
  box-sizing: border-box;
  padding: var(--table-cell-padding);
  border-left: 1px solid #d4d4d2;
  border-bottom: 1px solid #d4d4d2;
  background-color: #fff;
  font-size: var(--table-cell-font-size);
  line-height: 1.3846153846;
  font-weight: 500;
}

.article .article_table .article_tableInner table :is(th, td):first-child {
  flex-grow: 0;
  background-color: #f0f0f0;
  font-weight: 700;
  position: sticky;
  left: 0;
  z-index: 2;
}

.article .article_table .article_tableInner table:has([colspan], [rowspan]) {
  display: table;
  width: max-content;
  min-width: 100%;
  table-layout: auto;
}

.article .article_table .article_tableInner table:has([colspan], [rowspan]) thead {
  display: table-header-group;
}

.article .article_table .article_tableInner table:has([colspan], [rowspan]) tbody {
  display: table-row-group;
}

.article .article_table .article_tableInner table:has([colspan], [rowspan]) tfoot {
  display: table-footer-group;
}

.article .article_table .article_tableInner table:has([colspan], [rowspan]) tr {
  display: table-row;
}

.article .article_table .article_tableInner table:has([colspan], [rowspan]) :is(th, td) {
  display: table-cell;
  width: auto;
  height: var(--table-row-height);
  min-width: var(--table-cell-width);
}

@media (max-width: 750px) {
  .article .article_table {
    width: 100%;
    margin: 0;
    overflow-x: auto;
  }
}

@media (min-width: 751px) {
  .article .article_table {
    --table-cell-width: 7.4305555556vw;
    --table-row-height: 8.3333333333vw;
    --table-cell-font-size: 0.9027777778vw;
    --table-cell-padding: 0.625vw 0 0 0.4861111111vw;
  }
}

/* Header article categories */
.header .header_item--hasSub {
  position: relative;
  overflow: visible;
}

.header_subItem {
  display: flex;
  list-style: none;
}

.header_subLink {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
}

.header_subLink:hover {
  opacity: 0.6;
}

.header_subList .header_subLink.__active {
  opacity: 1;
}

.header_subToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.header_subToggle_icon {
  transition: transform 0.3s ease-out;
}

.header_item--hasSub.is-open .header_subToggle_icon {
  transform: rotate(180deg);
}

@media (max-width: 750px) {
  .header .header_area {
    height: auto;
    min-height: 67.2vw;
    max-height: calc(100dvh - 18.6666666667vw);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    padding: 14.9333333333vw 0 5.3333333333vw;
  }

  .header .header_nav {
    margin-top: 0;
  }

  .header_item--hasSub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 85.0666666667vw;
    margin-right: auto;
    margin-left: auto;
  }

  .header_item--hasSub .header_linkClip {
    flex: 1 1 auto;
  }

  .header_item--hasSub .header_link {
    display: block;
  }

  .header_subToggle {
    width: 8vw;
    height: 8vw;
  }

  .header_subList {
    display: none;
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 1.92vw;
    padding: 3.2vw 0 0;
  }

  .header_item--hasSub.is-open .header_subList {
    display: flex;
  }

  .header .header_button {
    position: static;
    flex-shrink: 0;
    margin: 12.8vw auto 0;
  }
}

@media (min-width: 751px) {
  .header_item--hasSub::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1.3888888889vw;
  }

  .header_subList {
    display: none;
    position: absolute;
    top: calc(100% + 1.3888888889vw);
    left: 50%;
    width: 32.6388888889vw;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 0.6944444444vw;
    padding: 1.3888888889vw;
    transform: translateX(-50%);
    border: 1px solid #000;
    border-radius: 10px;
    background-color: #fff;
    z-index: 10;
  }

  .header_item--hasSub:hover .header_subList,
  .header_item--hasSub:focus-within .header_subList {
    display: flex;
  }

  .header .header_link,
  .header_item--hasSub .header_linkClip {
    height: 1.25vw;
  }

  .header .header_link > span {
    display: block;
    line-height: 1.25vw;
  }

  .header_item--hasSub .header_linkClip {
    display: block;
    overflow: hidden;
  }
}

/* Product CTA */
.c-product.__withImage {
  display: flex;
  align-items: center;
}

.c-product.__withImage .c-product_image {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  background-color: #f0f0f0;
}

.c-product.__withImage .c-product_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-product.__withImage .c-product_inner {
  flex: 1;
  min-width: 0;
}

.article .c-product_title a:not(.c-button_arrow) {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.c-product.__withImage .c-product_button .c-button_arrow.__product {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100%;
}

.c-product.__withImage .c-product_button .c-button_inner {
  min-width: 0;
  overflow: hidden;
}

.c-product.__withImage .c-product_button .c-button_text span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 750px) {
  .c-product.__withImage {
    gap: 3.2vw;
  }

  .c-product.__withImage .c-product_image {
    width: 18.6666666667vw;
    height: 18.6666666667vw;
  }

  .c-product.__withImage .c-product_button .c-button_arrow.__product {
    height: 8vw;
    padding: 0 9.3333333333vw 0 4.2666666667vw;
  }
}

@media (min-width: 751px) {
  .c-product.__withImage {
    gap: 1.1111111111vw;
  }

  .c-product.__withImage .c-product_image {
    width: 7.5vw;
    height: 7.5vw;
  }

  .c-product.__withImage .c-product_button .c-button_arrow.__product {
    height: 2.0833333333vw;
    padding: 0 2.4305555556vw 0 1.1805555556vw;
  }
}