.iot-single-main {
  padding-block: clamp(14px, 2vw, 28px) clamp(72px, 8vw, 120px);
}

.iot-single-main > .iot-container {
  max-width: 1280px;
}

.iot-breadcrumbs {
  margin-bottom: clamp(12px, 1.8vw, 20px);
  color: var(--iot-text-dim);
  font-size: 11px;
}

.iot-breadcrumbs ol {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.iot-breadcrumbs li {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.iot-breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: var(--iot-accent-bright);
}

.iot-breadcrumbs li:last-child {
  overflow: hidden;
  max-width: min(52vw, 440px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iot-breadcrumbs a {
  color: var(--iot-text-muted);
  text-decoration: none;
}

.iot-article-header {
  position: relative;
  padding: clamp(14px, 1.8vw, 20px);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--iot-border-strong);
  border-radius: var(--iot-radius);
  background:
    radial-gradient(circle at 90% 90%, rgba(179, 39, 57, 0.18), transparent 20rem),
    linear-gradient(135deg, #111, #090909 70%);
  box-shadow: var(--iot-shadow);
}

.iot-article-header::after {
  position: absolute;
  right: -38px;
  bottom: -72px;
  width: 220px;
  height: 150px;
  content: "";
  transform: rotate(-8deg);
  background:
    radial-gradient(circle at 30% 40%, rgba(197, 48, 69, 0.7) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 50%, rgba(197, 48, 69, 0.52) 0 8px, transparent 9px),
    radial-gradient(circle at 66% 34%, rgba(197, 48, 69, 0.42) 0 3px, transparent 4px);
  opacity: 0.45;
}

.iot-taxonomy-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 9px;
}

.iot-taxonomy-chip {
  padding: 4px 8px;
  border: 1px solid rgba(197, 48, 69, 0.45);
  border-radius: 4px;
  background: rgba(111, 23, 34, 0.5);
  color: #eaded7;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}

.iot-taxonomy-chip--category {
  background: var(--iot-accent);
  color: #fff;
}

.iot-article-header h1 {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0;
  color: var(--iot-text);
  font-family: var(--iot-font-serif);
  font-size: clamp(21px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.iot-article-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  margin-top: 10px;
  color: var(--iot-text-muted);
  font-size: 11px;
}

.iot-article-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.iot-article-meta > span > span[aria-hidden] {
  color: var(--iot-accent-bright);
  font-size: 8px;
}

.iot-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  align-items: start;
  gap: clamp(22px, 2.6vw, 34px);
}

.iot-article-main,
.iot-article-sidebar {
  display: grid;
  min-width: 0;
  gap: 20px;
}

.iot-summary-post-content {
  display: grid;
  min-width: 0;
  gap: clamp(22px, 3vw, 34px);
}

.iot-summary-featured {
  display: grid;
  width: 100%;
  min-width: 0;
  margin: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--iot-border-strong);
  border-radius: var(--iot-radius);
  background: #080808;
  box-shadow: none;
}

.iot-summary-featured img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  box-shadow: none;
}

.iot-summary-post-content > * {
  min-width: 0;
  max-width: 100%;
}

.iot-summary-post-content > p,
.iot-summary-post-content > ul,
.iot-summary-post-content > ol,
.iot-summary-post-content > blockquote {
  margin: 0;
  color: var(--iot-text-soft);
  font-size: 16px;
  line-height: 1.9;
}

.iot-content-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.iot-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--iot-border-strong);
  border-radius: var(--iot-radius);
  background: var(--iot-surface);
  box-shadow: var(--iot-shadow);
}

.iot-product-card__media {
  position: relative;
  z-index: 0;
  width: 100%;
  min-width: 0;
  max-height: 460px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
  isolation: isolate;
}

body.iot-site .iot-product-card__media img {
  position: static;
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.iot-product-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  place-content: center;
  place-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(179, 39, 57, 0.14), transparent 35%),
    linear-gradient(145deg, #202020, #0c0c0c);
  color: rgba(230, 222, 208, 0.28);
}

.iot-product-placeholder span {
  font-family: var(--iot-font-serif);
  font-size: 96px;
  line-height: 1;
}

.iot-product-placeholder small {
  margin-top: 12px;
  font-size: 9px;
  letter-spacing: 0.24em;
}

.iot-product-card__body {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: clamp(25px, 3vw, 38px);
  border-top: 1px solid var(--iot-border);
  background: var(--iot-surface);
}

.iot-panel-kicker {
  margin: 0 0 5px;
  color: var(--iot-accent-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.iot-product-card h2,
.iot-dark-panel-heading h2,
.iot-light-panel-heading h2 {
  margin: 0;
  font-family: var(--iot-font-serif);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.iot-product-card h2 {
  font-size: 26px;
}

.iot-product-title {
  position: static;
  max-width: 100%;
  margin: 10px 0 0;
  color: var(--iot-text);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.iot-product-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0 25px;
  border-top: 1px solid var(--iot-border);
}

.iot-product-facts div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  border-bottom: 1px solid var(--iot-border);
}

.iot-product-facts .iot-product-fact--left {
  border-right: 1px solid var(--iot-border);
}

.iot-product-fact--code {
  grid-area: 1 / 1;
}

.iot-product-fact--actress {
  grid-area: 1 / 2;
}

.iot-product-fact--maker {
  grid-area: 2 / 1;
}

.iot-product-fact--label {
  grid-area: 2 / 2;
}

.iot-product-fact--release {
  grid-area: 3 / 1;
}

.iot-product-fact--duration {
  grid-area: 3 / 2;
}

.iot-product-facts dt,
.iot-product-facts dd {
  padding: 8px 10px;
  margin: 0;
  font-size: 12px;
}

.iot-product-facts dt {
  background: rgba(255, 255, 255, 0.045);
  color: var(--iot-text-muted);
  font-weight: 700;
}

.iot-product-facts dd {
  min-width: 0;
  color: var(--iot-text);
  overflow-wrap: anywhere;
}

.iot-product-facts dd a {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  padding: 3px 9px;
  border: 1px solid rgba(197, 48, 69, 0.68);
  border-radius: 999px;
  background: rgba(111, 23, 34, 0.72);
  color: var(--iot-text);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  transition: background var(--iot-ease), border-color var(--iot-ease), color var(--iot-ease);
}

.iot-product-facts dd a:hover,
.iot-product-facts dd a:focus-visible {
  border-color: var(--iot-accent-bright);
  background: var(--iot-accent);
  color: #fff;
}

.iot-product-facts dd a:focus-visible {
  outline: 2px solid var(--iot-text);
  outline-offset: 2px;
}

.iot-primary-cta {
  display: inline-grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  min-height: 54px;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid #d45b69;
  border-radius: 5px;
  background: var(--iot-accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background var(--iot-ease), transform var(--iot-ease);
}

body.iot-site a.iot-primary-cta {
  color: #fff;
  font-weight: 800;
}

.iot-primary-cta__label {
  min-width: 0;
  color: #fff;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.iot-primary-cta__icon {
  width: 16px;
  text-align: center;
}

.iot-primary-cta:hover {
  transform: translateY(-2px);
  background: var(--iot-accent-bright);
}

.iot-primary-cta.is-disabled {
  border-color: var(--iot-border);
  background: #222;
  color: var(--iot-text-dim);
}

.iot-product-ctas {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
  margin-top: 25px;
}

.iot-product-ctas .iot-primary-cta {
  height: 100%;
  width: 100%;
  min-width: 0;
  text-align: center;
}

.iot-rating-panel,
.iot-summary-card,
.iot-review-content,
.iot-post-navigation {
  border-radius: var(--iot-radius);
  background: #eee8dc;
  color: #191817;
  box-shadow: var(--iot-shadow);
}

.iot-rating-panel {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid #d3c7b8;
  background:
    radial-gradient(circle at 96% 10%, rgba(169, 35, 50, 0.08), transparent 14rem),
    #eee8dc;
}

.iot-rating-panel::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  aspect-ratio: 1;
  content: "";
  border: 18px solid rgba(169, 35, 50, 0.04);
  border-radius: 50%;
}

.iot-light-panel-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.iot-light-panel-heading .iot-panel-kicker {
  color: var(--iot-accent-dark);
}

.iot-light-panel-heading h2 {
  color: #191817;
  font-size: 25px;
}

.iot-light-panel-heading h2 small {
  font-family: var(--iot-font-sans);
  font-size: 11px;
}

.iot-rating-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #c7b9a8;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.25);
}

.iot-rating-item {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 16px 8px 14px;
  border-right: 1px solid #c7b9a8;
  border-bottom: 1px solid #c7b9a8;
  text-align: center;
}

.iot-rating-item:nth-child(3n) {
  border-right: 0;
}

.iot-rating-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.iot-rating-item--overall {
  background: #9e2634;
  color: #fff9ef;
}

.iot-rating-item h3 {
  min-height: 2.6em;
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.3;
}

.iot-rating-item p {
  margin: 8px 0 0;
  font-family: var(--iot-font-sans);
  font-size: 21px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: 0.01em;
  line-height: 1;
}

.iot-gesu-icon {
  width: 104px;
  height: 104px;
  flex: 0 0 auto;
}

.iot-gesu-icon--fallback {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 4px solid #1a1715;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #eee3d2 0 8%, transparent 9%),
    radial-gradient(circle at 34% 41%, #181515 0 5%, transparent 6%),
    radial-gradient(circle at 66% 41%, #181515 0 5%, transparent 6%),
    radial-gradient(ellipse at 50% 67%, #181515 0 25%, transparent 26%),
    #b82f40;
  box-shadow: 0 0 0 5px rgba(169, 35, 50, 0.18), 0 5px 12px rgba(0, 0, 0, 0.22);
}

.iot-gesu-icon--fallback::before,
.iot-gesu-icon--fallback::after {
  position: absolute;
  top: 0;
  width: 16px;
  height: 12px;
  content: "";
  background: #171413;
}

.iot-gesu-icon--fallback::before {
  left: 7px;
  transform: rotate(-22deg);
}

.iot-gesu-icon--fallback::after {
  right: 7px;
  transform: rotate(22deg);
}

.iot-gesu-icon--fallback > span {
  position: relative;
  z-index: 1;
  transform: translateY(23px);
  color: #f1e6d7;
  font-family: var(--iot-font-serif);
  font-size: 11px;
  font-weight: 800;
}

.iot-rating-item--overall .iot-gesu-icon {
  width: 118px;
  height: 118px;
}

.iot-rating-item--overall .iot-gesu-icon--fallback {
  border-color: #f0e3d2;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.iot-rating-scale {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
  color: #625c54;
  font-size: 10px;
  text-align: right;
}

.iot-summary-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #d3c7b8;
}

.iot-summary-card__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--iot-accent);
  color: #fff;
  font-family: var(--iot-font-serif);
  font-size: 27px;
  box-shadow: 0 0 0 6px rgba(169, 35, 50, 0.13);
}

.iot-summary-card h2 {
  margin: 0 0 10px;
  font-family: var(--iot-font-serif);
  font-size: 22px;
  line-height: 1.4;
}

.iot-summary-card h2 small {
  font-family: var(--iot-font-sans);
  font-size: 11px;
}

.iot-summary-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}

.iot-review-content {
  padding: clamp(25px, 4vw, 48px);
  border: 1px solid #d3c7b8;
}

.iot-entry-content h2 {
  position: relative;
  padding-left: 17px;
  color: #191817;
  font-family: var(--iot-font-serif);
  font-weight: 650;
}

.iot-entry-content h2::before {
  position: absolute;
  top: 0.15em;
  bottom: 0.1em;
  left: 0;
  width: 5px;
  content: "";
  background: var(--iot-accent);
  box-shadow: 5px 0 rgba(111, 23, 34, 0.18);
}

.iot-entry-content {
  color: #292624;
  font-size: 16px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.iot-entry-content > *:first-child {
  margin-top: 0;
}

.iot-entry-content > *:last-child {
  margin-bottom: 0;
}

.iot-entry-content p,
.iot-entry-content ul,
.iot-entry-content ol,
.iot-entry-content figure,
.iot-entry-content table,
.iot-entry-content blockquote {
  margin-block: 1.25em;
}

.iot-entry-content h2 {
  margin: 2.2em 0 0.8em;
  font-size: clamp(23px, 2.8vw, 31px);
  line-height: 1.5;
}

.iot-entry-content h3 {
  padding-bottom: 8px;
  margin: 1.9em 0 0.7em;
  border-bottom: 1px solid rgba(169, 35, 50, 0.36);
  color: #302b28;
  font-family: var(--iot-font-serif);
  font-size: clamp(19px, 2.3vw, 24px);
}

.iot-entry-content a {
  color: #8f1f2d;
  font-weight: 700;
}

.iot-entry-content blockquote {
  padding: 16px 19px;
  border-left: 4px solid var(--iot-accent);
  background: #e2d9cb;
}

.iot-entry-content blockquote p {
  margin: 0;
}

.iot-entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.iot-entry-content .wp-block-table,
.iot-entry-content pre {
  max-width: 100%;
  overflow-x: auto;
}

.iot-entry-content th,
.iot-entry-content td {
  padding: 10px;
  border: 1px solid #c7b9a8;
  text-align: left;
}

.iot-entry-content th {
  background: #ded3c3;
}

.iot-entry-content figcaption {
  margin-top: 7px;
  color: #6c655e;
  font-size: 11px;
  text-align: center;
}

.iot-entry-content .alignwide {
  width: min(108%, 900px);
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

.iot-related-reviews {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--iot-border-strong);
  border-radius: var(--iot-radius);
  background: #0d0d0d;
  box-shadow: var(--iot-shadow);
}

.iot-entry-timeline {
  padding-top: clamp(34px, 5vw, 54px);
  margin-top: clamp(38px, 5vw, 58px);
  border-top: 1px solid #c7b9a8;
}

.iot-sample-video {
  padding-top: clamp(30px, 4vw, 44px);
  margin-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid #c7b9a8;
}

.iot-sample-video__heading {
  position: relative;
  padding-left: 17px;
  margin-bottom: 18px;
}

.iot-sample-video__heading::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 5px;
  content: "";
  background: var(--iot-accent);
  box-shadow: 5px 0 rgba(111, 23, 34, 0.14);
}

.iot-sample-video__heading .iot-panel-kicker {
  color: var(--iot-accent-dark);
}

.iot-sample-video__heading h2 {
  margin: 0;
  color: #191817;
  font-family: var(--iot-font-serif);
  font-size: clamp(23px, 2.8vw, 31px);
  font-weight: 650;
  line-height: 1.5;
}

.iot-sample-video__frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid #292929;
  border-radius: 6px;
  background: #050505;
  line-height: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.iot-sample-video video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 680px);
  margin: 0;
  background: #050505;
  object-fit: contain;
}

.iot-entry-timeline__heading {
  position: relative;
  padding-left: 17px;
  margin-bottom: 20px;
}

.iot-entry-timeline__heading::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 5px;
  content: "";
  background: var(--iot-accent);
  box-shadow: 5px 0 rgba(111, 23, 34, 0.14);
}

.iot-entry-timeline__heading .iot-panel-kicker {
  color: var(--iot-accent-dark);
}

.iot-entry-timeline__heading h2 {
  margin: 0;
  color: #191817;
  font-family: var(--iot-font-serif);
  font-size: clamp(23px, 2.8vw, 31px);
  font-weight: 650;
  line-height: 1.5;
}

.iot-timeline-empty {
  padding: 18px 20px;
  margin: 0;
  border: 1px solid #c6baaa;
  border-radius: 5px;
  background: #e3dbcf;
  color: #645d55;
  font-size: 13px;
}

.iot-timeline-empty small {
  display: block;
  margin-top: 5px;
  color: #8f2633;
}

.iot-dark-panel-heading {
  position: relative;
  padding-left: 15px;
  margin-bottom: 19px;
}

.iot-dark-panel-heading::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 4px;
  content: "";
  background: var(--iot-accent-bright);
}

.iot-dark-panel-heading h2 {
  color: var(--iot-text);
  font-size: 24px;
}

.iot-timeline-list {
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #c6baaa;
  border-radius: 5px;
  list-style: none;
}

.iot-timeline-list li {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 72px;
  min-width: 0;
  min-height: 78px;
  background: #e9e3d9;
  color: #1d1a18;
}

.iot-timeline-list li + li {
  border-top: 1px solid #c6baaa;
}

.iot-timeline-list time {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-right: 1px solid #c6baaa;
  background: #171717;
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
}

.iot-timeline-list li > div {
  align-self: center;
  min-width: 0;
  padding: 11px 16px;
}

.iot-timeline-list h3 {
  margin: 0;
  font-size: 13px;
}

.iot-timeline-list p {
  margin: 4px 0 0;
  color: #625b55;
  font-size: 10px;
  line-height: 1.6;
}

.iot-scene-placeholder {
  display: grid;
  margin: 8px;
  place-items: center;
  border: 1px solid #c6baaa;
  background: #d8d0c4;
  color: #998e80;
  font-family: var(--iot-font-serif);
  font-size: 25px;
}

.iot-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.iot-related-grid > :nth-child(n + 5) {
  display: none;
}

.iot-related-grid .iot-review-card__title {
  font-size: 12px;
}

.iot-post-navigation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 18px 22px;
  border: 1px solid #d3c7b8;
}

.iot-post-navigation__item {
  display: grid;
  gap: 5px;
  color: #211e1c;
  text-decoration: none;
}

.iot-post-navigation__item span {
  color: #756d65;
  font-size: 10px;
}

.iot-post-navigation__item strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--iot-font-serif);
  font-size: 13px;
  line-height: 1.6;
}

.iot-post-navigation__item--next {
  text-align: right;
}

.iot-post-navigation__icon {
  width: 58px;
  height: 58px;
  justify-self: center;
}

.iot-article-sidebar {
  position: sticky;
  top: calc(var(--iot-header-height) + 20px);
  align-self: start;
}

.iot-sidebar-panel {
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--iot-border-strong);
  border-radius: var(--iot-radius);
  background:
    radial-gradient(circle at 100% 0, rgba(111, 23, 34, 0.12), transparent 12rem),
    #101010;
  box-shadow: var(--iot-shadow);
}

.iot-sidebar-panel h2 {
  position: relative;
  padding-bottom: 10px;
  margin: 0 0 15px;
  border-bottom: 1px solid var(--iot-border);
  font-family: var(--iot-font-serif);
  font-size: 19px;
  font-weight: 600;
}

.iot-sidebar-panel h2::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 42px;
  height: 1px;
  content: "";
  background: var(--iot-accent-bright);
}

.iot-sidebar-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid var(--iot-border-strong);
  border-radius: 4px;
}

body.iot-site .iot-sidebar-search input {
  min-width: 0;
  height: 44px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: #e8e1d6;
  color: #111;
  caret-color: #111;
  font-size: 12px;
}

body.iot-site .iot-sidebar-search input::placeholder {
  color: #5f5952;
  opacity: 1;
}

.iot-sidebar-search button {
  min-width: 54px;
  border: 0;
  background: #0a0a0a;
  color: var(--iot-text);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.iot-sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

body.iot-site .iot-sidebar-tags a {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  background: var(--iot-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}

body.iot-site .iot-sidebar-tags a:hover,
body.iot-site .iot-sidebar-tags a:focus-visible {
  background: var(--iot-accent-bright);
  color: #fff;
}

.iot-sidebar-reviews {
  display: grid;
}

.iot-sidebar-review {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--iot-border);
  text-decoration: none;
}

.iot-sidebar-review:last-child {
  border-bottom: 0;
}

.iot-sidebar-review__rank {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: -6px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--iot-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.iot-sidebar-review__thumb {
  display: grid;
  width: 96px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  border-radius: 3px;
  background: #272727;
  color: rgba(197, 48, 69, 0.45);
  font-family: var(--iot-font-serif);
}

.iot-sidebar-review__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iot-sidebar-review__body {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.iot-sidebar-review__body strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--iot-font-serif);
  font-size: 11px;
  line-height: 1.55;
}

.iot-sidebar-review__body > span {
  color: var(--iot-star);
  font-size: 9px;
  letter-spacing: -0.05em;
}

.iot-sidebar-empty {
  margin: 0;
  color: var(--iot-text-dim);
  font-size: 11px;
}

@media (max-width: 1099px) {
  .iot-article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .iot-article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-article-sidebar > :last-child {
    grid-column: 1 / -1;
  }

  .iot-sidebar-reviews {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 767px) {
  .iot-single-main {
    padding-top: 10px;
  }

  .iot-breadcrumbs {
    margin-bottom: 11px;
    font-size: 10px;
  }

  .iot-article-header {
    padding: 14px;
  }

  .iot-article-header h1 {
    font-size: clamp(20px, 5.6vw, 26px);
  }

  .iot-article-meta {
    display: flex;
    gap: 4px 12px;
    margin-top: 9px;
    font-size: 10px;
  }

  .iot-product-card__body {
    padding: 22px;
  }

  .iot-rating-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-rating-item:nth-child(3n) {
    border-right: 1px solid #c7b9a8;
  }

  .iot-rating-item:nth-child(2n) {
    border-right: 0;
  }

  .iot-rating-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid #c7b9a8;
  }

  .iot-rating-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .iot-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-related-grid > :nth-child(n) {
    display: block;
  }

}

@media (max-width: 599px) {
  .iot-article-main,
  .iot-article-sidebar {
    gap: 16px;
  }

  .iot-product-card__media,
  .iot-product-placeholder {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .iot-product-card__media img {
    object-fit: contain;
    background: #0a0a0a;
  }

  .iot-product-card__body {
    padding: 24px 20px;
  }

  .iot-product-facts {
    grid-template-columns: 1fr;
  }

  .iot-product-facts div,
  .iot-product-facts .iot-product-fact--left {
    grid-area: auto;
    grid-template-columns: 78px minmax(0, 1fr);
    border-right: 0;
  }

  .iot-product-card .iot-primary-cta {
    width: 100%;
  }

  .iot-product-ctas {
    grid-template-columns: 1fr;
  }

  .iot-summary-card {
    grid-template-columns: 1fr;
  }

  .iot-summary-card__mark {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .iot-review-content {
    padding: 28px 20px;
  }

  .iot-entry-content {
    font-size: 16px;
    line-height: 1.85;
  }

  .iot-entry-content .alignwide {
    width: 100%;
    margin-left: 0;
    transform: none;
  }

  .iot-related-reviews {
    padding: 21px 15px;
  }

  .iot-timeline-list li {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .iot-timeline-list time {
    padding: 10px 7px;
    font-size: 12px;
  }

  .iot-timeline-list li > div {
    padding: 11px 12px;
  }

  .iot-scene-placeholder {
    display: none;
  }

  .iot-post-navigation {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
    padding: 17px;
  }

  .iot-post-navigation__icon {
    display: none;
  }

  .iot-article-sidebar {
    grid-template-columns: 1fr;
  }

  .iot-article-sidebar > :last-child {
    grid-column: auto;
  }

  .iot-sidebar-reviews {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 399px) {
  .iot-taxonomy-chip {
    padding-inline: 8px;
    font-size: 9px;
  }

  .iot-rating-panel {
    padding: 20px 14px;
  }

  .iot-rating-item {
    padding-inline: 5px;
  }

  .iot-rating-item h3 {
    font-size: 11px;
  }

  .iot-gesu-icon {
    width: 92px;
    height: 92px;
  }

  .iot-rating-item--overall .iot-gesu-icon {
    width: 101px;
    height: 101px;
  }

  .iot-rating-item p {
    font-size: 19px;
  }

  .iot-rating-scale {
    line-height: 1.6;
  }

  .iot-related-grid {
    gap: 8px;
  }
}
