/* Шаг 2 — выбор степени защиты IP */

.ms-wizard #quest02 .ms-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1rem;
  width: 100%;
}

@media (max-width: 768px) {
  .ms-wizard #quest02 .ms-choice-grid {
    grid-template-columns: 1fr;
  }
}

.ms-wizard #quest02 .ms-choice-grid > .ms-col-4 {
  flex: none;
  max-width: none;
  width: auto;
  padding: 0;
}

.ms-wizard #quest02 .quest-answer {
  padding: 0;
  max-width: none;
  margin: 0;
  height: 100%;
}

.ms-wizard #quest02 .responsive-box::before {
  display: none;
}

.ms-wizard #quest02 .responsive-box {
  position: static;
  overflow: visible;
  height: 100%;
}

.ms-wizard #quest02 .product-content {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 11rem;
  height: 100%;
  padding: 1.25rem 1.1rem 1rem;
  background: var(--site-glass-bg, #fff);
  border: 1px solid var(--site-glass-border, var(--border));
  border-radius: var(--site-radius-sm);
  box-shadow: var(--site-glass-shadow, var(--shadow));
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ms-wizard #quest02 .product-content:hover {
  border-color: var(--primary);
  box-shadow: var(--site-shadow-hover);
  transform: translateY(-1px);
}

.ms-wizard #quest02 .title {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent !important;
  color: var(--text) !important;
  flex: 1 1 auto;
}

.ms-wizard #quest02 .title h4 {
  font-family: Oswald, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ms-wizard #quest02 .title .text {
  width: auto;
  font-family: "PT Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.ms-wizard #quest02 .picture {
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
  margin-top: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.ms-wizard #quest02 .picture img {
  display: block !important;
  position: static !important;
  width: auto !important;
  max-width: 100%;
  max-height: 88px;
  height: auto;
  margin: 0 auto;
  padding: 0 !important;
  object-fit: contain;
  filter: none;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.ms-wizard #quest02 .product-content:hover .picture img {
  opacity: 1;
}

.ms-wizard #quest02 .ramka {
  margin: 0;
  border: none;
  height: 100%;
}

.ms-wizard #quest02 .quest-answer:hover .ramka {
  border: none;
  margin: 0;
}

.ms-wizard #quest02 .quest-hint {
  font-family: Oswald, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin: 1.25rem 0 0.5rem;
}

.ms-wizard #quest02 .question h3 {
  text-align: left;
}
