
.hammer-features {
  width: 100%;
  padding: 50px 20px;
  box-sizing: border-box;
  background: #fff;
}

.hammer-features__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hammer-features__image {
  flex: 0 0 48%;
  text-align: center;
}

.hammer-features__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
}

.hammer-features__content {
  flex: 1;
}

.hammer-features__content h2 {
  margin: 0 0 30px;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
}

.hammer-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.hammer-feature:last-child {
  margin-bottom: 0;
}

.hammer-feature__number {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e60012;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.hammer-feature p {
  margin: 0;
  padding-top: 5px;
  color: #222;
  font-size: 16px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {

  .hammer-features {
    padding: 35px 15px;
  }

  .hammer-features__inner {
    flex-direction: column;
    gap: 30px;
  }

  .hammer-features__image {
    width: 100%;
    flex-basis: auto;
  }

  .hammer-features__image img {
    max-width: 100%;
  }

  .hammer-features__content {
    width: 100%;
  }

  .hammer-features__content h2 {
    margin-bottom: 24px;
    font-size: 26px;
  }

  .hammer-feature {
    gap: 12px;
    margin-bottom: 20px;
  }

  .hammer-feature__number {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .hammer-feature p {
    padding-top: 3px;
    font-size: 15px;
    line-height: 1.6;
  }
}
