/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.student-say-section {
  width: 100%;
}

.student-say-div {
  padding: 60px 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* ============================
 LEFT SIDE
============================ */
.student-say-div-left-layout {
  flex: 1 1 420px;
  max-width: 707px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.student-say-div-left-layout-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.student-say-div-left-layout-upper h5 {
  font-size: 36px;
  color: #1c3f94;
  font-family: Merriweather, serif;
  font-weight: 700;
  line-height: 1.1;
}

.student-say-div-left-layout-upper button {
  padding: 12px 20px;
  background: #1c3f94;
  color: #fff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

/* Mini cards */
.student-say-div-left-layout-lower {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: 100%;
  padding-top: 35px;
}

.mini-card {
  background: #fffff9;
  padding: 25px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(180, 195, 247, 0.54);
}

.mini-card img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
}

/* mini text */
.mini-info h6,
.mini-info p {
  font-family: Poppins;
  font-weight: 600;
  line-height: 100%;
  font-size: 16px;
  letter-spacing: 1%;
  text-align: center;
}

.mini-quote {
  font-style: italic;
  color: #555;
}

/* ============================
 RIGHT SIDE - LARGE CARD
============================ */
.student-say-div-right-layout {
  flex: 1 1 420px;
  max-width: 620px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.large-card {
  width: 100%;
  background: #f9f9f6;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(180, 195, 247, 0.54);
}

.large-card img {
  width: 280px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.large-info {
  flex: 1;
}

.large-info h3,
.large-info p {
  font-family: Poppins;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 1%;
  margin-bottom: 8px;
  color: #1c3f94;
}

/* ============================
 💥 RESPONSIVE FIXES
============================ */

@media (min-width: 1700px) {
  .student-say-div {
    padding: 60px 70px;
    display: flex;
  
    justify-content: center;
    gap: 40px;
  }
}

/* 1050px ↓ (2-column → stacked but clean) */
@media (max-width: 1050px) {
  .student-say-div {
    padding: 40px 40px;
    flex-direction: column;
    align-items: center;
  }

  .student-say-div-left-layout,
  .student-say-div-right-layout {
    max-width: 100%;
  }

  .student-say-div-left-layout-lower {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px ↓ (tablet) */
/* @media (max-width: 768px) {
  .student-say-div {
    padding: 30px;
  }

  .student-say-div-left-layout-upper h5 {
    font-size: 28px;
  }

  .student-say-div-left-layout-lower {
    grid-template-columns: 1fr 1fr;
  }

  .large-card {
    flex-direction: column;
    text-align: center;
  }

  .large-card img {
    width: 100%;
  }
} */

/* 600px ↓ (mobile) */
@media (max-width: 1200px) {
  .student-say-div-left-layout-lower {
    grid-template-columns: 1fr;
  }

  .student-say-div {
    padding: 25px;
  }

  .student-say-div-left-layout-upper h5 {
    font-size: 24px;
  }
  .large-card {
    flex-direction: column;
    text-align: center;
  }

  .large-card img {
    width: 100%;
  }
}

/* 420px ↓ (extra small) */
@media (max-width: 420px) {
  .student-say-div {
    padding: 20px;
  }

  .large-card {
    padding: 15px;
  }

  .mini-card {
    padding: 18px;
  }

  .mini-card img {
    width: 70px;
    height: 70px;
  }
}
