.about {
  margin-top: 56px;
  height: 50vh;
}

.about-inner {
  width: 85%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

.about-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 53px;
  height: auto;
  padding: 0;
}

.about-media {
  flex: 1 1 0;
  padding: 0;
}

.about-media img {
  width: 100%;
  height: 276px;
  border-radius: 20px;
  object-fit: cover;
}

.about-content {
  flex: 1 1 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-title {
  color: #2d2d2d;
  text-align: right;
  font-family: "Yekan Bakh";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.about-desc {
  color: #a4a4a4;
  text-align: right;
  font-family: "Yekan Bakh";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-top: 24px;
}

.about-pill {
  border-radius: 20px;
  background: linear-gradient(90deg, #fff -9.17%, #eefff0 100%);
  display: flex;
  width: 146px;
  height: 34px;
  padding: 5px 15px;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.about-pill-icon svg {
  width: 9px;
  height: 9px;
  filter: blur(1.15px);
}

.about-pill-text {
  color: #a09797;
  text-align: right;
  font-family: "Yekan Bakh";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 0;
}

.about-card {
  display: flex;
  height: 303px;
  padding: 16px 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #ededed;
  background: #fff;
}

.about-card-title {
  color: #585858;
  text-align: right;
  font-family: "Yekan Bakh";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.about-card-desc {
  color: #a4a4a4;
  text-align: right;
  font-family: "Yekan Bakh";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

.about-card-image {
  margin-top: auto;
  max-width: 100%;
  height: auto;
  align-self: center;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about {
    margin-top: 200px;
  }
  .about-row {
    gap: 36px;
  }
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-media img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .about {
    margin-top: 250px;
  }
  .about-row {
    gap: 24px;
  }
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-media img {
    height: 240px;
  }
}
@media (max-width: 480px) {
  .about {
    margin-top: 400px;
  }
  .about-row {
    flex-direction: column;
    gap: 20px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-card {
    height: auto;
  }
  .about-title {
    font-size: 22px;
  }
  .about-desc {
    font-size: 15px;
    line-height: 23px;
  }
  .about-media img {
    height: 200px;
  }
  .about-card-image {
    max-width: 65%;
  }
}
