.our-recent-work-section {
  padding-top: 60px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, #fff6fe 0%, #f4feff 100%);
}

.our-recent-work-img-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-top: 30px;
}

.our-recent-work-section img {
  /*width: 100%;*/
  height: auto;
  object-fit: cover;
}

.our-recent-work-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.our-recent-work-img:hover {
  transform: scale(1.03);
}

.divider {
  display: flex;
  align-items: center;
  gap: 10px;
}

.long-dash {
  width: 53px;
  height: 0px;
  opacity: 1;
  border-width: 4px;
  border-radius: 4px;
  border: 1.5px solid var(--primary-color);
}

.small-dash {
  width: 11px;
  height: 0px;
  opacity: 1;
  border-width: 4px;
  border-radius: 4px;

  border: 1.5px solid #6c8b8d;
}

.testimonial-card {
  background-color: #fdf5fc;
  padding: 30px 40px;
  border-radius: 4px;
  margin: 0 auto;
  color: #333;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 30px;
}

.label {
  color: #6a3563;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.value {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.text-content {
  line-height: 1.4;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tags-container {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.tag {
  background-color: #6a3563;
  color: white;
  padding: 6px 15px;
  border-radius: 4px;
  font-size: 13px;
}

.cta-btn {
  background-color: #6c8b8d;
  color: white;
  border: none;
  padding: 8px 12px 8px 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.2s;
}

.cta-btn:hover {
  opacity: 0.9;
}

.icon-circle {
  background-color: white;
  color: #6c8b8d;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
