.features-w-screenshot {
  padding: 3rem 0;
  background: #fff; 
}

.features-w-screenshot .header-content {
  margin: 0 0 2rem;
}
.features-w-screenshot .header-content {
  color: #333;
  -webkit-font-smoothing: antialiased;
}
.features-w-screenshot .solutions-module {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.features-w-screenshot .solutions-module .solution-item {
  width: calc(33% - 1.5rem);
  margin: 0 0.5rem 1rem;
  max-width: none;
}

.features-w-screenshot .solutions-module .solution-item.solution-item--card {
  background: #E9F1FC;
  border-radius: 8px;
  padding: 1rem;
}

.features-w-screenshot .solutions-module .solution-item.solution-item--card .solution-item-title {
  font-size: 18px;
}
@supports (gap: 2rem) {
  .features-w-screenshot .solutions-module {
    gap: 2rem;
    justify-content: center;
  }
  
  .features-w-screenshot .solutions-module .solution-item {
    margin: 0 !important; 
    flex-basis: calc(33% - 1.5rem);
    flex-grow: 1;
  }
}



@media (min-width: 1060px) {
  @supports (gap: 2rem) {
    .features-w-screenshot .solutions-module .solution-item {
      max-width: calc(33% - 1.5rem);
    }
  }
}

@media (max-width: 1060px) and (min-width: 768px) {
  .features-w-screenshot .solutions-module .solution-item {
    width: calc(50% - 1rem);
  }
  
  @supports (gap: 2rem) {
    .features-w-screenshot .solutions-module .solution-item {
      flex-basis: calc(50% - 1rem);
      max-width: calc(50% - 1rem);
    }
  }
}

@media (max-width: 1060px) {
  .fws__screenshot__detail__container {
    display: none;
  }
}

@media (min-width: 1060px) {
  .fws__screenshot__container {
    position: relative;
  }
  
  .fws__screenshot__detail__container {
    position: absolute; 
  }
  
  .fws__screenshot__detail {
    position: relative;
  }
  
  .fws__screenshot__detail::after {
    content: '\f055';
    font-family: 'FontAwesome';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    color: #2876E3;
    font-size: 32px;
    line-height: 0.9;
    border: 3px solid #fff;
  }
  .fws__screenshot__detail:hover {
    cursor: pointer;
  }
  .fws__screenshot__detail:hover::after,
  .fws__screenshot__detail:focus-within::after {
    content: '\f056';
    color: #FFB06E;
  }
  .fws__screenshot__detail::after:hover {
    cursor: pointer;
  }
  .fws__screenshot__detail__content {
    max-width: 250px;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    transition: 0.2s ease-out;
    opacity: 0;
    visibility: hidden;
  }
  
  .fws__screenshot__detail:hover .fws__screenshot__detail__content,
  .fws__screenshot__detail:focus-within .fws__screenshot__detail__content {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  .features-w-screenshot { padding: 2rem 0 !important; }
  .features-w-screenshot .solution-item .solution-item-image {
    margin-bottom: 1rem !important;
  }
  .features-w-screenshot .solutions-module .solution-item {
    width: 100%;
    padding: 0 0 1rem;
  }
  
  @supports (gap: 2rem) {
    .features-w-screenshot .solutions-module .solution-item {
      flex-basis: 100%;
    }
  }
}
.features-w-screenshot .solution-item .solution-item-image {
  width: 65px;
  height: 65px;
  margin: 0 auto 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features-w-screenshot .solution-item .solution-item-image img {
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.features-w-screenshot .solution-item .solution-item-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  margin: 0 0 15px;
  color: #333;
}
.features-w-screenshot .solution-item .solution-item-title:empty {
  display: none;
}
.features-w-screenshot .solution-item .solution-item-description {
  margin: 0 auto;
  color: #333;
}
.fws__screenshot__image {
    margin: 0 auto;
    display: block;
}
.fws__screenshot__caption {
    text-align: center;
    margin: 3rem 0 2rem;
}