/* ===============================
   RADIO SECTION - REVISED ALIGNMENT
=================================*/

.radio-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 80px 0;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.radio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 0;
padding-bottom: 50px;
padding-left: 20px;
padding-right: 20px;
}

/* ----- TOP GRID (Text + Studio Image) ----- */
.radio-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: start;
}

.radio-text-top {
  padding-top: 20px;
}

.radio-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.radio-text-top p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.radio-img-large {
  width: 100%;
}

.radio-img-large img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ----- BOTTOM GRID (Collage) ----- */
.radio-bottom-grid {
  display: grid;
  grid-template-columns: 280px 1fr 320px;
  gap: 30px;
  align-items: end;
}

/* LEFT COLUMN - Entrance Image */
.radio-col-1 {
  margin-bottom: 0;
  padding-bottom: 150px;
}

.radio-col-1 img {
  width: 100%;
  height: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  /* object-fit: cover; */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* MIDDLE COLUMN - Stacked Images */
.radio-col-2 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.script-box {
  width: 100%;
}

.img-script {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.img-team {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* RIGHT COLUMN - Reflection Text */
.radio-col-3 {
  display: flex;
  align-items: flex-end;
  padding-bottom: 90px;
}

.reflection-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  font-style: italic;
  border-left: 4px solid #4CAF50;
  padding-left: 25px;
  background: #f9f9f9;
  padding: 20px 20px 20px 25px;
  border-radius: 0 8px 8px 0;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .radio-bottom-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .radio-col-3 {
    grid-column: 1 / -1;
    padding-bottom: 0;
  }
  
  .reflection-text {
    border-left: none;
    border-top: 4px solid #4CAF50;
    padding-left: 20px;
    padding-top: 20px;
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 768px) {
  .radio-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .radio-text-top {
    padding-top: 0;
  }
  
  .radio-bottom-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .radio-col-3 {
    grid-column: auto;
  }
  
  .reflection-text {
    border-left: none;
    border-top: 4px solid #4CAF50;
    padding-left: 20px;
    padding-top: 20px;
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 600px) {
  .radio-container {
    padding: 0 20px;
  }
  
  .radio-title {
    font-size: 26px;
  }
  
  .radio-text-top p,
  .reflection-text {
    font-size: 15px;
  }
}


/* ===============================
   BUTTON ROW SECTION
=================================*/

.vet-button-row {
  width: 100%;
  margin: 50px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap; /* makes it responsive */
}

/* Individual Button */
.vet-btn {
  display: inline-block;
  min-width: 260px;          /* Equal width buttons */
  padding: 18px 40px;
  background-color: #2f2f2f; /* Dark background */
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Hover Effect */
.vet-btn:hover {
  background-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Active Click Effect */
.vet-btn:active {
  transform: translateY(0px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ===============================
   RESPONSIVE DESIGN
=================================*/

@media (max-width: 992px) {
  .vet-button-row {
    gap: 25px;
  }

  .vet-btn {
    min-width: 220px;
    padding: 16px 30px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .vet-button-row {
    flex-direction: column;
    gap: 20px;
  }

  .vet-btn {
    width: 100%;
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .vet-btn {
    padding: 14px 20px;
    font-size: 15px;
  }
}