.reviews-section {
  padding: 40px 16px;
}

.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-header {
  text-align: center;
  margin-bottom: 24px;
}

.reviews-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #0b4ea2;
  background: rgba(11, 78, 162, 0.08);
  border: 1px solid rgba(11, 78, 162, 0.12);
  border-radius: 999px;
}

.reviews-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
  color: #0b2e59;
}

.reviews-subtitle {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #3c5573;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid #d9e8fb;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(12, 55, 112, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: #b9d2f5;
  box-shadow: 0 16px 36px rgba(12, 55, 112, 0.12);
}

.review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.review-author {
  margin: 0 0 6px;
  font-size: 19px;
  line-height: 1.3;
  color: #0b2e59;
}

.review-event {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #5c7190;
}

.review-rating {
  flex-shrink: 0;
  text-align: right;
}

.stars {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
  color: #f6b500;
}

.review-text {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #243b5a;
}

@media (max-width: 991px) {
  .reviews-title {
    font-size: 26px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .reviews-section {
    padding: 32px 14px;
  }

  .review-card {
    padding: 16px;
    border-radius: 14px;
  }

  .review-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .review-rating {
    text-align: left;
  }

  .reviews-title {
    font-size: 24px;
  }

  .reviews-subtitle {
    font-size: 15px;
  }

  .review-author {
    font-size: 18px;
  }

  .review-text {
    font-size: 14px;
    line-height: 1.65;
  }
}