/* ==========================================================================
   Yiran custom editor blocks
   Scope: Yiran-owned reusable blocks used across posts, pages and collections
   ========================================================================== */

.yr-yiran-faq,
.yr-yiran-faq.yr-blog-section {
  box-sizing: border-box;
  max-width: 100%;
  margin-block: clamp(32px, 5vw, 56px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--yr-line);
  border-radius: var(--yr-radius);
  background: var(--yr-paper);
  color: var(--yr-text);
  box-shadow: 0 12px 34px color-mix(in srgb, var(--yr-heading) 6%, transparent);
}

.yr-yiran-faq > h2 {
  margin: 0 0 18px !important;
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.2;
}

.yr-yiran-faq .yr-faq-item {
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--yr-line);
  border-radius: 0;
  background: transparent;
}

.yr-yiran-faq .yr-faq-item:first-of-type {
  border-top: 1px solid var(--yr-line);
}

.yr-yiran-faq .yr-faq-item summary {
  position: relative;
  display: block;
  padding: 22px 46px 22px 0;
  list-style: none;
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 650;
  line-height: 1.45;
  cursor: pointer;
}

.yr-yiran-faq .yr-faq-item summary::-webkit-details-marker {
  display: none;
}

.yr-yiran-faq .yr-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--yr-line);
  border-radius: 50%;
  color: var(--yr-accent);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.yr-yiran-faq .yr-faq-item summary:hover::after {
  border-color: var(--yr-accent);
  background: color-mix(in srgb, var(--yr-accent) 8%, transparent);
}

.yr-yiran-faq .yr-faq-item[open] summary::after {
  content: "\2212";
  border-color: var(--yr-accent);
  background: var(--yr-accent);
  color: var(--yr-accent-contrast, #fff);
}

.yr-yiran-faq .yr-faq-item > p {
  margin: 0;
  padding: 0 46px 24px 0;
  color: var(--yr-text);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 600px) {
  .yr-yiran-faq {
    padding: 22px 18px;
  }

  .yr-yiran-faq .yr-faq-item summary {
    padding-block: 19px;
  }

  .yr-yiran-faq .yr-faq-item > p {
    padding-right: 0;
  }
}

.yr-yiran-faq-editor .yr-yiran-faq-editor-item {
  position: relative;
}

.yr-yiran-faq-editor .yr-yiran-faq-editor-item > p {
  min-height: 1.8em;
}

.yr-yiran-faq-editor-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  padding: 0 44px 18px 0;
}

.yr-yiran-faq-editor-actions .yr-yiran-faq-editor-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--yr-line);
  border-radius: 50%;
  color: var(--yr-ink-2);
  background: #fff;
  box-shadow: none;
}

.yr-yiran-faq-editor-actions .yr-yiran-faq-editor-action::before {
  color: currentColor;
  font-size: 16px;
  font-weight: 760;
  line-height: 1;
}

.yr-yiran-faq-editor-action--up::before {
  content: "\2191";
}

.yr-yiran-faq-editor-action--down::before {
  content: "\2193";
}

.yr-yiran-faq-editor-action--remove::before {
  content: "\00d7";
  font-size: 19px;
}

.yr-yiran-faq-editor-actions .yr-yiran-faq-editor-action:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--yr-accent) 28%, transparent);
  background: color-mix(in srgb, var(--yr-accent) 6%, transparent);
  color: var(--yr-accent);
}

.yr-yiran-faq-editor-actions .yr-yiran-faq-editor-action--remove:hover:not(:disabled) {
  border-color: rgba(196, 52, 52, 0.28);
  background: rgba(196, 52, 52, 0.06);
  color: #b42318;
}

.yr-yiran-faq-editor-actions .yr-yiran-faq-editor-action:disabled {
  color: #a9b5c6;
  opacity: 1;
}

.yr-yiran-faq-editor-add {
  display: flex;
  justify-content: flex-start;
  margin-top: 22px;
}

.yr-yiran-faq-editor-add .components-button {
  min-height: 40px;
  border-radius: var(--yr-radius);
  font-weight: 650;
}

.yr-yiran-faq-editor-add .components-button,
.yr-yiran-faq-editor-add .components-button.is-secondary {
  min-height: 44px;
  padding: 10px 20px;
  border-color: var(--yr-accent);
  background: var(--yr-accent);
  color: #fff !important;
  box-shadow: none;
}

.yr-yiran-faq-editor-add .components-button *,
.yr-yiran-faq-editor-add .components-button.is-secondary * {
  color: #fff !important;
}

.yr-yiran-faq-editor-add .components-button:hover,
.yr-yiran-faq-editor-add .components-button:focus,
.yr-yiran-faq-editor-add .components-button.is-secondary:hover,
.yr-yiran-faq-editor-add .components-button.is-secondary:focus {
  border-color: var(--yr-accent-2, #5a8cf0);
  background: var(--yr-accent-2, #5a8cf0);
  color: #fff !important;
}

/* Product family navigation: shared by product archives and the homepage. */
.yr-product-family-nav {
  --yr-product-family-gutter: clamp(28px, 7.5vw, 180px);
  --yr-product-family-bg: #155faa;
  --yr-product-family-link-bg: transparent;
  --yr-product-family-link-color: #fff;
  --yr-product-family-link-hover-bg: #0879d7;
  --yr-product-family-link-hover-color: #fff;
  --yr-product-family-active-bg: #0879d7;
  --yr-product-family-active-color: #fff;
  --yr-product-family-image-bg: transparent;
  --yr-product-family-image-active-bg: transparent;
  --yr-product-family-image-padding: 0;
  --yr-product-family-image-radius: 0;
  --yr-product-family-image-filter: none;
  --yr-product-family-image-active-filter: none;
  --yr-product-family-placeholder-color: rgba(255, 255, 255, 0.72);
  margin-block-start: 0;
  background: var(--yr-product-family-bg);
  color: var(--yr-product-family-link-color);
}

.yr-product-family-nav__inner {
  width: min(calc(100% - (var(--yr-product-family-gutter) * 2)), var(--yr-maxw, 1480px));
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.yr-product-family-nav__inner::-webkit-scrollbar {
  display: none;
}

.yr-product-family-nav__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: visible;
  list-style: none;
}

.yr-product-family-nav__item {
  display: flex;
  flex: 1 0 160px;
  min-width: 160px;
  margin: 0;
}

.yr-product-family-nav__link {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: clamp(14px, 1.1vw, 20px) clamp(18px, 1.6vw, 28px) clamp(16px, 1.25vw, 22px);
  background: var(--yr-product-family-link-bg);
  color: var(--yr-product-family-link-color);
  text-align: center;
  text-decoration: none;
  transition: background-color 0.24s ease, transform 0.24s ease;
}

.yr-product-family-nav__link:hover,
.yr-product-family-nav__link:focus-visible {
  background: var(--yr-product-family-link-hover-bg);
  color: var(--yr-product-family-link-hover-color);
}

.yr-product-family-nav__link.is-active {
  background: var(--yr-product-family-active-bg);
  color: var(--yr-product-family-active-color);
}

.yr-product-family-nav__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: -6px;
}

.yr-product-family-nav__image {
  display: flex;
  box-sizing: border-box;
  width: min(132px, 68%);
  height: clamp(44px, 3.1vw, 58px);
  align-items: center;
  justify-content: center;
  padding: var(--yr-product-family-image-padding);
  border-radius: var(--yr-product-family-image-radius);
  background: var(--yr-product-family-image-bg);
  transition: background-color 0.24s ease, transform 0.24s ease;
}

.yr-product-family-nav__image img,
.yr-product-family-nav__image .yr-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: var(--yr-product-family-image-filter);
  transition: transform 0.24s ease;
}

.yr-product-family-nav__link.is-active .yr-product-family-nav__image {
  background: var(--yr-product-family-image-active-bg);
}

.yr-product-family-nav__link.is-active .yr-product-family-nav__image img {
  filter: var(--yr-product-family-image-active-filter);
}

.yr-product-family-nav__link:hover .yr-product-family-nav__image img,
.yr-product-family-nav__link:focus-visible .yr-product-family-nav__image img,
.yr-product-family-nav__link.is-active .yr-product-family-nav__image img {
  transform: scale(1.06);
}

.yr-product-family-nav__image .yr-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  color: var(--yr-product-family-placeholder-color);
  font-size: 18px;
  box-shadow: none;
}

.yr-product-family-nav__image .yr-image-placeholder::before {
  display: none;
}

.yr-product-family-nav__image .yr-image-placeholder span {
  display: block;
  margin: auto;
  padding: 0;
}

.yr-product-family-nav__title {
  display: -webkit-box;
  max-width: 230px;
  margin-top: clamp(7px, 0.65vw, 11px);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: inherit;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

@media (max-width: 680px) {
  .yr-product-family-nav {
    --yr-product-family-gutter: 0px;
    overflow: hidden;
    padding: 0;
  }

  .yr-product-family-nav__inner {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-inline: clamp(18px, 6vw, 28px);
    scroll-padding-inline: clamp(18px, 6vw, 28px);
    scrollbar-width: none;
  }

  .yr-product-family-nav__inner::-webkit-scrollbar {
    display: none;
  }

  .yr-product-family-nav__list {
    display: flex;
    gap: 1px;
    width: max-content;
    min-width: 0;
    overflow: visible;
    scroll-snap-type: x mandatory;
  }

  .yr-product-family-nav__item {
    display: flex;
    flex: 0 0 clamp(148px, 44vw, 188px);
    min-width: 0;
    scroll-snap-align: start;
  }

  .yr-product-family-nav__link {
    min-height: 92px;
    padding: 12px 10px 13px;
    background: transparent;
  }

  .yr-product-family-nav__image {
    width: min(104px, 72%);
    height: 40px;
  }

  .yr-product-family-nav__title {
    max-width: 136px;
    margin-top: 8px;
    font-size: clamp(13px, 3.45vw, 14.5px);
    line-height: 1.22;
  }
}

/* Auto-style pasted/core Table blocks across editable content areas. */
.wp-site-blocks .wp-block-table,
.editor-styles-wrapper .wp-block-table {
  display: block;
  max-width: 100%;
  margin: 38px 0;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--yr-line);
  border-radius: var(--yr-radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 28, 54, 0.05);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--yr-accent) 45%, transparent) rgba(220, 229, 240, 0.75);
}

.wp-site-blocks .wp-block-table table,
.editor-styles-wrapper .wp-block-table table {
  width: 100%;
  min-width: 640px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  table-layout: auto;
}

.wp-site-blocks .wp-block-table::-webkit-scrollbar,
.editor-styles-wrapper .wp-block-table::-webkit-scrollbar {
  height: 8px;
}

.wp-site-blocks .wp-block-table::-webkit-scrollbar-track,
.editor-styles-wrapper .wp-block-table::-webkit-scrollbar-track {
  background: rgba(220, 229, 240, 0.75);
}

.wp-site-blocks .wp-block-table::-webkit-scrollbar-thumb,
.editor-styles-wrapper .wp-block-table::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: color-mix(in srgb, var(--yr-accent) 45%, transparent);
}

.wp-site-blocks .wp-block-table th,
.wp-site-blocks .wp-block-table td,
.editor-styles-wrapper .wp-block-table th,
.editor-styles-wrapper .wp-block-table td {
  padding: 17px 20px;
  border: 0;
  border-top: 1px solid var(--yr-line);
  color: var(--yr-text);
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
  vertical-align: top;
}

.wp-site-blocks .wp-block-table thead th,
.wp-site-blocks .wp-block-table table > tbody:first-child > tr:first-child > td,
.editor-styles-wrapper .wp-block-table thead th,
.editor-styles-wrapper .wp-block-table table > tbody:first-child > tr:first-child > td {
  border-top: 0;
  background: #f7faff;
  color: var(--yr-ink-2);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wp-site-blocks .wp-block-table thead + tbody tr:first-child td,
.editor-styles-wrapper .wp-block-table thead + tbody tr:first-child td {
  border-top: 0;
}

.wp-site-blocks .wp-block-table tbody tr,
.editor-styles-wrapper .wp-block-table tbody tr {
  transition: background 0.2s ease;
}

.wp-site-blocks .wp-block-table tbody tr:hover,
.editor-styles-wrapper .wp-block-table tbody tr:hover {
  background: #fbfdff;
}

.wp-site-blocks .wp-block-table figcaption,
.editor-styles-wrapper .wp-block-table figcaption {
  margin: 0;
  padding: 12px 18px;
  border-top: 1px solid var(--yr-line);
  color: var(--yr-muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
}

.wp-site-blocks .wp-block-table.yr-has-table-scroll {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wp-site-blocks .wp-block-table.yr-has-table-scroll figcaption {
  margin-top: -1px;
  border: 1px solid var(--yr-line);
  border-top: 0;
  border-radius: 0 0 var(--yr-radius) var(--yr-radius);
  background: #fff;
}

.yr-table-scroll {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--yr-line);
  border-radius: var(--yr-radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 28, 54, 0.05);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--yr-accent) 45%, transparent) rgba(220, 229, 240, 0.75);
}

.yr-table-scroll table {
  width: max-content;
  min-width: 640px;
}

.yr-table-scroll::-webkit-scrollbar {
  height: 8px;
}

.yr-table-scroll::-webkit-scrollbar-track {
  background: rgba(220, 229, 240, 0.75);
}

.yr-table-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: color-mix(in srgb, var(--yr-accent) 45%, transparent);
}

.yr-spec-table {
  position: relative;
  margin: 42px 0;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--yr-line);
  border-radius: var(--yr-radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(12, 28, 54, 0.05);
}

.yr-spec-table__header {
  max-width: 760px;
  margin-bottom: clamp(22px, 3vw, 30px);
}

.yr-spec-table__eyebrow {
  margin: 0 0 10px !important;
  color: var(--yr-accent);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yr-spec-table__title {
  margin: 0 !important;
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: 0;
}

.yr-spec-table__description {
  margin: 12px 0 0 !important;
  color: var(--yr-text);
  font-size: 16px;
  line-height: 1.75;
}

.yr-spec-table__frame {
  overflow: hidden;
  border: 1px solid var(--yr-line);
  border-radius: var(--yr-radius);
  background: #fff;
}

.yr-spec-table__table {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.yr-spec-table__table th,
.yr-spec-table__table td {
  padding: 18px 20px;
  border: 0;
  text-align: left;
  vertical-align: top;
}

.yr-spec-table__table th {
  border-bottom: 1px solid var(--yr-line);
  background: #f7faff;
  color: var(--yr-ink-2);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yr-spec-table__table th:first-child,
.yr-spec-table__table td:first-child {
  width: 28%;
}

.yr-spec-table__table th:nth-child(2),
.yr-spec-table__table td:nth-child(2) {
  width: 34%;
}

.yr-spec-table__table td {
  border-top: 1px solid var(--yr-line);
  color: var(--yr-text);
  font-size: 15px;
  line-height: 1.65;
}

.yr-spec-table__table tbody tr:first-child td {
  border-top: 0;
}

.yr-spec-table__table td:first-child {
  color: var(--yr-heading);
  font-weight: 720;
}

.yr-spec-table__table tbody tr {
  transition: background 0.2s ease;
}

.yr-spec-table__table tbody tr:hover {
  background: #fbfdff;
}

.yr-spec-table-editor .yr-spec-table__actions-heading,
.yr-spec-table-editor .yr-spec-table__actions-cell {
  width: 112px;
}

.yr-spec-table-editor-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.yr-spec-table-editor-actions .yr-spec-table-editor-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--yr-line);
  border-radius: 50%;
  color: var(--yr-ink-2);
  background: #fff;
  box-shadow: none;
}

.yr-spec-table-editor-actions .yr-spec-table-editor-action::before {
  color: currentColor;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
}

.yr-spec-table-editor-action--up::before {
  content: "\2191";
}

.yr-spec-table-editor-action--down::before {
  content: "\2193";
}

.yr-spec-table-editor-action--remove::before {
  content: "\00d7";
  font-size: 18px;
}

.yr-spec-table-editor-actions .yr-spec-table-editor-action:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--yr-accent) 28%, transparent);
  background: color-mix(in srgb, var(--yr-accent) 6%, transparent);
  color: var(--yr-accent);
}

.yr-spec-table-editor-actions .yr-spec-table-editor-action--remove:hover:not(:disabled) {
  border-color: rgba(196, 52, 52, 0.28);
  background: rgba(196, 52, 52, 0.06);
  color: #b42318;
}

.yr-spec-table-editor-actions .yr-spec-table-editor-action:disabled {
  color: #a9b5c6;
  opacity: 1;
}

.yr-spec-table-editor-add {
  display: flex;
  justify-content: flex-start;
  margin-top: 16px;
}

.yr-spec-table-editor-add .components-button {
  min-height: 40px;
  border-radius: var(--yr-radius);
  font-weight: 650;
}

.yr-product-resources {
  margin: 56px 0;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 42px);
  background: #f3f7fc;
}

.yr-product-resources__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
  gap: clamp(30px, 4vw, 54px);
  align-items: start;
}

.yr-product-resources--no-catalog .yr-product-resources__shell {
  grid-template-columns: 1fr;
}

.yr-product-resources--single-tab .yr-product-resources__panels {
  max-width: 100%;
}

.yr-product-resources__main {
  min-width: 0;
}

.yr-product-resources__tabs {
  display: flex;
  gap: 0;
  max-width: 100%;
  margin-bottom: 26px;
  overflow-x: auto;
  border: 1px solid #dce5f0;
  border-radius: 14px;
  background: #f7f9fd;
  scrollbar-width: thin;
}

.yr-product-resources__tab {
  position: relative;
  flex: 0 0 auto;
  min-width: 170px;
  min-height: 68px;
  padding: 0 30px;
  border: 0;
  border-right: 1px solid #dce5f0;
  border-radius: 0;
  background: transparent;
  color: #647184;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.yr-product-resources__tab:first-child {
  border-top-left-radius: 13px;
  border-bottom-left-radius: 13px;
}

.yr-product-resources__tab:last-child {
  border-right: 0;
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
}

.yr-product-resources__tab::after {
  content: none;
}

.yr-product-resources__tab:hover,
.yr-product-resources__tab:focus-visible,
.yr-product-resources__tab.is-active {
  color: var(--yr-heading);
}

.yr-product-resources__tab:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--yr-accent) 32%, transparent);
  outline-offset: 1px;
}

.yr-product-resources__tab.is-active {
  background: #fff;
}

.yr-product-resources__panels {
  min-height: 0;
  background: transparent;
}

.yr-product-resources__panel {
  padding: 0;
}

.yr-product-resources__panel[hidden] {
  display: none !important;
}

.yr-product-resource-tab__content > :first-child {
  margin-top: 0;
}

.yr-product-resource-tab__content > :last-child {
  margin-bottom: 0;
}

.yr-product-resources__panel .wp-block-table {
  display: block;
  max-width: 100%;
  margin: 0;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #dce5f0;
  border-radius: 14px;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.yr-product-resources__panel .wp-block-table.yr-has-table-scroll {
  overflow: visible;
  border: 0;
}

.yr-product-resources__panel .yr-table-scroll {
  box-shadow: none;
}

.yr-product-resources__panel .wp-block-table table {
  width: max-content;
  min-width: 640px;
}

.yr-image-gallery {
  margin: clamp(36px, 5vw, 64px) 0;
}

.yr-image-gallery-editor {
  min-height: 120px;
  outline: 0;
}

.yr-image-gallery {
  --yr-gallery-columns: 3;
  --yr-gallery-gap: clamp(12px, 1.35vw, 20px);
}

.yr-image-gallery--cols-2 {
  --yr-gallery-columns: 2;
}

.yr-image-gallery--cols-3 {
  --yr-gallery-columns: 3;
}

.yr-image-gallery--cols-4 {
  --yr-gallery-columns: 4;
}

.yr-image-gallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--yr-gallery-columns), minmax(0, 1fr));
  gap: var(--yr-gallery-gap);
}

.yr-image-gallery__item {
  position: relative;
  display: block;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 240, 0.9);
  border-radius: 8px;
  background: #eef3f8;
  box-shadow: 0 14px 28px rgba(12, 28, 54, 0.08);
}

.yr-image-gallery__item img,
.yr-image-gallery__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.yr-image-gallery__item img {
  height: 100%;
  transition: transform 0.35s ease;
}

.yr-image-gallery__item:hover img {
  transform: scale(1.035);
}

.yr-image-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--yr-accent) 14%, transparent), transparent 46%),
    #f8fbff;
  color: rgba(23, 53, 98, 0.28);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 820;
}

.yr-image-gallery__item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-height: none;
  margin: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(180deg, rgba(8, 20, 39, 0), rgba(8, 20, 39, 0.82));
  color: #fff;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
}

.yr-image-gallery-editor .yr-image-gallery__item {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-color: #dce5f0;
  background: #fff;
  box-shadow: 0 10px 24px rgba(12, 28, 54, 0.06);
}

.yr-image-gallery-editor .yr-image-gallery__item figcaption {
  position: static;
  z-index: auto;
  min-height: 74px;
  padding: 14px 16px;
  border-top: 1px solid #e4ebf5;
  background: #fff;
  color: var(--yr-heading);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  outline: 0;
}

.yr-image-gallery-editor__actions {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px 14px;
  border-top: 1px solid #eef3f8;
  background: #f8fbff;
  box-shadow: none;
}

.yr-image-gallery-editor__actions .components-button {
  min-height: 32px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 650;
}

.yr-image-gallery-editor__actions .components-button.is-destructive {
  color: #b42318;
}

.yr-image-gallery-editor__add {
  margin-top: 18px;
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images {
  --yr-gallery-columns: 3;
  --yr-gallery-gap: clamp(12px, 1.35vw, 20px);
  display: grid !important;
  grid-template-columns: repeat(var(--yr-gallery-columns), minmax(0, 1fr));
  gap: var(--yr-gallery-gap) !important;
  align-items: stretch;
  margin: clamp(28px, 4vw, 48px) 0;
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-2 {
  --yr-gallery-columns: 2;
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-3 {
  --yr-gallery-columns: 3;
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-4 {
  --yr-gallery-columns: 4;
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-5,
:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-6,
:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-7,
:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-8 {
  --yr-gallery-columns: 4;
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images > figure.wp-block-image {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: none !important;
  min-height: 0;
  margin: 0 !important;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 240, 0.9);
  border-radius: 8px;
  background: #eef3f8;
  box-shadow: 0 14px 28px rgba(12, 28, 54, 0.08);
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images > figure.wp-block-image img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images > figure.wp-block-image:hover img {
  transform: scale(1.035);
}

:where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images > figure.wp-block-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-height: none;
  margin: 0;
  padding: 34px 18px 16px;
  background: linear-gradient(180deg, rgba(8, 20, 39, 0), rgba(8, 20, 39, 0.82));
  color: #fff;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0;
  text-align: left;
}

.yr-product-resources__catalog {
  --yr-product-resources-catalog-width: 260px;
  display: grid;
  justify-items: center;
  background: transparent;
}

.yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog {
  align-content: start;
}

.yr-product-resources__catalog-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--yr-product-resources-catalog-width);
  max-width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
}

.yr-product-resources__catalog-media img {
  display: block;
  width: 100%;
  aspect-ratio: 300 / 403;
  height: auto;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(12, 28, 54, 0.13);
}

.yr-product-resources__catalog-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 300 / 403;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--yr-accent) 16%, transparent);
  border-radius: 2px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--yr-accent) 10%, transparent), color-mix(in srgb, var(--yr-accent) 0%, transparent) 42%),
    #fff;
  color: #173562;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 26px;
  font-weight: 820;
  box-shadow: 0 18px 34px rgba(12, 28, 54, 0.11);
}

.yr-product-resources__catalog-placeholder::before {
  content: "";
  position: absolute;
  inset: 30px 28px auto;
  height: 112px;
  border-top: 7px solid color-mix(in srgb, var(--yr-accent) 18%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--yr-accent) 14%, transparent);
  box-shadow:
    0 26px 0 color-mix(in srgb, var(--yr-accent) 10%, transparent),
    0 52px 0 color-mix(in srgb, var(--yr-accent) 10%, transparent),
    0 78px 0 color-mix(in srgb, var(--yr-accent) 10%, transparent);
}

.yr-product-resources__catalog-placeholder::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-style: solid;
  border-width: 0 0 64px 64px;
  border-color: transparent transparent color-mix(in srgb, var(--yr-accent) 16%, transparent) transparent;
}

.yr-product-resources__catalog-placeholder span {
  position: absolute;
  right: 28px;
  bottom: 42px;
  left: 28px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 52px;
  margin: 0;
  border-radius: 2px;
  background: var(--yr-accent);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.yr-product-resources__catalog-body {
  width: var(--yr-product-resources-catalog-width);
  max-width: 100%;
  padding-top: 16px;
}

.yr-product-resources__catalog-title {
  margin: 0;
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0;
}

.yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-title {
  display: none;
}

.yr-product-resources__catalog-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 14px 22px;
  border-radius: 3px;
  background: var(--yr-accent);
  color: #fff;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.yr-product-resources__catalog-button:hover,
.yr-product-resources__catalog-button:focus-visible {
  background: var(--yr-accent-2, #5a8cf0);
  color: #fff;
  transform: translateY(-1px);
}

.yr-product-resources__catalog-button--placeholder {
  cursor: default;
}

.yr-product-resources__catalog-button--placeholder:hover,
.yr-product-resources__catalog-button--placeholder:focus-visible {
  background: var(--yr-accent);
  transform: none;
}

.yr-product-resources__default-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.yr-product-resources__default-gallery span {
  min-height: 150px;
  border: 1px solid #dce5f0;
  border-radius: 12px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--yr-accent) 10%, transparent), transparent 46%),
    #fff;
}

.yr-product-resources__default-files {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.yr-product-resources__default-files span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  min-height: 120px;
  border: 1px solid #dce5f0;
  border-radius: 12px;
  background: #fff;
  color: var(--yr-accent);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.yr-product-resources-editor {
  outline: 0;
}

.yr-product-resources-editor .yr-product-resources__shell {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: 28px;
}

.yr-product-resources-editor .yr-product-resources__main,
.yr-product-resources-editor .yr-product-resources__main > .block-editor-inner-blocks,
.yr-product-resources-editor .yr-product-resources__main > .block-editor-inner-blocks > .block-editor-block-list__layout {
  min-width: 0;
  max-width: 100%;
}

.yr-product-resources-editor .yr-product-resources__main > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: grid;
  gap: 12px;
}

.yr-product-resource-tab-editor {
  padding: 16px 18px 18px;
  border: 1px solid #dce5f0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  overflow: hidden;
}

.yr-product-resource-tab-editor .wp-block-table {
  max-width: 100%;
  overflow-x: auto;
}

.yr-product-resource-tab-editor__title {
  margin: 0 0 12px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--yr-line);
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
}

.yr-product-resource-tab-editor .block-editor-block-list__layout {
  padding: 0;
}

.yr-product-resource-tab-editor .block-list-appender {
  display: none;
}

.yr-product-resources-editor .yr-product-resources__catalog {
  width: 100%;
  min-width: 0;
  justify-items: stretch;
}

.yr-product-resources-editor .yr-product-resources__catalog-media img,
.yr-product-resources-editor .yr-product-resources__catalog-placeholder {
  width: min(100%, 210px);
}

.yr-product-resources-editor .yr-product-resources__catalog-body {
  width: min(100%, 210px);
}

.yr-product-resources-editor__catalog-actions {
  margin-top: 10px;
}

.yr-product-resources-editor__catalog-actions .components-button {
  width: 100%;
  justify-content: center;
}

.yr-product-resources-editor-media-control {
  margin-top: 16px;
}

.yr-media-content {
  margin: clamp(48px, 6vw, 76px) 0;
  padding: clamp(42px, 5vw, 70px) clamp(18px, 4vw, 42px);
}

.yr-media-content--bg-light {
  background: #f3f7fc;
}

.yr-media-content--bg-white {
  background: #fff;
}

.yr-media-content__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: center;
}

.yr-media-content--media-right .yr-media-content__media {
  order: 2;
}

.yr-media-content--media-right .yr-media-content__body {
  order: 1;
}

.yr-media-content__media {
  min-width: 0;
}

.yr-media-content__media-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf1f8;
  box-shadow: 0 18px 42px rgba(12, 28, 54, 0.12);
}

.yr-media-content__media-link img,
.yr-media-content__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 19 / 12;
  object-fit: cover;
}

.yr-media-content__media-link img {
  height: 100%;
  transition: transform 0.35s ease;
}

.yr-media-content__media-link:hover img,
.yr-media-content__media-link:focus-visible img {
  transform: scale(1.035);
}

.yr-media-content__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(23, 53, 98, 0.34);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 820;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--yr-accent) 14%, transparent), transparent 46%),
    #f8fbff;
}

.yr-media-content__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(12, 28, 54, 0.22);
  transform: translate(-50%, -50%);
}

.yr-media-content__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--yr-accent);
  transform: translate(-35%, -50%);
}

.yr-media-content__body {
  min-width: 0;
}

.yr-media-content__title {
  margin: 0 0 18px;
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: 0;
}

.yr-media-content__text {
  color: var(--yr-text);
  font-size: 16px;
  line-height: 1.78;
}

.yr-media-content__text p {
  margin: 0 0 14px;
}

.yr-media-content__text p:last-child {
  margin-bottom: 0;
}

.yr-media-content__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 14px 24px;
  border: 1px solid var(--yr-accent);
  border-radius: 3px;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.yr-media-content__button--primary {
  background: var(--yr-accent);
  color: #fff !important;
  box-shadow: none;
}

.yr-media-content__button--primary *,
.yr-media-content__button--primary:visited,
.yr-media-content__button--primary:visited * {
  color: #fff !important;
}

.yr-media-content__button--outline {
  background: transparent;
  color: var(--yr-accent);
}

.yr-media-content__button:hover,
.yr-media-content__button:focus-visible {
  transform: translateY(-1px);
}

.yr-media-content__button--primary:hover,
.yr-media-content__button--primary:focus-visible {
  background: var(--yr-accent-2, #5a8cf0);
  border-color: var(--yr-accent-2, #5a8cf0);
  color: #fff !important;
}

.yr-media-content__button--outline:hover,
.yr-media-content__button--outline:focus-visible {
  border-color: var(--yr-accent-2, #5a8cf0);
  background: var(--yr-accent-2, #5a8cf0);
  color: #fff !important;
}

.yr-media-content__button--outline:hover *,
.yr-media-content__button--outline:focus-visible * {
  color: #fff !important;
}

.yr-media-content-editor .yr-media-content__button {
  cursor: text;
}

.yr-media-content-editor__media-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.yr-media-content-editor__media-actions .components-button {
  min-height: 34px;
  border-radius: 4px;
  font-weight: 650;
}

.yr-process-flow {
  counter-reset: yr-process-flow-step;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(18px, 1.5vw, 24px) 0.6rem;
  align-items: stretch;
  margin: clamp(34px, 5vw, 64px) 0;
}

.yr-process-flow--cols-2 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.yr-process-flow--cols-3 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.yr-process-flow__grid {
  display: grid;
  grid-template-columns: inherit;
  gap: inherit;
  align-items: stretch;
  grid-column: 1 / -1;
}

.yr-process-flow__item {
  counter-increment: yr-process-flow-step;
  position: relative;
  display: flex;
  min-height: clamp(260px, 19vw, 370px);
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(52px, 4.6vw, 78px) clamp(14px, 1.6vw, 28px) clamp(28px, 2.8vw, 44px);
  border: 0;
  border-radius: 0 0 46% 46% / 0 0 20% 20%;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--yr-accent) 3.5%, transparent), rgba(255, 255, 255, 0) 58%),
    #f8f8f8;
  color: #111827;
  text-align: center;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.yr-process-flow__item::before {
  content: counter(yr-process-flow-step, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  color: color-mix(in srgb, var(--yr-accent) 7.5%, transparent);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(76px, 6.7vw, 124px);
  font-weight: 780;
  line-height: 0.9;
  letter-spacing: 0;
  transform: translate(-50%, -54%);
  pointer-events: none;
}

.yr-process-flow__title {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 10.5em;
  margin: 0 auto;
  color: inherit;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(19px, 1.45vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.yr-process-flow__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: clamp(66px, 5vw, 88px);
  height: clamp(66px, 5vw, 88px);
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 2px solid color-mix(in srgb, var(--yr-accent) 52%, transparent);
  border-radius: 50%;
  background: transparent;
  color: var(--yr-accent);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.yr-process-flow__icon svg {
  display: block;
  width: clamp(25px, 1.9vw, 33px);
  height: clamp(25px, 1.9vw, 33px);
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yr-process-flow__icon--complete {
  border-color: var(--yr-accent);
  background: var(--yr-accent);
  color: #fff;
}

.yr-process-flow__item:hover {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--yr-accent-2) 18%, transparent), color-mix(in srgb, var(--yr-accent) 7.5%, transparent)),
    #f5f8ff;
  color: var(--yr-ink, #0c1c36);
  box-shadow: 0 18px 42px color-mix(in srgb, var(--yr-accent) 11%, transparent);
  transform: translateY(-2px);
}

.yr-process-flow__item:hover::before {
  color: color-mix(in srgb, var(--yr-accent) 14%, transparent);
}

.yr-process-flow__item:hover .yr-process-flow__icon {
  transform: translateY(-2px);
  border-color: var(--yr-accent);
  background: var(--yr-accent);
  color: #fff;
}

.yr-process-flow__item:hover .yr-process-flow__icon--complete {
  transform: translateY(-2px);
  background: var(--yr-accent-2, #5a8cf0);
  border-color: var(--yr-accent-2, #5a8cf0);
}

.yr-process-flow--editor .yr-process-flow__item {
  min-height: 330px;
}

.yr-process-flow-editor__actions {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
}

.yr-process-flow-editor__actions .components-button {
  min-height: 30px;
  padding: 4px 8px;
}

.yr-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  margin: clamp(34px, 5vw, 64px) 0;
}

.yr-feature-cards--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.yr-feature-cards--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.yr-feature-cards__item {
  position: relative;
  display: flex;
  min-height: clamp(300px, 22vw, 410px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  padding: clamp(34px, 3.8vw, 54px) clamp(28px, 3.2vw, 46px);
  border: 1px solid rgba(12, 28, 54, 0.025);
  border-radius: 6px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--yr-accent) 2.5%, transparent), rgba(255, 255, 255, 0) 58%),
    #f8f8f8;
  color: var(--yr-ink, #0c1c36);
  box-shadow: none;
  transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, color 0.24s ease, transform 0.24s ease;
}

.yr-feature-cards__icon {
  display: inline-flex;
  width: clamp(46px, 3.8vw, 62px);
  height: clamp(46px, 3.8vw, 62px);
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(30px, 3vw, 42px);
  color: var(--yr-accent);
  transition: color 0.24s ease, transform 0.24s ease;
}

.yr-feature-cards__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: currentColor;
}

.yr-feature-cards__title {
  max-width: 11.5em;
  margin: 0 0 clamp(18px, 2vw, 28px);
  color: inherit;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(23px, 2vw, 34px);
  font-weight: 820;
  line-height: 1.22;
  letter-spacing: 0;
}

.yr-feature-cards__text {
  max-width: 42em;
  color: rgba(12, 28, 54, 0.66);
  font-size: clamp(16px, 1.32vw, 22px);
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.24s ease;
}

.yr-feature-cards__text p {
  margin: 0;
}

.yr-feature-cards__text p + p {
  margin-top: 0.75em;
}

.yr-feature-cards__item:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--yr-accent) 16%, transparent);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--yr-accent-2) 15%, transparent), color-mix(in srgb, var(--yr-accent) 6.5%, transparent)),
    #f5f8ff;
  box-shadow: 0 18px 42px color-mix(in srgb, var(--yr-accent) 10%, transparent);
}

.yr-feature-cards__item:hover .yr-feature-cards__icon {
  color: var(--yr-accent-2, #5a8cf0);
  transform: translateY(-2px);
}

.yr-feature-cards__item:hover .yr-feature-cards__text {
  color: rgba(12, 28, 54, 0.78);
}

.yr-feature-cards--editor .yr-feature-cards__item {
  min-height: 360px;
}

.yr-feature-cards-editor__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
  padding-top: 22px;
}

.yr-feature-cards-editor__actions .components-button {
  min-height: 30px;
  padding: 4px 8px;
}

.yr-quote-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin: 36px 0;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--yr-accent) 16%, transparent);
  border-radius: var(--yr-radius);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--yr-accent) 5.5%, transparent), rgba(255, 255, 255, 0) 72%),
    #fff;
  box-shadow: 0 18px 48px rgba(12, 28, 54, 0.07);
}

.yr-quote-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--yr-accent), color-mix(in srgb, var(--yr-accent-2) 34%, transparent));
}

.yr-quote-cta a {
  text-decoration: none;
}

.yr-quote-cta__copy,
.yr-quote-cta__aside {
  position: relative;
}

.yr-quote-cta__eyebrow {
  margin: 0 0 12px !important;
  color: var(--yr-accent);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yr-quote-cta__title {
  max-width: 760px;
  margin: 0 !important;
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 760;
  line-height: 1.22;
  letter-spacing: 0;
}

.yr-quote-cta__text {
  max-width: 740px;
  margin: 14px 0 0 !important;
  color: var(--yr-text);
  font-size: 16px;
  line-height: 1.75;
}

.yr-quote-cta__aside {
  display: flex;
  min-width: 230px;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.yr-quote-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.yr-quote-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--yr-radius);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.yr-quote-cta__button:hover,
.yr-quote-cta__button:focus {
  transform: translateY(-1px);
}

.yr-quote-cta__button--primary {
  background: var(--yr-button-fill);
  color: #fff !important;
  box-shadow: 0 12px 26px var(--yr-accent-shadow);
}

.yr-quote-cta__button--primary *,
.yr-quote-cta__button--primary:visited,
.yr-quote-cta__button--primary:visited * {
  color: #fff !important;
}

.yr-quote-cta__button--primary:hover,
.yr-quote-cta__button--primary:focus {
  background: var(--yr-button-fill-hover);
  color: #fff !important;
  box-shadow: 0 16px 34px var(--yr-accent-shadow);
}

.yr-quote-cta__button--secondary {
  border-color: rgba(12, 28, 54, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--yr-ink);
}

.yr-quote-cta__button--secondary:hover,
.yr-quote-cta__button--secondary:focus {
  border-color: var(--yr-ink);
  background: var(--yr-ink);
  color: #fff;
}

.yr-quote-cta__note {
  max-width: 260px;
  margin: 0 !important;
  color: var(--yr-muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.yr-quote-cta--ink {
  border-color: rgba(255, 255, 255, 0.1);
  background:
    var(--yr-dark-band-glow),
    var(--yr-dark-band-bg);
  color: rgba(255, 255, 255, 0.78);
}

.yr-quote-cta--ink .yr-quote-cta__eyebrow {
  color: var(--yr-accent-2);
}

.yr-quote-cta--ink .yr-quote-cta__title {
  color: #fff;
}

.yr-quote-cta--ink .yr-quote-cta__text,
.yr-quote-cta--ink .yr-quote-cta__note {
  color: rgba(255, 255, 255, 0.72);
}

.yr-quote-cta--ink .yr-quote-cta__button--primary {
  background: #fff;
  color: var(--yr-ink);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.yr-quote-cta--ink .yr-quote-cta__button--primary:hover,
.yr-quote-cta--ink .yr-quote-cta__button--primary:focus {
  background: color-mix(in srgb, var(--yr-accent) 10%, #fff);
  color: var(--yr-accent);
}

.yr-quote-cta--ink .yr-quote-cta__button--secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

.yr-quote-cta--ink .yr-quote-cta__button--secondary:hover,
.yr-quote-cta--ink .yr-quote-cta__button--secondary:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.yr-quote-cta--editorial {
  grid-template-columns: minmax(0, 1fr) minmax(190px, auto);
  gap: clamp(20px, 4vw, 38px);
  padding: clamp(24px, 4vw, 36px);
  border-color: var(--yr-line);
  background: #fff;
  box-shadow: 0 14px 36px rgba(12, 28, 54, 0.045);
}

.yr-quote-cta--editorial::before {
  inset: 24px auto 24px 0;
  width: 3px;
  height: auto;
  background: var(--yr-accent);
}

.yr-quote-cta--editorial .yr-quote-cta__eyebrow {
  margin-bottom: 10px !important;
}

.yr-quote-cta--editorial .yr-quote-cta__title {
  max-width: 680px;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.25;
}

.yr-quote-cta--editorial .yr-quote-cta__text {
  max-width: 680px;
  margin-top: 12px !important;
  font-size: 15px;
  line-height: 1.72;
}

.yr-quote-cta--editorial .yr-quote-cta__aside {
  min-width: 210px;
}

.yr-quote-cta--editorial .yr-quote-cta__button--primary {
  background: var(--yr-ink);
  box-shadow: none;
}

.yr-quote-cta--editorial .yr-quote-cta__button--primary:hover,
.yr-quote-cta--editorial .yr-quote-cta__button--primary:focus {
  background: var(--yr-button-fill-hover);
  box-shadow: 0 12px 26px var(--yr-accent-shadow);
}

.yr-quote-cta--editorial .yr-quote-cta__note {
  max-width: 230px;
  font-size: 12px;
}

.yr-quote-cta-editor .yr-quote-cta__button {
  cursor: text;
}

.yr-collection-cta .yr-quote-cta {
  margin: 0;
}

@media (max-width: 1024px) {
  .yr-quote-cta {
    grid-template-columns: 1fr;
    margin: 28px 0;
    padding: 28px 24px;
  }

  .yr-quote-cta__aside {
    min-width: 0;
    align-items: flex-start;
  }

  .yr-quote-cta__actions {
    justify-content: flex-start;
  }

  .yr-quote-cta__note {
    max-width: none;
    text-align: left;
  }

  .yr-quote-cta--editorial {
    grid-template-columns: 1fr;
  }

  .yr-media-content__inner {
    gap: 30px;
  }

  .yr-product-resources__shell {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  }
}

@media (max-width: 680px) {
  .yr-spec-table {
    margin: 32px 0;
    padding: 24px 18px;
  }

  .yr-spec-table__title {
    font-size: 24px;
  }

  .yr-spec-table__description {
    font-size: 15px;
  }

  .yr-spec-table__frame {
    border-radius: var(--yr-radius);
  }

  .yr-spec-table__table,
  .yr-spec-table__table thead,
  .yr-spec-table__table tbody,
  .yr-spec-table__table tr,
  .yr-spec-table__table th,
  .yr-spec-table__table td {
    display: block;
    width: 100%;
  }

  .yr-spec-table__table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .yr-spec-table__table tr {
    padding: 12px 0;
    border-top: 1px solid var(--yr-line);
  }

  .yr-spec-table__table tbody tr:first-child {
    border-top: 0;
  }

  .yr-spec-table__table td,
  .yr-spec-table__table td:first-child {
    display: grid;
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr);
    gap: 14px;
    padding: 8px 16px;
    border-top: 0;
    font-size: 14px;
  }

  .yr-spec-table__table td::before {
    content: attr(data-label);
    color: var(--yr-muted);
    font-family: var(--wp--preset--font-family--montserrat), sans-serif;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.06em;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .yr-spec-table-editor .yr-spec-table__actions-cell {
    display: flex;
    width: 100%;
    padding-top: 12px;
  }

  .yr-spec-table-editor .yr-spec-table__actions-cell::before {
    content: none;
  }

  .yr-spec-table-editor-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .yr-product-resources {
    margin: 36px 0;
    padding: 30px 18px;
  }

  .yr-product-resources__shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .yr-product-resources__main {
    padding: 0;
  }

  .yr-product-resources__tabs {
    gap: 0;
    margin-bottom: 16px;
  }

  .yr-product-resources__tab {
    min-width: 128px;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .yr-product-resources__tab::after {
    right: 14px;
    left: 14px;
  }

  .yr-product-resources__panel {
    padding: 18px 14px;
  }

  .wp-site-blocks .wp-block-table,
  .editor-styles-wrapper .wp-block-table,
  .yr-product-resources__panel .wp-block-table {
    padding-bottom: 2px;
  }

  .yr-image-gallery,
  .yr-image-gallery--cols-3,
  .yr-image-gallery--cols-4 {
    --yr-gallery-columns: 2;
    --yr-gallery-gap: 12px;
  }

  .yr-image-gallery__item {
    border-radius: 7px;
    box-shadow: 0 10px 22px rgba(12, 28, 54, 0.07);
  }

  .yr-image-gallery__item figcaption {
    padding: 30px 14px 13px;
    font-size: 12px;
  }

  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-3,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-4,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-5,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-6,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-7,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-8 {
    --yr-gallery-columns: 2;
    --yr-gallery-gap: 12px;
    margin: 24px 0;
  }

  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images > figure.wp-block-image {
    border-radius: 7px;
    box-shadow: 0 10px 22px rgba(12, 28, 54, 0.07);
  }

  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images > figure.wp-block-image figcaption {
    padding: 30px 14px 13px;
    font-size: 12px;
  }

  .yr-product-resources__catalog {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    margin-top: 24px;
    border-top: 1px solid var(--yr-line);
    border-left: 0;
  }

  .yr-product-resources__catalog-media {
    padding: 16px 0 16px 18px;
  }

  .yr-product-resources__catalog-media img,
  .yr-product-resources__catalog-placeholder {
    width: 74px;
    border-radius: 5px;
  }

  .yr-product-resources__catalog-placeholder {
    font-size: 16px;
  }

  .yr-product-resources__catalog-body {
    min-width: 0;
    padding: 16px 18px 16px 14px;
  }

  .yr-product-resources__catalog-title {
    font-size: 15px;
  }

  .yr-product-resources__catalog-button {
    justify-content: flex-start;
    min-height: 0;
    margin-top: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--yr-accent);
    font-size: 12px;
    text-align: left;
  }

  .yr-product-resources__catalog-button:hover,
  .yr-product-resources__catalog-button:focus-visible {
    background: transparent;
    color: var(--yr-accent-2, #5a8cf0);
    transform: none;
  }

  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 28px;
    border-top: 0;
  }

  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-media {
    padding: 0;
  }

  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-media img,
  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-placeholder {
    width: min(260px, 74vw);
    border-radius: 2px;
  }

  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-placeholder {
    font-size: 26px;
  }

  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-body {
    width: min(260px, 74vw);
    padding: 18px 0 0;
  }

  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-button {
    justify-content: center;
    min-height: 52px;
    margin: 0;
    padding: 14px 18px;
    border-radius: 3px;
    background: var(--yr-accent);
    color: #fff;
    font-size: 13px;
    text-align: center;
  }

  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-button:hover,
  .yr-product-resources:not(.yr-product-resources-editor) .yr-product-resources__catalog-button:focus-visible {
    background: var(--yr-accent-2, #5a8cf0);
    color: #fff;
    transform: none;
  }

  .yr-product-resources__default-gallery,
  .yr-product-resources__default-files {
    grid-template-columns: 1fr;
  }

  .yr-product-resources__default-gallery span {
    min-height: 120px;
  }

  .yr-product-resources__default-files span {
    min-height: 92px;
  }

  .yr-media-content {
    margin: 36px 0;
    padding: 30px 18px;
  }

  .yr-media-content__inner {
    grid-template-columns: 1fr;
  }

  .yr-media-content--media-right .yr-media-content__media,
  .yr-media-content--media-right .yr-media-content__body {
    order: initial;
  }

  .yr-media-content__title {
    margin-bottom: 14px;
    font-size: 26px;
  }

  .yr-media-content__text {
    font-size: 15px;
    line-height: 1.72;
  }

  .yr-media-content__button {
    width: 100%;
    margin-top: 22px;
  }

  .yr-media-content__play {
    width: 58px;
    height: 58px;
  }

  .yr-media-content__play::before {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }
}

@media (max-width: 430px) {
  .yr-image-gallery,
  .yr-image-gallery--cols-2,
  .yr-image-gallery--cols-3,
  .yr-image-gallery--cols-4 {
    --yr-gallery-columns: 2;
    --yr-gallery-gap: 10px;
  }

  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-2,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-3,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-4,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-5,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-6,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-7,
  :where(.yr-image-gallery, .yr-blog-post-content, .yr-product-resources__panel, .yr-product-resource-tab-editor, .editor-styles-wrapper) .wp-block-gallery.has-nested-images.columns-8 {
    --yr-gallery-columns: 1;
  }

  .yr-quote-cta {
    padding: 24px 20px;
  }

  .yr-quote-cta__actions,
  .yr-quote-cta__button {
    width: 100%;
  }

  .yr-quote-cta__button {
    min-height: 46px;
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* Refined simple B2B language for quote blocks. */
.yr-quote-cta__eyebrow {
  margin: 0 0 12px !important;
  color: var(--yr-accent);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.yr-quote-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin: clamp(48px, 7vw, 82px) 0;
  padding: clamp(34px, 5vw, 58px) clamp(20px, 4vw, 46px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #f3f7fc;
  box-shadow: none;
}

.yr-quote-cta::before {
  content: none;
}

.yr-quote-cta__title {
  max-width: 820px;
  margin: 0 !important;
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 820;
  line-height: 1.16;
  letter-spacing: 0;
}

.yr-quote-cta__text {
  max-width: 780px;
  margin: 14px 0 0 !important;
  color: var(--yr-text);
  font-size: 16px;
  line-height: 1.78;
}

.yr-quote-cta__aside {
  min-width: 230px;
  align-items: flex-start;
  gap: 12px;
}

.yr-quote-cta__actions {
  justify-content: flex-start;
}

.yr-quote-cta__button {
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 780;
  box-shadow: none;
}

.yr-quote-cta__button--primary {
  background: var(--yr-button-fill);
  color: #fff !important;
  box-shadow: none;
}

.yr-quote-cta__button--primary:hover,
.yr-quote-cta__button--primary:focus {
  background: var(--yr-button-fill-hover);
  border-color: var(--yr-button-fill-hover);
  color: #fff !important;
  box-shadow: none;
}

.yr-quote-cta__button--secondary {
  border-color: rgba(12, 28, 54, 0.18);
  background: transparent;
  color: var(--yr-ink);
}

.yr-quote-cta__note {
  max-width: 280px;
  color: var(--yr-muted);
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
}

.yr-quote-cta--editorial {
  padding: clamp(30px, 4vw, 44px) 0;
  border-top: 1px solid var(--yr-line);
  border-bottom: 1px solid var(--yr-line);
  background: transparent;
}

.yr-quote-cta--editorial::before {
  content: none;
}

.yr-quote-cta--editorial .yr-quote-cta__title {
  max-width: 820px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.yr-quote-cta--editorial .yr-quote-cta__text {
  max-width: 760px;
  font-size: 16px;
}

.yr-quote-cta--editorial .yr-quote-cta__button--primary {
  background: var(--yr-button-fill);
}

.yr-quote-cta--ink {
  padding: clamp(38px, 5vw, 62px) clamp(22px, 4vw, 48px);
  border: 0;
  background: var(--yr-dark-band-bg);
  color: rgba(255, 255, 255, 0.78);
}

.yr-quote-cta--ink .yr-quote-cta__title {
  color: #fff;
}

.yr-quote-cta--ink .yr-quote-cta__button--primary {
  background: #fff;
  color: var(--yr-ink);
  box-shadow: none;
}

.yr-quote-cta--ink .yr-quote-cta__button--primary:hover,
.yr-quote-cta--ink .yr-quote-cta__button--primary:focus {
  background: color-mix(in srgb, var(--yr-accent) 10%, #fff);
  color: var(--yr-accent);
}

@media (min-width: 1280px) {
  .yr-spec-table {
    margin: 54px 0;
    padding: 44px;
  }

  .yr-spec-table__header {
    max-width: 820px;
    margin-bottom: 34px;
  }

  .yr-spec-table__eyebrow {
    font-size: 12.5px;
  }

  .yr-spec-table__title {
    font-size: 36px;
    line-height: 1.18;
  }

  .yr-spec-table__description {
    font-size: 17px;
    line-height: 1.76;
  }

  .yr-spec-table__table th,
  .yr-spec-table__table td {
    padding: 20px 22px;
  }

  .yr-spec-table__table th {
    font-size: 12.5px;
  }

  .yr-spec-table__table td {
    font-size: 16px;
    line-height: 1.68;
  }

  .yr-product-resources {
    margin: 66px 0;
    padding: 76px 50px;
  }

  .yr-product-resources__shell {
    gap: 60px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 350px);
  }

  .yr-product-resources__tabs {
    margin-bottom: 30px;
  }

  .yr-product-resources__tab {
    min-width: 184px;
    min-height: 74px;
    padding: 0 34px;
    font-size: 20px;
  }

  .yr-product-resources__panel .wp-block-table table {
    font-size: 16px;
  }

  .yr-product-resources__catalog {
    --yr-product-resources-catalog-width: 280px;
  }

  .yr-product-resources__catalog-button {
    min-height: 58px;
    font-size: 15px;
  }

  .yr-media-content {
    margin: 70px 0;
    padding: 76px 50px;
  }

  .yr-media-content__inner {
    gap: 66px;
  }

  .yr-media-content__title {
    margin-bottom: 22px;
    font-size: 46px;
    line-height: 1.12;
  }

  .yr-media-content__text {
    font-size: 17.5px;
    line-height: 1.8;
  }

  .yr-media-content__button {
    min-height: 58px;
    margin-top: 32px;
    padding: 15px 28px;
    font-size: 14px;
  }

  .yr-feature-cards {
    gap: 32px;
    margin: 66px 0;
  }

  .yr-feature-cards__item {
    min-height: 420px;
    padding: 54px 48px;
  }

  .yr-feature-cards__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 44px;
  }

  .yr-feature-cards__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .yr-feature-cards__text {
    font-size: 18px;
    line-height: 1.55;
  }

  .yr-process-flow {
    gap: 26px 12px;
    margin: 66px 0;
  }

  .yr-process-flow__item {
    min-height: 390px;
    padding: 78px 28px 46px;
  }

  .yr-process-flow__item::before {
    font-size: 126px;
  }

  .yr-process-flow__title {
    font-size: 25px;
    line-height: 1.18;
  }

  .yr-process-flow__icon {
    width: 90px;
    height: 90px;
  }
}

@media (min-width: 1440px) {
  .yr-spec-table {
    padding: 48px;
  }

  .yr-media-content {
    padding-right: 56px;
    padding-left: 56px;
  }

  .yr-feature-cards__title {
    font-size: 34px;
  }

  .yr-feature-cards__text {
    font-size: 19px;
  }
}

@media (max-width: 1200px) {
  .yr-process-flow,
  .yr-process-flow__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .yr-process-flow,
  .yr-process-flow__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .yr-feature-cards,
  .yr-feature-cards--cols-2,
  .yr-feature-cards--cols-3,
  .yr-feature-cards--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yr-feature-cards__item {
    min-height: 300px;
  }

  .yr-process-flow--editor .yr-process-flow__item {
    min-height: 300px;
  }

  .yr-quote-cta {
    grid-template-columns: 1fr;
  }

  .yr-quote-cta__text {
    max-width: none;
  }

  .yr-quote-cta__aside,
  .yr-quote-cta__note {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .yr-process-flow,
  .yr-process-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 8px;
  }

  .yr-feature-cards,
  .yr-feature-cards--cols-2,
  .yr-feature-cards--cols-3,
  .yr-feature-cards--cols-4 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .yr-feature-cards__item {
    min-height: 260px;
    padding: 30px 22px;
  }

  .yr-feature-cards__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
  }

  .yr-feature-cards__title {
    max-width: none;
    font-size: 24px;
  }

  .yr-feature-cards__text {
    font-size: 16px;
  }

  .yr-process-flow__item {
    min-height: 250px;
    padding: 72px 14px 28px;
  }

  .yr-process-flow__title {
    font-size: 18px;
  }

  .yr-process-flow__icon {
    width: 62px;
    height: 62px;
  }

  .yr-quote-cta__title {
    font-size: 26px;
  }

  .yr-quote-cta {
    margin: 42px 0;
    padding: 30px 18px;
  }

  .yr-quote-cta--editorial {
    padding-right: 0;
    padding-left: 0;
  }

  .yr-quote-cta__actions,
  .yr-quote-cta__button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .yr-process-flow,
  .yr-process-flow__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .yr-process-flow__item {
    min-height: 230px;
  }
}
