.hevkad-ribbons-page {
  --hvk-blue: #7b9cc5;
  --hvk-blue-soft: rgba(123, 156, 197, 0.1);
  --hvk-blue-border: rgba(123, 156, 197, 0.3);
  --hvk-text: #303030;
  --hvk-text-deep: #374957;
  --hvk-muted: #666;
  --hvk-line: #e8eef5;
  --hvk-shadow: 0 18px 46px rgba(55, 73, 87, 0.09);
  --hvk-shadow-soft: 0 12px 34px rgba(55, 73, 87, 0.07);
  --hvk-radius: 26px;
  --hvk-radius-sm: 18px;
  --hevkad-layout-max: 1425px;
  --hevkad-layout-pad: 15px;

  background: #fff;
  color: var(--hvk-text);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.5;
  overflow: hidden;
  padding: 32px var(--hevkad-layout-pad) 78px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (min-width: 1181px) {
  .hevkad-ribbons-page {
    --hevkad-layout-pad: 32px;
  }
}

.hevkad-ribbons-page *,
.hevkad-ribbons-page *::before,
.hevkad-ribbons-page *::after {
  box-sizing: border-box;
}

.hevkad-ribbons-page a {
  color: inherit;
  text-decoration: none;
}

.hevkad-ribbons-page img,
.hevkad-ribbons-page svg {
  display: block;
  max-width: 100%;
}

.hevkad-ribbons-page p,
.hevkad-ribbons-page h1,
.hevkad-ribbons-page h2,
.hevkad-ribbons-page h3 {
  margin-top: 0;
}

.hevkad-ribbons-container {
  width: min(var(--hevkad-layout-max), 100%);
  margin: 0 auto;
}

.hevkad-ribbons-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 0 18px;
  font-size: 14px;
  color: var(--hvk-muted);
}

.hevkad-ribbons-breadcrumbs a {
  color: var(--hvk-text-deep);
  transition: 0.2s ease;
}

.hevkad-ribbons-breadcrumbs a:hover {
  color: var(--hvk-blue);
}

.hevkad-ribbons-hero {
  position: relative;
  border: 1px solid var(--hvk-blue-border);
  border-radius: 34px;
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--hvk-shadow);
  overflow: hidden;
}

.hevkad-ribbons-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: rgba(123, 156, 197, 0.08);
  pointer-events: none;
}

.hevkad-ribbons-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  gap: 34px;
  align-items: stretch;
}

.hevkad-ribbons-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  padding: 9px 14px;
  border: 1px solid var(--hvk-blue-border);
  border-radius: 999px;
  background: #fff;
  color: var(--hvk-text-deep);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 22px rgba(55, 73, 87, 0.05);
}

.hevkad-ribbons-eyebrow svg,
.hevkad-ribbons-btn svg,
.hevkad-ribbons-badge svg,
.hevkad-ribbons-guide-card__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--hvk-blue);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.hevkad-ribbons-page h1 {
  margin: 24px 0 16px;
  font-size: clamp(34px, 3.3vw, 52px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--hvk-text);
}

.hevkad-ribbons-hero__lead {
  max-width: 790px;
  margin: 0;
  color: var(--hvk-muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
}

.hevkad-ribbons-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hevkad-ribbons-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
  transition: 0.2s ease;
  cursor: pointer;
}

.hevkad-ribbons-btn--primary {
  background: var(--hvk-blue);
  color: #fff !important;
  border-color: var(--hvk-blue);
  box-shadow: 0 12px 26px rgba(123, 156, 197, 0.28);
}

.hevkad-ribbons-btn--primary:hover {
  transform: translateY(-1px);
}

.hevkad-ribbons-btn--primary svg {
  stroke: #fff;
}

.hevkad-ribbons-btn--secondary,
.hevkad-ribbons-btn--outline {
  background: #fff;
  color: var(--hvk-text-deep);
  border-color: var(--hvk-blue-border);
}

.hevkad-ribbons-btn--secondary:hover,
.hevkad-ribbons-btn--outline:hover {
  border-color: var(--hvk-blue);
  box-shadow: 0 10px 24px rgba(55, 73, 87, 0.06);
}

.hevkad-ribbons-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hevkad-ribbons-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--hvk-blue-border);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--hvk-text-deep);
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(55, 73, 87, 0.05);
}

.hevkad-ribbons-hero-photo {
  align-self: stretch;
  display: flex;
}

.hevkad-ribbons-hero-photo__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 430px;
  background: #fff;
  border: 1px solid var(--hvk-blue-border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--hvk-shadow-soft);
}

.hevkad-ribbons-hero-photo__media {
  position: relative;
  flex: 1;
  min-height: 310px;
  background: rgba(123, 156, 197, 0.08);
  overflow: hidden;
}

.hevkad-ribbons-hero-photo__media img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
}

.hevkad-ribbons-hero-photo__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(123, 156, 197, 0.1);
  color: var(--hvk-text-deep);
  text-align: center;
}

.hevkad-ribbons-hero-photo__placeholder-inner {
  display: grid;
  gap: 13px;
  justify-items: center;
  max-width: 285px;
}

.hevkad-ribbons-hero-photo__icon {
  width: 88px;
  height: 88px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--hvk-blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(55, 73, 87, 0.07);
}

.hevkad-ribbons-hero-photo__icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--hvk-blue);
  stroke-width: 1.7;
  fill: none;
}

.hevkad-ribbons-hero-photo__placeholder strong {
  display: block;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--hvk-text);
}

.hevkad-ribbons-hero-photo__placeholder span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--hvk-muted);
}

.hevkad-ribbons-hero-photo__caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-top: 1px solid var(--hvk-line);
  background: #fff;
}

.hevkad-ribbons-hero-photo__caption span {
  display: block;
  color: var(--hvk-blue);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.hevkad-ribbons-hero-photo__caption p {
  margin: 0;
  color: var(--hvk-text);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 600;
}

.hevkad-ribbons-hero-photo__caption small {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--hvk-blue-soft);
  border: 1px solid var(--hvk-blue-border);
  color: var(--hvk-text-deep);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.hevkad-ribbons-section {
  padding: 70px 0 0;
}

.hevkad-ribbons-section__head {
  display: grid;
  gap: 10px;
  max-width: 830px;
  margin-bottom: 26px;
}

.hevkad-ribbons-section__label {
  display: inline-flex;
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--hvk-blue-soft);
  color: var(--hvk-text-deep);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hevkad-ribbons-section h2 {
  margin: 0;
  color: var(--hvk-text);
  font-size: clamp(29px, 2.5vw, 42px);
  line-height: 1.14;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hevkad-ribbons-section__text {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 17px;
  line-height: 1.7;
}

.hevkad-ribbons-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.hevkad-ribbons-products.is-compact {
  grid-template-columns: repeat(2, minmax(0, 420px));
  max-width: 900px;
}

.hevkad-ribbons-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--hvk-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--hvk-shadow-soft);
  transition: 0.2s ease;
}

.hevkad-ribbons-product-card:hover {
  transform: translateY(-2px);
  border-color: var(--hvk-blue-border);
  box-shadow: var(--hvk-shadow);
}

.hevkad-ribbons-product-card__image {
  flex-shrink: 0;
  height: 230px;
  min-height: 230px;
  max-height: 230px;
  background: #fff;
  border-bottom: 1px solid rgba(123, 156, 197, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.hevkad-ribbons-product-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hevkad-ribbons-product-card__image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hevkad-ribbons-product-card__image-placeholder {
  width: 82%;
  height: 72px;
  border-radius: 18px 18px 14px 14px;
  background: #fff;
  border: 1px solid var(--hvk-blue-border);
  box-shadow: 0 18px 30px rgba(55, 73, 87, 0.08);
}

.hevkad-ribbons-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.hevkad-ribbons-product-card__title,
.hevkad-ribbons-product-card h3 {
  margin: 0 0 12px;
  min-height: 58px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--hvk-text);
}

.hevkad-ribbons-product-card__title a,
.hevkad-ribbons-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.hevkad-ribbons-product-card__title a:hover,
.hevkad-ribbons-product-card h3 a:hover {
  color: var(--hvk-blue);
}

.hevkad-ribbons-product-card__excerpt {
  margin: 0 0 18px;
  min-height: 108px;
  color: var(--hvk-muted);
  font-size: 14px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hevkad-ribbons-product-card__footer {
  margin-top: auto;
}

.hevkad-ribbons-product-card__price,
.hevkad-ribbons-product-card__footer .hevkad-ribbons-price {
  margin: 0 0 18px;
  min-height: 24px;
  color: var(--hvk-text-deep);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.hevkad-ribbons-price {
  color: var(--hvk-text-deep);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.hevkad-ribbons-product-card__link {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  margin-top: 0;
}

.hevkad-ribbons-pagination {
  margin-top: 28px;
}

.hevkad-ribbons-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  margin: 4px;
  padding: 8px 12px;
  border: 1px solid var(--hvk-blue-border);
  border-radius: 999px;
  background: #fff;
  color: var(--hvk-text-deep);
  font-size: 14px;
  font-weight: 600;
}

.hevkad-ribbons-pagination .page-numbers.current {
  background: var(--hvk-blue);
  color: #fff;
  border-color: var(--hvk-blue);
}

.hevkad-ribbons-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hevkad-ribbons-guide {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hevkad-ribbons-guide-card {
  background: #fff;
  border: 1px solid var(--hvk-line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--hvk-shadow-soft);
}

.hevkad-ribbons-guide-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--hvk-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.hevkad-ribbons-guide-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.28;
  color: var(--hvk-text);
  font-weight: 600;
}

.hevkad-ribbons-guide-card p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 15px;
  line-height: 1.65;
}

.hevkad-ribbons-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.hevkad-ribbons-feature-card {
  background: #fff;
  border: 1px solid var(--hvk-blue-border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--hvk-shadow-soft);
}

.hevkad-ribbons-feature-card h2,
.hevkad-ribbons-feature-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--hvk-text);
}

.hevkad-ribbons-feature-card p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 16px;
  line-height: 1.75;
}

.hevkad-ribbons-seo-card {
  background: #fff;
  border: 1px solid var(--hvk-line);
  border-radius: 30px;
  padding: 38px;
  box-shadow: var(--hvk-shadow-soft);
}

.hevkad-ribbons-seo-card h2 {
  margin: 0 0 18px;
}

.hevkad-ribbons-seo-text {
  display: grid;
  gap: 16px;
  color: var(--hvk-muted);
  font-size: 16px;
  line-height: 1.82;
}

.hevkad-ribbons-seo-text p {
  margin: 0;
}

.hevkad-ribbons-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  background: linear-gradient(135deg, rgba(123, 156, 197, 0.14), rgba(123, 156, 197, 0.05));
  border: 1px solid var(--hvk-blue-border);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--hvk-shadow-soft);
}

.hevkad-ribbons-note__symbol {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff;
  color: var(--hvk-blue);
  border: 1px solid var(--hvk-blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.hevkad-ribbons-note h2 {
  margin: 0 0 10px;
}

.hevkad-ribbons-note p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 16px;
  line-height: 1.75;
}

.hevkad-ribbons-related {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hevkad-ribbons-link-card {
  display: grid;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--hvk-line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: var(--hvk-shadow-soft);
  transition: 0.2s ease;
}

.hevkad-ribbons-link-card:hover {
  border-color: var(--hvk-blue-border);
  transform: translateY(-1px);
}

.hevkad-ribbons-link-card__title {
  color: var(--hvk-text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.hevkad-ribbons-link-card__desc {
  color: var(--hvk-muted);
  font-size: 14px;
  line-height: 1.55;
}

.hevkad-ribbons-faq {
  display: grid;
  gap: 12px;
}

.hevkad-ribbons-faq details {
  background: #fff;
  border: 1px solid var(--hvk-line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(55, 73, 87, 0.04);
}

.hevkad-ribbons-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  color: var(--hvk-text);
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.hevkad-ribbons-faq summary::-webkit-details-marker {
  display: none;
}

.hevkad-ribbons-faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hvk-blue-soft);
  color: var(--hvk-text-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-weight: 500;
}

.hevkad-ribbons-faq details[open] summary::after {
  content: "−";
  background: var(--hvk-blue);
  color: #fff;
}

.hevkad-ribbons-faq p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--hvk-muted);
  font-size: 15px;
  line-height: 1.7;
}

.hevkad-ribbons-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background: var(--hvk-blue);
  border: 1px solid var(--hvk-blue-border);
  border-radius: 32px;
  padding: 34px;
  color: #fff;
  box-shadow: 0 16px 40px rgba(123, 156, 197, 0.28);
}

.hevkad-ribbons-cta h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(28px, 2.7vw, 42px);
}

.hevkad-ribbons-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.6;
  max-width: 760px;
}

.hevkad-ribbons-cta .hevkad-ribbons-btn {
  background: #fff;
  border-color: #fff;
  color: var(--hvk-text-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 1180px) {
  .hevkad-ribbons-hero__grid {
    grid-template-columns: 1fr;
  }

  .hevkad-ribbons-hero-photo__card {
    min-height: 390px;
  }

  .hevkad-ribbons-products,
  .hevkad-ribbons-guide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hevkad-ribbons-product-card__image {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    padding: 20px;
  }

  .hevkad-ribbons-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .hevkad-ribbons-page {
    padding: 18px 15px 56px;
  }

  .hevkad-ribbons-hero {
    padding: 26px;
    border-radius: 26px;
  }

  .hevkad-ribbons-page h1 {
    font-size: 34px;
  }

  .hevkad-ribbons-hero__lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hevkad-ribbons-hero-photo__card {
    min-height: auto;
  }

  .hevkad-ribbons-hero-photo__media,
  .hevkad-ribbons-hero-photo__media img {
    min-height: 250px;
  }

  .hevkad-ribbons-hero-photo__caption {
    display: grid;
  }

  .hevkad-ribbons-hero__actions,
  .hevkad-ribbons-btn {
    width: 100%;
  }

  .hevkad-ribbons-btn {
    white-space: normal;
    text-align: center;
  }

  .hevkad-ribbons-section {
    padding-top: 52px;
  }

  .hevkad-ribbons-products,
  .hevkad-ribbons-guide,
  .hevkad-ribbons-related,
  .hevkad-ribbons-two-col {
    grid-template-columns: 1fr;
  }

  .hevkad-ribbons-product-card__image {
    height: 205px;
    min-height: 205px;
    max-height: 205px;
    padding: 18px;
  }

  .hevkad-ribbons-product-card__title,
  .hevkad-ribbons-product-card h3 {
    min-height: 0;
  }

  .hevkad-ribbons-product-card__excerpt {
    min-height: 0;
    -webkit-line-clamp: 3;
    margin-bottom: 16px;
  }

  .hevkad-ribbons-product-card__link {
    min-height: 52px;
  }

  .hevkad-ribbons-seo-card,
  .hevkad-ribbons-note,
  .hevkad-ribbons-cta {
    padding: 24px;
    border-radius: 24px;
  }

  .hevkad-ribbons-note {
    grid-template-columns: 1fr;
  }

  .hevkad-ribbons-cta {
    display: grid;
  }
}

.hevkad-ribbons-actions,
.hevkad-ribbons-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.hevkad-ribbons-hero-photo {
  height: 100%;
  min-height: 430px;
  border-radius: 32px;
  border: 1px solid var(--hvk-blue-border);
  background: #fff;
  padding: 14px;
  box-shadow: 0 14px 38px rgba(55, 73, 87, 0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hevkad-ribbons-hero-photo__media {
  flex: 1;
  min-height: 310px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(123, 156, 197, 0.12), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hevkad-ribbons-hero-photo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hevkad-ribbons-hero-photo__placeholder {
  width: 78%;
  max-width: 340px;
  aspect-ratio: 1.55 / 1;
  border-radius: 999px;
  border: 12px solid rgba(123, 156, 197, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  transform: rotate(-5deg);
}

.hevkad-ribbons-hero-photo__placeholder::before,
.hevkad-ribbons-hero-photo__placeholder::after {
  content: "";
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background: rgba(123, 156, 197, 0.35);
  left: 18%;
  right: 18%;
}

.hevkad-ribbons-hero-photo__placeholder::before {
  top: 37%;
}

.hevkad-ribbons-hero-photo__placeholder::after {
  bottom: 37%;
}

.hevkad-ribbons-hero-photo__label {
  padding: 18px 6px 4px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-end;
}

.hevkad-ribbons-hero-photo__label span {
  display: block;
  color: var(--hvk-muted);
  font-size: 13px;
  margin-bottom: 3px;
}

.hevkad-ribbons-hero-photo__label strong {
  display: block;
  color: var(--hvk-text);
  font-size: 20px;
  line-height: 1.2;
}

.hevkad-ribbons-photo-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--hvk-blue-soft);
  color: var(--hvk-text-deep);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.hevkad-ribbons-product-card__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hevkad-ribbons-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hevkad-ribbons-product-card__image-placeholder {
  width: 210px;
  max-width: 100%;
  height: 112px;
  border-radius: 999px;
  border: 10px solid rgba(123, 156, 197, 0.55);
  background: #fff;
  position: relative;
  transform: rotate(-4deg);
}

.hevkad-ribbons-product-card__image-placeholder::before,
.hevkad-ribbons-product-card__image-placeholder::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  height: 12px;
  border-radius: 999px;
  background: rgba(123, 156, 197, 0.3);
}

.hevkad-ribbons-product-card__image-placeholder::before {
  top: 35px;
}

.hevkad-ribbons-product-card__image-placeholder::after {
  bottom: 35px;
}

.hevkad-ribbons-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hevkad-ribbons-info-card,
.hevkad-ribbons-feature-card {
  border: 1px solid var(--hvk-blue-border);
  border-radius: 26px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(55, 73, 87, 0.06);
}

.hevkad-ribbons-info-card h3,
.hevkad-ribbons-feature-card h3 {
  margin: 0 0 10px;
  color: var(--hvk-text);
  font-size: 20px;
  line-height: 1.25;
}

.hevkad-ribbons-info-card p,
.hevkad-ribbons-feature-card p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 15px;
  line-height: 1.6;
}

.hevkad-ribbons-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hevkad-ribbons-link-card {
  display: block;
  min-height: 132px;
  border: 1px solid var(--hvk-blue-border);
  border-radius: 22px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(55, 73, 87, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hevkad-ribbons-link-card:hover {
  transform: translateY(-2px);
  border-color: var(--hvk-blue);
  box-shadow: 0 18px 42px rgba(55, 73, 87, 0.12);
}

.hevkad-ribbons-link-card__title {
  display: block;
  margin: 0 0 8px;
  color: var(--hvk-text);
  font-size: 18px;
  font-weight: 800;
}

.hevkad-ribbons-link-card__desc {
  display: block;
  color: var(--hvk-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hevkad-ribbons-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  border-radius: 32px;
  border: 1px solid var(--hvk-blue-border);
  background: linear-gradient(145deg, rgba(123, 156, 197, 0.13), #fff);
  padding: 30px;
  box-shadow: 0 12px 32px rgba(55, 73, 87, 0.06);
}

.hevkad-ribbons-note__symbol {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--hvk-blue-border);
  color: var(--hvk-blue);
  font-size: 30px;
  font-weight: 800;
}

.hevkad-ribbons-note h2 {
  margin: 0 0 8px;
  font-size: 30px;
}

.hevkad-ribbons-note p {
  margin: 0;
  color: var(--hvk-muted);
  font-size: 17px;
  line-height: 1.65;
}

.hevkad-ribbons-faq {
  display: grid;
  gap: 12px;
}

.hevkad-ribbons-faq details {
  border: 1px solid var(--hvk-blue-border);
  border-radius: 20px;
  background: #fff;
  padding: 18px 20px;
  box-shadow: 0 10px 28px rgba(55, 73, 87, 0.06);
}

.hevkad-ribbons-faq summary {
  cursor: pointer;
  color: var(--hvk-text);
  font-weight: 800;
  font-size: 17px;
  list-style: none;
}

.hevkad-ribbons-faq summary::-webkit-details-marker {
  display: none;
}

.hevkad-ribbons-faq p {
  margin: 12px 0 0;
  color: var(--hvk-muted);
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .hevkad-ribbons-grid-4,
  .hevkad-ribbons-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hevkad-ribbons-hero-photo {
    min-height: 360px;
  }
}

@media (max-width: 780px) {
  .hevkad-ribbons-products.is-compact,
  .hevkad-ribbons-grid-4,
  .hevkad-ribbons-links {
    grid-template-columns: 1fr;
  }

  .hevkad-ribbons-hero-photo {
    min-height: 320px;
  }

  .hevkad-ribbons-note {
    grid-template-columns: 1fr;
  }
}
