.smt-section {
  padding: 56px 0;
}

.smt-row {
  display: flex;
  align-items: center;
  gap: 60px;
}
.smt-row--reverse {
  flex-direction: row-reverse;
}
.smt-row--reverse .smt-image-wrapper {
  border-radius: 30px 0 0 0;
}

.smt-col {
  flex: 1;
  width: 50%;
}
.smt-col--media {
  flex: 1.3;
  max-width: 720px;
  aspect-ratio: 72/48;
}

.smt-image-wrapper {
  height: 100%;
  line-height: 0;
  border-radius: 0 30px 0 0;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.smt-image-wrapper .smt-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.smt-prefix {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #939ea1;
  margin-bottom: 13px;
}

.smt-title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 35px;
  line-height: 1.2;
  color: #313f42;
  margin-bottom: 20px;
}

.smt-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 20px;
}
.smt-text p {
  margin-bottom: 20px;
}
.smt-text p:last-child {
  margin-bottom: 0;
}

.smt-btn {
  background: #4b32a2;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 50px 15px 15px;
  border-radius: 0 25px 0 0;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 18px;
  transition: all 0.3s ease;
}
.smt-btn:hover {
  background: #3a2680;
  color: #ffffff;
  transform: translateY(-2px);
}

.smt-footer-link {
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #616264;
}
.smt-footer-link .smt-footer-text {
  margin-right: 5px;
}
.smt-footer-link .smt-link {
  color: #313f42;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #313f42;
  transition: opacity 0.3s ease;
}
.smt-footer-link .smt-link:hover {
  opacity: 0.7;
}
@media (max-width: 1023px) {
  .smt-section {
    padding: 50px 0;
  }
  .smt-row {
    flex-direction: column;
  }
  .smt-row--reverse {
    flex-direction: column;
  }
  .smt-col {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .smt-title {
    font-size: 32px;
  }
}