@charset "UTF-8";
/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-tabs-category__container {
  display: flex;
  flex-direction: row;
  border-radius: 0.25rem;
  overflow: hidden;
  display: none;
}
.s-tabs-category__container.is-tab-active {
  display: flex;
}
@media screen and (max-width: 991px) {
  .s-tabs-category__container {
    background-color: var(--wp--preset--color--bg-pale-sky-light);
    transform: translateX(calc(-1 * 1.25rem));
    width: calc(100% + 1.25rem * 2);
    padding: 1.5rem 1.25rem;
    margin-top: 1.5rem;
  }
}
.s-tabs-category__ttl {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  line-height: 1;
  margin-bottom: 1.875rem;
}
.s-tabs-category__ttl {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__ttl {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__ttl {
    font-size: 3.5rem;
  }
}
.s-tabs-category__tab-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.375rem;
}
@media screen and (max-width: 991px) {
  .s-tabs-category__tab-row {
    width: fit-content;
    overflow-x: scroll;
  }
}
.s-tabs-category__tab-button {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  font-style: normal;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background-color 400ms ease, color 400ms ease, border 400ms ease;
}
.s-tabs-category__tab-button {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__tab-button {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__tab-button {
    font-size: 0.9375rem;
  }
}
.s-tabs-category__tab-button.is-tab-active {
  background-color: var(--wp--preset--color--bg-black);
  color: var(--wp--preset--color--txt-white);
  border: 1px solid var(--wp--preset--color--bg-black);
}
@media (hover: hover) and (pointer: fine) {
  .s-tabs-category__tab-button:hover {
    background-color: var(--wp--preset--color--bg-black);
    color: var(--wp--preset--color--txt-white);
    border: 1px solid var(--wp--preset--color--bg-black);
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-category__tab-button {
    flex-shrink: 0;
  }
}
.s-tabs-category__list {
  width: 28.75rem;
  flex-shrink: 0;
  background-color: var(--wp--preset--color--bg-pale-sky-light);
  padding: 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.s-tabs-category__list-item {
  width: calc(100% - 10px);
  padding-block: 0.625rem;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  overflow: hidden;
  cursor: pointer;
}
.s-tabs-category__list-item:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
@media (hover: hover) and (pointer: fine) {
  .s-tabs-category__list-item:hover .s-tabs-category__list-header {
    transform: translateX(0.875rem);
    transition: transform 400ms cubic-bezier(0, 0, 0.2, 1);
  }
  .s-tabs-category__list-item:hover .s-tabs-category__list-title {
    color: var(--wp--preset--color--txt-pale-sky-dark);
    transition: color 400ms cubic-bezier(0, 0, 0.2, 1);
  }
}
.s-tabs-category__list-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  position: relative;
  transform: translateX(0);
  transition: transform 400ms cubic-bezier(0, 0, 0.2, 1);
}
.is-active .s-tabs-category__list-header {
  transform: translateX(0.875rem);
  transition: transform 400ms cubic-bezier(0, 0, 0.2, 1);
}
.s-tabs-category__list-icon-wrapper {
  width: 0.5625rem;
  flex-shrink: 0;
  position: absolute;
  left: -0.875rem;
}
.s-tabs-category__list-icon {
  fill: var(--wp--preset--color--bg-pale-sky-dark);
}
.s-tabs-category__list-title {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  transition: color 400ms cubic-bezier(0, 0, 0.2, 1);
}
.s-tabs-category__list-title {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__list-title {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__list-title {
    font-size: 0.875rem;
  }
}
.is-active .s-tabs-category__list-title {
  color: var(--wp--preset--color--txt-pale-sky-dark);
  transition: color 400ms cubic-bezier(0, 0, 0.2, 1);
}
.s-tabs-category__list-button {
  margin-top: auto;
}
.s-tabs-category__list-button .c-btn {
  width: 100%;
  justify-content: flex-start;
}
.s-tabs-category__details {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  min-height: 27rem;
}
@media screen and (max-width: 991px) {
  .s-tabs-category__details {
    border-radius: 0.25rem;
  }
}
.s-tabs-category__details-item {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 3.75rem;
  opacity: 0;
}
.s-tabs-category__details-item.is-active {
  opacity: 1;
}
.s-tabs-category__details-img-wrapper {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.s-tabs-category__details-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.s-tabs-category__details-desc-wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50rem;
  height: fit-content;
  padding: 2.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(30px);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.34375rem;
  opacity: 0;
}
.is-active .s-tabs-category__details-desc-wrapper {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .s-tabs-category__details-desc-wrapper {
    padding: 1.875rem;
  }
}
.s-tabs-category__details-title {
  color: var(--wp--preset--color--txt-white);
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  line-height: 1;
  max-width: 37.5rem;
}
.s-tabs-category__details-title {
  font-size: 42px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-title {
    font-size: calc(42px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-category__details-title {
    font-size: 1.5rem;
    max-width: calc(100% - 2.5rem - 8px);
  }
}
.s-tabs-category__details-desc {
  color: var(--wp--preset--color--txt-white);
  max-width: 37.5rem;
}
.s-tabs-category__details-desc h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  line-height: 1;
}
.s-tabs-category__details-desc h2 {
  font-size: 42px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc h2 {
    font-size: calc(42px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc h2 {
    font-size: 2.625rem;
  }
}
.s-tabs-category__details-desc h2:not(:first-child) {
  margin-top: 2rem;
}
.s-tabs-category__details-desc h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1;
}
.s-tabs-category__details-desc h3 {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc h3 {
    font-size: calc(24px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc h3 {
    font-size: 2rem;
  }
}
.s-tabs-category__details-desc h3:not(:first-child) {
  margin-top: 1.25rem;
}
.s-tabs-category__details-desc h4 {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1.2;
}
.s-tabs-category__details-desc h4 {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc h4 {
    font-size: calc(18px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc h4 {
    font-size: 1.25rem;
  }
}
.s-tabs-category__details-desc h5 {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc h5 {
    font-size: calc(16px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc h5 {
    font-size: 1.125rem;
  }
}
.s-tabs-category__details-desc p {
  margin-top: 1.25rem;
}
.s-tabs-category__details-desc p:first-child {
  margin-top: 0;
}
.s-tabs-category__details-desc a {
  color: var(--wp--preset--color--txt-black);
}
.s-tabs-category__details-desc p + ul,
.s-tabs-category__details-desc h2 + p,
.s-tabs-category__details-desc h3 + p,
.s-tabs-category__details-desc h4 + p,
.s-tabs-category__details-desc h5 + p {
  margin-top: 1.25rem;
}
.s-tabs-category__details-desc b,
.s-tabs-category__details-desc strong {
  font-weight: 700;
}
.s-tabs-category__details-desc .btn {
  margin-top: 2rem;
}
.s-tabs-category__details-desc i,
.s-tabs-category__details-desc em {
  font-style: italic;
}
.s-tabs-category__details-desc p > a,
.s-tabs-category__details-desc li > a {
  text-decoration: underline;
}
.s-tabs-category__details-desc ul,
.s-tabs-category__details-desc ol {
  margin-top: 1.875rem;
  list-style: none;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.s-tabs-category__details-desc ul li,
.s-tabs-category__details-desc ol li {
  position: relative;
  padding-left: 0.75rem;
}
.s-tabs-category__details-desc ul li:last-child,
.s-tabs-category__details-desc ol li:last-child {
  margin-bottom: 0;
}
.s-tabs-category__details-desc ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4375rem;
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: currentColor;
  border-radius: 50% 50%;
}
.s-tabs-category__details-desc ol li {
  list-style: decimal;
}
.s-tabs-category__details-desc img {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.s-tabs-category__details-desc *:first-child:not(.mejs-button):not(button) {
  margin-top: 0;
}
.s-tabs-category__details-desc img {
  margin: 1.25rem 0 3.5rem;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media screen and (max-width: 991px) {
  .s-tabs-category__details-desc img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 0;
    display: block;
    height: auto;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.s-tabs-category__details-desc p,
.s-tabs-category__details-desc li,
.s-tabs-category__details-desc a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.4;
}
.s-tabs-category__details-desc p,
.s-tabs-category__details-desc li,
.s-tabs-category__details-desc a {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc p,
  .s-tabs-category__details-desc li,
  .s-tabs-category__details-desc a {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc p,
  .s-tabs-category__details-desc li,
  .s-tabs-category__details-desc a {
    font-size: 0.875rem;
  }
}
.s-tabs-category__details-desc .wp-video-shortcode:not(:first-child) {
  margin-top: 2rem;
}
.s-tabs-category__details-desc .button {
  font-family: "Outfit", sans-serif;
  display: inline-flex;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 4px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1;
  cursor: pointer;
}
.s-tabs-category__details-desc .button:not(:first-child) {
  margin-top: 1rem;
}
.s-tabs-category__details-desc .button:hover {
  color: var(--wp--preset--color--txt-white);
  background-color: var(--wp--preset--color--bg-black);
}
.s-tabs-category__details-desc .button--primary {
  background-color: var(--wp--preset--color--bg-deep-purple-medium);
  color: var(--wp--preset--color--txt-white);
}
.s-tabs-category__details-desc h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  line-height: 1;
}
.s-tabs-category__details-desc h1 {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc h1 {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc h1 {
    font-size: 3.5rem;
  }
}
.s-tabs-category__details-desc h1:not(:first-child) {
  margin-top: 2rem;
}
.s-tabs-category__details-desc h6 {
  font-weight: 400;
  font-family: "Outfit", sans-serif;
}
.s-tabs-category__details-desc h6 {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc h6 {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc h6 {
    font-size: 0.875rem;
  }
}
.s-tabs-category__details-desc h6:not(:first-child) {
  margin-top: 1rem;
}
.s-tabs-category__details-desc figure {
  margin: 2rem 0;
  max-width: 100%;
}
.s-tabs-category__details-desc figure:first-child {
  margin-top: 0;
}
.s-tabs-category__details-desc figure img {
  margin: 0;
}
.s-tabs-category__details-desc figcaption,
.s-tabs-category__details-desc .wp-element-caption,
.s-tabs-category__details-desc .wp-caption-text {
  margin-top: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0.75;
}
.s-tabs-category__details-desc figcaption,
.s-tabs-category__details-desc .wp-element-caption,
.s-tabs-category__details-desc .wp-caption-text {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc figcaption,
  .s-tabs-category__details-desc .wp-element-caption,
  .s-tabs-category__details-desc .wp-caption-text {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc figcaption,
  .s-tabs-category__details-desc .wp-element-caption,
  .s-tabs-category__details-desc .wp-caption-text {
    font-size: 0.75rem;
  }
}
.s-tabs-category__details-desc .wp-caption {
  max-width: 100%;
}
.s-tabs-category__details-desc .wp-caption img {
  margin: 0;
}
.s-tabs-category__details-desc .aligncenter {
  display: block;
  margin-inline: auto;
  text-align: center;
}
.s-tabs-category__details-desc .aligncenter figcaption,
.s-tabs-category__details-desc .aligncenter .wp-element-caption {
  text-align: center;
}
.s-tabs-category__details-desc .alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1rem 0;
  max-width: 50%;
}
.s-tabs-category__details-desc .alignright {
  float: right;
  margin: 0.5rem 0 1rem 1.5rem;
  max-width: 50%;
}
.s-tabs-category__details-desc .alignwide {
  width: min(100%, 100% + 5rem);
  max-width: none;
  margin-inline: auto;
}
.s-tabs-category__details-desc .alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-inline: calc(50% - 50vw);
  border-radius: 0;
}
.s-tabs-category__details-desc .alignfull img {
  border-radius: 0;
}
.s-tabs-category__details-desc img.size-medium,
.s-tabs-category__details-desc figure.size-medium img {
  max-width: 25rem;
  width: 100%;
}
.s-tabs-category__details-desc img.size-thumbnail,
.s-tabs-category__details-desc figure.size-thumbnail img {
  max-width: 9.375rem;
  width: auto;
}
.s-tabs-category__details-desc blockquote,
.s-tabs-category__details-desc .wp-block-quote {
  margin: 1.5rem 0;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 0.1875rem solid currentColor;
  font-style: italic;
}
.s-tabs-category__details-desc blockquote p,
.s-tabs-category__details-desc .wp-block-quote p {
  margin-top: 0.75rem;
}
.s-tabs-category__details-desc blockquote p:first-child,
.s-tabs-category__details-desc .wp-block-quote p:first-child {
  margin-top: 0;
}
.s-tabs-category__details-desc blockquote cite,
.s-tabs-category__details-desc blockquote footer,
.s-tabs-category__details-desc .wp-block-quote cite,
.s-tabs-category__details-desc .wp-block-quote footer {
  display: block;
  margin-top: 0.75rem;
  font-weight: 400;
  font-style: normal;
  opacity: 0.75;
}
.s-tabs-category__details-desc blockquote cite,
.s-tabs-category__details-desc blockquote footer,
.s-tabs-category__details-desc .wp-block-quote cite,
.s-tabs-category__details-desc .wp-block-quote footer {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc blockquote cite,
  .s-tabs-category__details-desc blockquote footer,
  .s-tabs-category__details-desc .wp-block-quote cite,
  .s-tabs-category__details-desc .wp-block-quote footer {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc blockquote cite,
  .s-tabs-category__details-desc blockquote footer,
  .s-tabs-category__details-desc .wp-block-quote cite,
  .s-tabs-category__details-desc .wp-block-quote footer {
    font-size: 0.75rem;
  }
}
.s-tabs-category__details-desc .wp-block-pullquote {
  margin: 2rem 0;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--wp--preset--color--bg-gray-medium);
  border-bottom: 1px solid var(--wp--preset--color--bg-gray-medium);
  border-left: none;
}
.s-tabs-category__details-desc .wp-block-pullquote blockquote {
  border: none;
  padding: 0;
  margin: 0;
}
.s-tabs-category__details-desc .wp-block-pullquote cite {
  margin-top: 1rem;
}
.s-tabs-category__details-desc code,
.s-tabs-category__details-desc kbd,
.s-tabs-category__details-desc samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 400;
  background-color: var(--wp--preset--color--bg-gray-medium);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
}
.s-tabs-category__details-desc code,
.s-tabs-category__details-desc kbd,
.s-tabs-category__details-desc samp {
  font-size: 13px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc code,
  .s-tabs-category__details-desc kbd,
  .s-tabs-category__details-desc samp {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc code,
  .s-tabs-category__details-desc kbd,
  .s-tabs-category__details-desc samp {
    font-size: 0.8125rem;
  }
}
.s-tabs-category__details-desc pre,
.s-tabs-category__details-desc .wp-block-code {
  margin: 1.5rem 0;
  padding: 1.25rem;
  overflow-x: auto;
  background-color: var(--wp--preset--color--bg-gray-medium);
  border-radius: 0.5rem;
}
.s-tabs-category__details-desc pre code,
.s-tabs-category__details-desc .wp-block-code code {
  background: none;
  padding: 0;
  border-radius: 0;
}
.s-tabs-category__details-desc table,
.s-tabs-category__details-desc .wp-block-table table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-weight: 400;
}
.s-tabs-category__details-desc table,
.s-tabs-category__details-desc .wp-block-table table {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc table,
  .s-tabs-category__details-desc .wp-block-table table {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc table,
  .s-tabs-category__details-desc .wp-block-table table {
    font-size: 0.875rem;
  }
}
.s-tabs-category__details-desc table th,
.s-tabs-category__details-desc table td,
.s-tabs-category__details-desc .wp-block-table table th,
.s-tabs-category__details-desc .wp-block-table table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--wp--preset--color--bg-gray-medium);
  text-align: left;
  vertical-align: top;
}
.s-tabs-category__details-desc table th,
.s-tabs-category__details-desc .wp-block-table table th {
  font-weight: 700;
}
.s-tabs-category__details-desc .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.s-tabs-category__details-desc hr,
.s-tabs-category__details-desc .wp-block-separator {
  margin: 2.5rem auto;
  border: none;
  border-top: 1px solid var(--wp--preset--color--bg-gray-medium);
  opacity: 1;
  max-width: 7.5rem;
}
.s-tabs-category__details-desc hr.is-style-wide,
.s-tabs-category__details-desc .wp-block-separator.is-style-wide {
  max-width: 100%;
}
.s-tabs-category__details-desc hr.is-style-dots,
.s-tabs-category__details-desc .wp-block-separator.is-style-dots {
  border: none;
  max-width: none;
  text-align: center;
}
.s-tabs-category__details-desc hr.is-style-dots::before,
.s-tabs-category__details-desc .wp-block-separator.is-style-dots::before {
  content: "···";
  letter-spacing: 0.75rem;
  font-weight: 400;
}
.s-tabs-category__details-desc hr.is-style-dots::before,
.s-tabs-category__details-desc .wp-block-separator.is-style-dots::before {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .s-tabs-category__details-desc hr.is-style-dots::before,
  .s-tabs-category__details-desc .wp-block-separator.is-style-dots::before {
    font-size: calc(18px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-tabs-category__details-desc hr.is-style-dots::before,
  .s-tabs-category__details-desc .wp-block-separator.is-style-dots::before {
    font-size: 1.25rem;
  }
}
.s-tabs-category__details-desc .wp-block-embed,
.s-tabs-category__details-desc .wp-block-video,
.s-tabs-category__details-desc .wp-block-audio,
.s-tabs-category__details-desc .wp-block-media-text {
  margin: 2rem 0;
  max-width: 100%;
}
.s-tabs-category__details-desc .wp-block-embed__wrapper,
.s-tabs-category__details-desc .wp-block-video video {
  max-width: 100%;
}
.s-tabs-category__details-desc .wp-block-embed iframe {
  max-width: 100%;
}
.s-tabs-category__details-desc .wp-block-gallery,
.s-tabs-category__details-desc .blocks-gallery-grid,
.s-tabs-category__details-desc .wp-block-media-text {
  gap: 0.5rem;
}
.s-tabs-category__details-desc .wp-block-gallery,
.s-tabs-category__details-desc .blocks-gallery-grid {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
}
.s-tabs-category__details-desc .wp-block-buttons {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.s-tabs-category__details-desc .wp-block-button__link {
  text-decoration: none;
}
.s-tabs-category__details-desc ul ul,
.s-tabs-category__details-desc ol ol,
.s-tabs-category__details-desc ul ol,
.s-tabs-category__details-desc ol ul {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.s-tabs-category__details-desc dl {
  margin: 1.5rem 0;
}
.s-tabs-category__details-desc dt {
  font-weight: 700;
  margin-top: 0.75rem;
}
.s-tabs-category__details-desc dd {
  margin-left: 1rem;
  margin-top: 0.25rem;
  opacity: 0.85;
}
.s-tabs-category__details-desc mark {
  background-color: rgba(255, 128, 0, 0.25);
  padding: 0.0625rem 0.25rem;
}
.s-tabs-category__details-desc sub,
.s-tabs-category__details-desc sup {
  font-size: 0.75em;
  line-height: 0;
}
.s-tabs-category__details-desc .has-text-align-center {
  text-align: center;
}
.s-tabs-category__details-desc .has-text-align-right {
  text-align: right;
}
.s-tabs-category__details-desc .has-text-align-left {
  text-align: left;
}
@media screen and (max-width: 991px) {
  .s-tabs-category__details-desc .alignleft,
  .s-tabs-category__details-desc .alignright {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }
  .s-tabs-category__details-desc .alignwide,
  .s-tabs-category__details-desc .alignfull {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
  }
  .s-tabs-category__details-desc figure,
  .s-tabs-category__details-desc .wp-block-image,
  .s-tabs-category__details-desc .wp-caption,
  .s-tabs-category__details-desc .wp-block-media-text__media {
    max-width: 100%;
  }
  .s-tabs-category__details-desc figure img,
  .s-tabs-category__details-desc .wp-block-image img,
  .s-tabs-category__details-desc .wp-caption img,
  .s-tabs-category__details-desc .wp-block-media-text__media img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 0;
    display: block;
    height: auto;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .s-tabs-category__details-desc > img,
  .s-tabs-category__details-desc p > img,
  .s-tabs-category__details-desc .wp-block-image img,
  .s-tabs-category__details-desc .wp-block-gallery .blocks-gallery-item img,
  .s-tabs-category__details-desc .wp-block-gallery .wp-block-image img {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 0;
    display: block;
    height: auto;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .s-tabs-category__details-desc img.size-medium,
  .s-tabs-category__details-desc figure.size-medium img,
  .s-tabs-category__details-desc img.size-thumbnail,
  .s-tabs-category__details-desc figure.size-thumbnail img {
    max-width: 100%;
    width: 100%;
  }
  .s-tabs-category__details-desc figcaption,
  .s-tabs-category__details-desc .wp-element-caption,
  .s-tabs-category__details-desc .wp-caption-text {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding-inline: 0;
    margin-top: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .s-tabs-category__details-desc pre,
  .s-tabs-category__details-desc .wp-block-code {
    padding: 1rem;
  }
}
.s-tabs-category__details-desc::after {
  content: "";
  display: block;
  clear: both;
}
.s-tabs-category__details-icon {
  width: 3.724375rem;
  height: 3.724375rem;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
}
@media screen and (max-width: 991px) {
  .s-tabs-category__details-icon {
    width: 2.5rem;
    height: 2.5rem;
    top: 1.25rem;
    right: 1.25rem;
  }
}
.s-tabs-category__details-button {
  position: relative;
  z-index: 3;
}
.s-tabs-category__mobile-select {
  display: none;
}
@media screen and (max-width: 991px) {
  .s-tabs-category__container {
    flex-direction: column;
  }
  .s-tabs-category__mobile-select {
    display: block;
    position: relative;
    margin-bottom: 1rem;
  }
  .s-tabs-category__mobile-select-icon {
    transition: transform 400ms ease;
  }
  .s-tabs-category__mobile-select-trigger[aria-expanded=true] .s-tabs-category__mobile-select-icon {
    transform: rotate(-180deg);
    transition: transform 400ms ease;
  }
  .s-tabs-category__mobile-select-icon svg {
    fill: var(--wp--preset--color--txt-black);
  }
  .s-tabs-category__mobile-select-trigger {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: none;
    background-color: var(--wp--preset--color--bg-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .s-tabs-category__mobile-select-trigger[aria-expanded=true] {
    border-radius: 0.25rem 0.25rem 0 0;
  }
  .s-tabs-category__mobile-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--wp--preset--color--bg-white);
    border-radius: 0 0 0.25rem 0.25rem;
    z-index: 20;
    display: none;
    overflow: hidden;
  }
  .s-tabs-category__mobile-select-dropdown.is-open {
    display: flex;
    flex-direction: column;
  }
  .s-tabs-category__mobile-select-option {
    padding: 0.875rem 1rem;
    cursor: pointer;
    border: none;
    text-align: left;
    background-color: var(--wp--preset--color--bg-white);
    color: var(--wp--preset--color--txt-black);
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
  }
  .s-tabs-category__mobile-select-option {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .s-tabs-category__mobile-select-option {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .s-tabs-category__mobile-select-option {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-category__mobile-select-option.is-active {
    color: var(--wp--preset--color--txt-pale-sky-dark);
  }
  .s-tabs-category__mobile-select-option:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .s-tabs-category__mobile-select-label {
    color: var(--wp--preset--color--txt-black);
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    line-height: 1.5;
  }
  .s-tabs-category__mobile-select-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .s-tabs-category__mobile-select-label {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .s-tabs-category__mobile-select-label {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 991px) {
  .s-tabs-category__list {
    display: none;
  }
  .s-tabs-category__details {
    min-height: auto;
  }
  .s-tabs-category__details-item {
    position: relative;
    height: auto;
    padding: 0;
    display: none;
  }
  .s-tabs-category__details-item.is-active {
    display: block;
  }
  .s-tabs-category__details-desc-wrapper {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 0;
    gap: 1.5rem;
  }
}