@charset "utf-8";
/* CSS Document */



.hardware-long-card{
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  padding: 44px;
  overflow: hidden;
  margin-top:40px;
}

.hardware-long-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--duration-blue);
}
.hardware-long-card:nth-child(even){
    flex-direction: row-reverse;
}

/* Mobile reset */

@media (max-width:980px){

.hardware-long-card:nth-child(even){
    flex-direction: column;
}

}
.hardware-long-card__image{
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hardware-long-card__image img{
  max-width: 60%;
  height: auto;
  display: block;
}

.hardware-long-card__content{
  flex: 1 1 auto;
}

.hardware-long-card__content h3{
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.15;
  color: var(--duration-blue);
  font-weight: 800;
}

.hardware-long-card__content p{
  margin: 0 0 16px;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.hardware-long-card__options{
  font-size: 16px;
}

.hardware-long-card__note{
  font-style: italic;
  color: #666;
}

@media (max-width: 980px){
  .hardware-long-card{
    flex-direction: column;
    gap: 26px;
    padding: 28px 22px;
    text-align: center;
  }

  .hardware-long-card__image{
    flex: none;
    width: 100%;
  }

  .hardware-long-card__image img{
    max-width: 320px;
    margin: 0 auto;
  }

  .hardware-long-card__content h3{
    font-size: 24px;
  }

  .hardware-long-card__content p{
    font-size: 16px;
  }
}


