/* coating */
.r_coating {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  grid-gap: 40px 24px;
}

.r_coating .r_item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
  padding: 18px;
}
.r_coating .r_item__image {
  border-radius: 10px;
  height: 206px;
  overflow: hidden;
  margin-bottom: 25px;
}
.r_coating .r_item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.r_coating .r_item__name {
  padding: 0 10px;
  margin-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .r_coating {
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: 24px;
  }
  .r_coating .r_item {
    padding: 13px;
  }
  .r_coating .r_item__image {
    height: 152px;
  }
}
/* specs */
.r_specs {
  font-size: 15px;
  font-weight: 300;
}
.r_specs .r_specs__item {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
}
.r_specs .r_specs__item > * {
  flex: 0 0 48%;
  max-width: 48%;
}
.r_specs .r_specs__item:nth-child(2n) {
  border-radius: 10px;
  background: #f8f8fa;
}
.r_specs .r_specs__item .r_specs__item-value {
  text-align: right;
}
@media (max-width: 575px) {
  .r_specs {
    font-size: 12px;
  }
  .r_specs .r_specs__item {
    padding: 4px 8px;
  }
}
