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

/* Shared product recommendation cards. The homepage Featured Products section
   uses the same card shell as Product detail Related Products; optional specs
   remain a Product-detail-only content layer. */
.yr-product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 20px;
}

.yr-related-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.yr-related-product-card-media {
  overflow: hidden;
  padding: clamp(6px, 0.35vw, 10px);
  border-radius: 8px;
  background: #f6f6f6;
  transition: background 0.3s ease;
}

.yr-related-product-card-picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 730 / 537;
  border-radius: 8px;
  background: #fff;
}

.yr-related-product-card-picture img,
.yr-related-product-card-picture .yr-image-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.yr-related-product-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
}

.yr-related-product-card-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--yr-heading);
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 700;
  line-height: 1.4;
  text-overflow: ellipsis;
  text-transform: capitalize;
  transition: color 0.3s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.yr-related-product-card-specs {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  color: var(--yr-text);
  font-size: 15px;
  line-height: 1.5;
  list-style: none;
}

.yr-related-product-card-specs li {
  margin: 0;
}

.yr-related-product-card-specs strong {
  color: inherit;
  font-weight: 600;
}

.yr-related-product-card:hover .yr-related-product-card-media,
.yr-related-product-card:focus-visible .yr-related-product-card-media {
  background: var(--yr-accent);
}

.yr-related-product-card:hover .yr-related-product-card-picture img,
.yr-related-product-card:hover .yr-related-product-card-picture .yr-image-placeholder,
.yr-related-product-card:focus-visible .yr-related-product-card-picture img,
.yr-related-product-card:focus-visible .yr-related-product-card-picture .yr-image-placeholder {
  transform: scale(1.05);
}

.yr-related-product-card:hover .yr-related-product-card-title,
.yr-related-product-card:focus-visible .yr-related-product-card-title {
  color: var(--yr-accent);
}

.yr-related-product-card:focus-visible {
  border-radius: 8px;
  outline: 2px solid var(--yr-accent);
  outline-offset: 5px;
}

@media (max-width: 1280px) {
  .yr-product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 500px) {
  .yr-product-related-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Shared article recommendation cards. Homepage News uses the same markup and
   responsive card treatment as Related Articles on detail pages. */
.yr-related-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.yr-related-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.yr-related-post-card-media {
  overflow: hidden;
  padding: clamp(6px, 0.35vw, 10px);
  border-radius: 8px;
  background: #f6f6f6;
  transition: background 0.3s ease;
}

.yr-related-post-card-picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: #fff;
}

.yr-related-post-card-picture img,
.yr-related-post-card-picture .yr-image-placeholder,
.yr-related-post-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.yr-related-post-card-placeholder {
  background: linear-gradient(135deg, #e8eef5, #f7f9fb);
}

.yr-related-post-card-body {
  margin-top: 16px;
}

.yr-related-post-card-title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--yr-heading);
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.25s ease;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.yr-related-post-card:hover .yr-related-post-card-media,
.yr-related-post-card:focus-visible .yr-related-post-card-media {
  background: var(--yr-accent);
}

.yr-related-post-card:hover .yr-related-post-card-picture img,
.yr-related-post-card:hover .yr-related-post-card-picture .yr-image-placeholder,
.yr-related-post-card:focus-visible .yr-related-post-card-picture img,
.yr-related-post-card:focus-visible .yr-related-post-card-picture .yr-image-placeholder {
  transform: scale(1.05);
}

.yr-related-post-card:hover .yr-related-post-card-title,
.yr-related-post-card:focus-visible .yr-related-post-card-title {
  color: var(--yr-accent);
}

.yr-related-post-card:focus-visible {
  border-radius: 8px;
  outline: 2px solid var(--yr-accent);
  outline-offset: 5px;
}

@media (max-width: 1024px) {
  .yr-related-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .yr-related-posts-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.yr-yiran-faq,
.yr-yiran-faq.yr-blog-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 100%;
  margin-block: clamp(32px, 5vw, 56px);
  padding: clamp(24px, 3.2vw, 40px);
  border: 0;
  border-radius: 8px;
  background: #f8f8f8;
  color: var(--yr-text);
  box-shadow: none;
}

.yr-yiran-faq > h2 {
  margin: 0 0 clamp(12px, 1.4vw, 20px) !important;
  color: var(--yr-heading);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}

/* Each QA is its own white card on the gray panel; the open card floods
   with the accent color and flips its text to white. */
.yr-yiran-faq .yr-faq-item {
  margin: 0;
  border: 0;
  border-radius: 6px;
  background: #fff;
  color: var(--yr-heading);
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.yr-yiran-faq .yr-faq-item[open] {
  background: var(--yr-accent);
  color: #fff;
}

.yr-yiran-faq .yr-faq-item summary {
  position: relative;
  display: block;
  padding: clamp(18px, 1.8vw, 24px) clamp(56px, 4.5vw, 64px) clamp(18px, 1.8vw, 24px) clamp(40px, 3.4vw, 48px);
  list-style: none;
  color: inherit;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(15.5px, 1.3vw, 17.5px);
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s ease;
}

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

/* Small accent square before the question; turns white on the open card. */
.yr-yiran-faq .yr-faq-item summary::before {
  content: "";
  position: absolute;
  top: calc(clamp(18px, 1.8vw, 24px) + 0.53em);
  left: clamp(20px, 1.7vw, 24px);
  width: 0.36em;
  height: 0.36em;
  background: var(--yr-accent);
  transition: background-color 0.3s ease;
}

.yr-yiran-faq .yr-faq-item[open] summary::before {
  background: #fff;
}

/* Thin crosshair plus at the right; rotates into a close mark when open. */
.yr-yiran-faq .yr-faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(20px, 1.7vw, 26px);
  width: 16px;
  height: 16px;
  background:
    linear-gradient(currentColor, currentColor) center / 16px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 16px no-repeat;
  color: var(--yr-accent);
  transform: translateY(-50%);
  transition: transform 0.3s ease, color 0.3s ease;
}

.yr-yiran-faq .yr-faq-item summary:hover::after {
  transform: translateY(-50%) scale(1.12);
}

.yr-yiran-faq .yr-faq-item[open] summary::after {
  color: #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* Answer sits under a translucent divider inside the colored card. */
.yr-yiran-faq .yr-faq-item > p {
  margin: 0 clamp(20px, 1.7vw, 24px);
  padding: clamp(14px, 1.4vw, 18px) 0 clamp(18px, 1.8vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15.5px;
  line-height: 1.75;
  animation: yr-faq-reveal 0.32s ease;
}

.yr-yiran-faq .yr-faq-item > p a {
  color: #fff;
  text-decoration: underline;
}

@keyframes yr-faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yr-yiran-faq .yr-faq-item > p {
    animation: none;
  }
}

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

  .yr-yiran-faq .yr-faq-item summary {
    padding: 16px 46px 16px 34px;
  }

  .yr-yiran-faq .yr-faq-item summary::before {
    top: calc(16px + 0.53em);
    left: 16px;
  }

  .yr-yiran-faq .yr-faq-item summary::after {
    right: 16px;
  }

  .yr-yiran-faq .yr-faq-item > p {
    margin: 0 16px;
  }
}

.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 {
  container-type: inline-size;
  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--auto-cols-1 {
  --yr-gallery-columns: 1;
}

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

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

.yr-image-gallery--auto-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);
}

@container (max-width: 1039px) {
  .yr-image-gallery--auto-cols-4 .yr-image-gallery__grid {
    --yr-gallery-columns: 3;
  }
}

@container (max-width: 679px) {
  .yr-image-gallery--auto-cols-3 .yr-image-gallery__grid,
  .yr-image-gallery--auto-cols-4 .yr-image-gallery__grid {
    --yr-gallery-columns: 2;
    --yr-gallery-gap: 12px;
  }
}

@container (max-width: 419px) {
  .yr-image-gallery .yr-image-gallery__grid {
    --yr-gallery-columns: 1;
    --yr-gallery-gap: 10px;
  }
}

.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__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.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;
}

[data-yr-lightbox] {
  position: relative;
  cursor: zoom-in;
}

.yr-auto-lightbox-link {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}

.yr-media-lightbox[hidden],
.yr-media-lightbox__nav[hidden],
.yr-media-lightbox__caption[hidden],
.yr-media-lightbox__counter[hidden] {
  display: none !important;
}

.yr-media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(54px, 6vw, 82px) clamp(60px, 7vw, 110px);
  background: rgba(4, 12, 17, 0.9);
  backdrop-filter: blur(18px) saturate(0.82);
  -webkit-backdrop-filter: blur(18px) saturate(0.82);
}

.yr-media-lightbox__figure {
  display: grid;
  max-width: min(86vw, 1280px);
  max-height: 86vh;
  justify-items: center;
  margin: 0;
}

.yr-media-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(86vh - 54px);
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
}

.yr-media-lightbox__caption {
  max-width: 820px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.yr-media-lightbox__close,
.yr-media-lightbox__nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(18, 30, 37, 0.58);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.yr-media-lightbox__close svg,
.yr-media-lightbox__nav svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.yr-media-lightbox__close {
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  width: 44px;
  height: 44px;
}

.yr-media-lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
}

.yr-media-lightbox__nav--previous {
  left: max(18px, env(safe-area-inset-left));
}

.yr-media-lightbox__nav--next {
  right: max(18px, env(safe-area-inset-right));
}

@media (hover: hover) {
  .yr-media-lightbox__close:hover,
  .yr-media-lightbox__nav:hover {
    border-color: rgba(255, 255, 255, 0.92);
    background: #fff;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
    color: #071219;
  }

  .yr-media-lightbox__close:hover {
    transform: scale(1.05);
  }

  .yr-media-lightbox__nav:hover {
    transform: translateY(-50%) scale(1.05);
  }
}

.yr-media-lightbox__close:focus-visible,
.yr-media-lightbox__nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.92);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.24),
    0 14px 40px rgba(0, 0, 0, 0.3);
}

.yr-media-lightbox__counter {
  position: absolute;
  bottom: max(18px, env(safe-area-inset-bottom));
  left: 50%;
  min-width: 58px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 30, 37, 0.5);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

body.yr-media-lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .yr-media-lightbox {
    padding: 64px 16px 74px;
  }

  .yr-media-lightbox__figure {
    max-width: 100%;
    max-height: 80vh;
  }

  .yr-media-lightbox__image {
    max-height: calc(80vh - 54px);
  }

  .yr-media-lightbox__nav {
    top: auto;
    bottom: 16px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .yr-media-lightbox__nav--previous {
    left: 16px;
  }

  .yr-media-lightbox__nav--next {
    right: 16px;
  }

}

@media (max-width: 600px) and (hover: hover) {
  .yr-media-lightbox__nav:hover {
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .yr-media-lightbox__close,
  .yr-media-lightbox__nav {
    transition: none;
  }
}

.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: transparent;
  box-shadow: 0 18px 42px rgba(12, 28, 54, 0.12);
}

/* Match the frame to the uploaded image instead of forcing a fixed crop. */
[data-yr-smart-image] {
  --yr-smart-image-ratio: auto;
  position: relative;
}

[data-yr-smart-image].is-yr-smart-ready {
  aspect-ratio: var(--yr-smart-image-ratio);
}

.yr-media-content__media-link img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative;
  transition: transform 0.35s ease;
}

[data-yr-smart-image].is-yr-smart-ready > img {
  width: 100%;
  height: 100%;
}

.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;
  width: 100%;
  aspect-ratio: 19 / 12;
  object-fit: cover;
  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__eyebrow {
  margin: 0 0 14px;
}

.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;
}

/* Shared product-highlight language used by product and company content. */
.yr-product-highlights {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--yr-text);
  font-size: 15px;
  line-height: 1.54;
}

.yr-product-highlights li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin: 0;
  padding: 0;
}

.yr-product-highlight-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  margin-top: 1px;
  color: var(--yr-accent);
  fill: currentColor;
}

.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;
  container-type: inline-size;
  margin: clamp(34px, 5vw, 64px) 0;
}

.yr-process-flow__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.5vw, 24px) 0.6rem;
  align-items: stretch;
}

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

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

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

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

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

@container (max-width: 1179px) {
  .yr-process-flow--auto-cols-6 .yr-process-flow__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@container (max-width: 979px) {
  .yr-process-flow--auto-cols-5 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-6 .yr-process-flow__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@container (max-width: 819px) {
  .yr-process-flow--auto-cols-4 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-5 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-6 .yr-process-flow__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@container (max-width: 619px) {
  .yr-process-flow--auto-cols-3 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-4 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-5 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-6 .yr-process-flow__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 8px;
  }
}

@container (max-width: 419px) {
  .yr-process-flow--auto-cols-2 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-3 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-4 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-5 .yr-process-flow__grid,
  .yr-process-flow--auto-cols-6 .yr-process-flow__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

.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__text {
  position: relative;
  z-index: 1;
  margin: 16px auto 24px;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font-size: 14px;
  line-height: 1.58;
}

.yr-process-flow__text p {
  margin: 0;
}

.yr-process-flow__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.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;
}

/* Image-over-text cards — Applications-style two-column editorial grid. */
.yr-image-text-cards {
  margin-block: clamp(56px, 7vw, 88px);
  container-type: inline-size;
}

.yr-image-text-cards--managed {
  margin: 0;
  padding: clamp(76px, 8vw, 116px) clamp(18px, 4vw, 48px);
  background: #fff;
}

.yr-image-text-cards__shell {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.yr-image-text-cards__header {
  margin: 0 0 clamp(30px, 4vw, 44px);
}

.yr-image-text-cards__heading {
  margin: 0;
  color: var(--yr-heading, #0c1c36);
  font-family: var(--wp--preset--font-family--montserrat), Montserrat, sans-serif;
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.yr-image-text-cards__intro {
  max-width: 900px;
  margin-top: 18px;
  color: var(--yr-text, #36475e);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.72;
}

.yr-image-text-cards__intro p,
.yr-image-text-cards__text p {
  margin: 0;
}

.yr-image-text-cards__intro p + p,
.yr-image-text-cards__text p + p {
  margin-top: 0.75em;
}

.yr-image-text-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.yr-image-text-cards__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe4ea;
  border-radius: 8px;
  background: #fff;
  color: var(--yr-text, #36475e);
}

.yr-image-text-cards__media {
  position: relative;
  width: 100%;
  aspect-ratio: 10 / 7;
  overflow: hidden;
  background: var(--yr-card-media-bg, #e9f0f9);
}

.yr-image-text-cards__media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yr-image-text-cards__media .yr-image-placeholder {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
}

.yr-image-text-cards__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--yr-accent) 12%, transparent), transparent 48%),
    var(--yr-paper-2, #f4f7fb);
  color: var(--yr-muted, #697386);
  font-size: 14px;
  font-weight: 650;
}

.yr-image-text-cards__body {
  display: grid;
  flex: 1;
  align-content: start;
  gap: 15px;
  padding: clamp(24px, 3vw, 30px);
}

.yr-image-text-cards__title {
  margin: 0;
  color: var(--yr-heading, #0c1c36);
  font-family: var(--wp--preset--font-family--montserrat), Montserrat, sans-serif;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.45;
}

.yr-image-text-cards__text {
  margin: 0;
  color: var(--yr-text, #36475e);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.62;
}

.yr-image-text-cards--editor {
  margin-block: 24px;
}

.yr-image-text-cards--editor .yr-image-text-cards__media--editor {
  display: flex;
  align-items: center;
  justify-content: center;
}

.yr-image-text-cards-editor__media-button {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
}

.yr-image-text-cards--editor .components-base-control {
  margin: 0;
}

.yr-image-text-cards-editor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 2px;
  border-top: 1px solid var(--yr-line, #e2e9f2);
}

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

@container (max-width: 680px) {
  .yr-image-text-cards__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .yr-image-text-cards {
    margin-block: 48px;
  }

  .yr-image-text-cards__header {
    margin-bottom: 26px;
  }

  .yr-image-text-cards__grid {
    gap: 16px;
  }

  .yr-image-text-cards__body {
    padding: 22px;
  }
}

/* Feature cards — matched to xz-cards-6ozb (icon above title, content-driven height). */
.yr-feature-cards {
  container-type: inline-size;
  margin: 2rem 0;
}

.yr-feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

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

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

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

@container (max-width: 979px) {
  .yr-feature-cards--auto-cols-3 .yr-feature-cards__grid,
  .yr-feature-cards--auto-cols-4 .yr-feature-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@container (max-width: 639px) {
  .yr-feature-cards--auto-cols-2 .yr-feature-cards__grid,
  .yr-feature-cards--auto-cols-3 .yr-feature-cards__grid,
  .yr-feature-cards--auto-cols-4 .yr-feature-cards__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

.yr-feature-cards__item {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 3rem;
  border: 0;
  border-radius: 8px;
  background: #f8f8f8;
  color: var(--yr-ink, #1a1a1a);
  box-shadow: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.yr-feature-cards__icon {
  display: inline-flex;
  width: clamp(3rem, 0.536vw + 2.786rem, 3.6rem);
  height: clamp(3rem, 0.536vw + 2.786rem, 3.6rem);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--yr-accent);
  transition: color 0.3s ease;
}

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

.yr-feature-cards__title {
  max-width: none;
  margin: 2rem 0 1.5rem;
  color: inherit;
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(1.25rem, 0.4vw + 1.1rem, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  transition: color 0.3s ease;
}

.yr-feature-cards__text {
  max-width: none;
  margin: 0;
  color: rgba(26, 26, 26, 0.78);
  font-size: clamp(0.95rem, 0.2vw + 0.9rem, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  transition: color 0.3s ease;
}

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

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

.yr-feature-cards__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 0;
  color: var(--yr-accent);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.yr-feature-cards__item:hover {
  background: var(--yr-accent);
  color: #fff;
}

.yr-feature-cards__item:hover .yr-feature-cards__icon,
.yr-feature-cards__item:hover .yr-feature-cards__title,
.yr-feature-cards__item:hover .yr-feature-cards__text,
.yr-feature-cards__item:hover .yr-feature-cards__link {
  color: #fff;
}

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

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

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

/* Numbered cards — same shell as feature cards, numbers instead of check icons. */
.yr-feature-cards--numbered .yr-numbered-cards__number,
.yr-numbered-cards .yr-numbered-cards__number {
  display: inline-flex;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--yr-accent);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: clamp(2.4rem, 0.8vw + 2.1rem, 3.1rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.yr-feature-cards--numbered .yr-feature-cards__item:hover .yr-numbered-cards__number,
.yr-numbered-cards .yr-feature-cards__item:hover .yr-numbered-cards__number {
  color: #fff;
}

.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,
  .yr-spec-table__table td:nth-child(2) {
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
  }

  .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;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .yr-spec-table__table td > * {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .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__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) {
  :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);
}

/* Product content uses a quiet light treatment even for legacy ink CTAs. */
.yr-product-detail-content .yr-quote-cta--ink {
  border: 1px solid #e1e6eb;
  border-radius: var(--yr-radius);
  background: #f7f8fa;
  color: var(--yr-text);
  box-shadow: 0 12px 30px rgba(12, 28, 54, 0.045);
}

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

.yr-product-detail-content .yr-quote-cta--ink .yr-quote-cta__title {
  color: var(--yr-heading);
}

.yr-product-detail-content .yr-quote-cta--ink .yr-quote-cta__text,
.yr-product-detail-content .yr-quote-cta--ink .yr-quote-cta__note {
  color: var(--yr-text);
}

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

.yr-product-detail-content .yr-quote-cta--ink .yr-quote-cta__button--primary span {
  color: #fff !important;
}

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

@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__grid {
    gap: 1.5rem;
  }

  .yr-feature-cards {
    margin: 1.5rem 0;
  }

  .yr-feature-cards__item {
    min-height: 0;
    padding: 2.25rem;
  }

  .yr-feature-cards__title {
    margin: 1.5rem 0 1.1rem;
    font-size: 1.3rem;
  }

  .yr-feature-cards__text {
    font-size: 0.98rem;
  }

  .yr-process-flow__grid {
    gap: 26px 12px;
  }

  .yr-process-flow {
    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: 1.5rem;
  }

  .yr-feature-cards__text {
    font-size: 1.05rem;
  }
}

@media (max-width: 900px) {
  .yr-feature-cards__item {
    min-height: 0;
  }

  .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-feature-cards__item {
    min-height: 0;
    padding: 1.75rem;
  }

  .yr-feature-cards__title {
    max-width: none;
    margin: 1.25rem 0 0.9rem;
    font-size: 1.2rem;
  }

  .yr-feature-cards__text {
    font-size: 0.95rem;
  }

  .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__item {
    min-height: 230px;
  }
}
/* Certifications — a quiet, continuously moving trust layer. */
.yr-certifications {
  --yr-cert-gap: 18px;
  position: relative;
  width: 100%;
  padding: clamp(48px, 5vw, 68px) 0;
  overflow: hidden;
  background: var(--yr-paper-2, #f6f8f7);
  color: var(--yr-text, #36475e);
}

.yr-certifications__shell {
  width: min(1280px, calc(100% - 48px));
  margin-inline: auto;
}

.yr-certifications__header {
  max-width: 760px;
  margin: 0 auto clamp(28px, 3vw, 42px);
  text-align: center;
}

.yr-certifications__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--yr-accent, #00a676);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.yr-certifications__eyebrow::before {
  width: 30px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.yr-certifications__title {
  margin: 0;
  color: var(--yr-heading, #12312d);
  font-family: var(--wp--preset--font-family--montserrat), sans-serif;
  font-size: var(--yr-section-title-size, clamp(29px, 3.6vw, 44px));
  font-weight: var(--yr-section-title-weight, 700);
  letter-spacing: var(--yr-section-title-letter-spacing, 0);
  line-height: var(--yr-section-title-line-height, 1.12);
}

.yr-certifications__description,
.yr-certifications__description p {
  margin: 14px auto 0;
  color: var(--yr-muted, #697386);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
  text-align: center;
}

.yr-certifications__viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.yr-certifications__track {
  display: flex;
  align-items: stretch;
  gap: var(--yr-cert-gap);
  width: max-content;
  will-change: transform;
}

.yr-certifications .yr-certifications__slide {
  width: clamp(186px, 17.4vw, 224px);
  height: auto;
  margin: 0;
  flex: 0 0 auto;
}

.yr-certifications__link {
  display: flex;
  width: 100%;
  aspect-ratio: 3 / 4;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
  padding: clamp(6px, 0.55vw, 8px);
  border: 1px solid color-mix(in srgb, var(--yr-line, #e2e9f2) 78%, #fff);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 38, 35, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.yr-certifications__link:hover,
.yr-certifications__link:focus-visible {
  border-color: color-mix(in srgb, var(--yr-accent, #00a676) 34%, var(--yr-line, #e2e9f2));
  box-shadow: 0 13px 30px rgba(20, 38, 35, 0.09);
  transform: translateY(-3px);
}

.yr-certifications__link:focus-visible {
  outline: 2px solid var(--yr-accent, #00a676);
  outline-offset: 3px;
}

.yr-certifications__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yr-certifications.is-single .yr-certifications__track {
  width: 100%;
  justify-content: center;
}

.yr-certifications.is-single .yr-certifications__slide {
  width: min(300px, 78vw);
}

.yr-certifications.is-static .yr-certifications__viewport,
.yr-certifications.is-reduced-motion .yr-certifications__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.yr-certifications.is-static .yr-certifications__track,
.yr-certifications.is-reduced-motion .yr-certifications__track {
  gap: var(--yr-cert-gap);
}

.yr-certifications.is-static .yr-certifications__slide,
.yr-certifications.is-reduced-motion .yr-certifications__slide {
  scroll-snap-align: start;
}

.yr-certifications--editor {
  padding: 36px;
  overflow: visible;
}

.yr-certifications--editor .yr-certifications__shell {
  width: 100%;
}

.yr-certifications-editor__toolbar {
  margin: 0 0 24px;
}

.yr-certifications-editor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px;
}

.yr-certifications-editor__item {
  padding: 12px;
  border: 1px solid var(--yr-line, #e2e9f2);
  border-radius: 10px;
  background: #fff;
}

.yr-certifications-editor__preview {
  display: flex;
  aspect-ratio: 3 / 4;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  overflow: hidden;
  background: #f7f8f8;
  cursor: grab;
  user-select: none;
}

.yr-certifications-editor__preview:active {
  cursor: grabbing;
}

.yr-certifications-editor__preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.yr-certifications-editor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}

.yr-certifications-editor__empty {
  margin: 0;
  padding: 32px;
  border: 1px dashed var(--yr-line, #d9e1df);
  border-radius: 10px;
  color: var(--yr-muted, #697386);
  text-align: center;
}

@media (max-width: 900px) {
  .yr-certifications .yr-certifications__slide {
    width: clamp(190px, 29vw, 226px);
  }
}

@media (max-width: 600px) {
  .yr-certifications {
    --yr-cert-gap: 12px;
    padding-block: 40px;
  }

  .yr-certifications__shell {
    width: min(100% - 32px, 1280px);
  }

  .yr-certifications__header {
    margin-bottom: 24px;
  }

  .yr-certifications__title {
    font-size: var(--yr-section-title-size, clamp(29px, 3.6vw, 44px));
  }

  .yr-certifications .yr-certifications__slide {
    width: 70vw;
    max-width: 270px;
  }

  .yr-certifications--editor {
    padding: 24px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .yr-certifications__link {
    transition: none;
  }
}
