
/* Гарантии */
.guarantees .mini-title {
    text-align: center;
    margin-bottom: 44px !important;
}

.guarantees-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.guarantees-list .guarantees-item {
    display: flex;
    justify-content: center;
    color: #222;
    font-size: 14px;
}

.guarantees-list .guarantees-item:hover {
    outline: none;
    border: none;
    color: var(--main-purple);
}

.guarantees-list .guarantees-item .item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantees-list .guarantees-item .item-wrapper .block-icon {
    font-size: 22px;
    margin-bottom: 16px;
}

.guarantees-list .guarantees-item .item-wrapper .icon-block i {
    font-size: 72px;
}

.guarantees-list .guarantees-item .item-wrapper .info-block {
    display: flex;
    flex-direction: column;
}

.guarantees-list .guarantees-item .item-wrapper .info-block .f2 {
    color: #222;
}

.guarantees-list .guarantees-item:hover {
    color: var(--target-default);                     /* синий цвет текста */
}

.guarantees-list .guarantees-item:hover svg,
.guarantees-list .guarantees-item:hover i {
    stroke: var(--target-default);    /* для SVG-иконок с обводкой */
    fill: var(--target-default);     /* для иконок-шрифтов или заливки */
    color: var(--target-default);    /* для font icon */
}





/* faq pages */
.question {
  display: inline-block;
}

details summary {
  color: var(--main-text, rgb(240, 13, 13));
  text-decoration: none;
  background: #e3e8f0;
  padding: 10px 16px;
  margin: 0 0 10px 0;
  font-weight: 500;
  font-size: 16px;
  border-radius: var(--br-dm, 8px);
  transition: color 0.18s;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

details summary:hover {
  color: var(--target-default);
}

.shadow[open] summary {
  color: var(--target-default);
  background: #e3e8f0;
}

.details-content {
  padding: 0 25px 15px;
  font-size: 16px;
}

/* news edit */
legend {
  padding: 0px;
  font-weight: 600;
}

.span4 {
  padding: 10px 0;
}

.span9 {
  display: block;
  width:-webkit-fill-available;
  border: 0;
  outline: 0;
  box-shadow: inset 0px 0px 4px 0px #767676;
  padding: 10px;
  margin: 5px 0 15px 0;
}

.control-label {
  display: block;
  margin: 10px 0 0 0;
}

@media (max-width: 480px) {
  .guarantees-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 10px;
    margin: 0;
    list-style: none;
  }

  .guarantees-item {
    background: none;
    border: none;
    box-shadow: none;
    padding: 8px;
    text-align: center;
  }

  .item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .block-icon i {
    font-size: 20px;
  }

  .info-block .f1 {
    font-size: 13px;
    line-height: 1.3;
    word-break: break-word;
  }
}



