
.upcoming-guests {
    padding: 60px 20px;
    text-align: center;
  }

  .upcoming-guests h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
  }

  .guest-row {
    display: flex;
    align-items: center;
    max-width: 900px;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto 40px; /* ← centers it horizontally and adds bottom space */
    flex-wrap: wrap;
    text-align: left;
  }


  .guest-row.reverse {
    flex-direction: row-reverse;
  }

  .guest-image img {
    width: 380px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  }

  .guest-details {
    flex: 1;
    max-width: 600px;
  }

  .guest-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
  }

  .guest-date {
    font-weight: 600;
    color: #777;
    margin-top: 10px;
  }

  .guest-divider {
    border: none;
    height: 3px;
    background: #0D249E !important;
    width: 77%;
    margin: 40px auto;
    border-radius: 50px;
  }
/* C. Empty-state card (with direct colors) */
.onair-empty{
    max-width:900px;
    margin:0 auto 40px;
    border:1px solid #e8ecf7;       /* light border */
    border-radius:16px;
    background:#ffffff;              /* white card */
    box-shadow:0 6px 18px rgba(0,0,0,.06);
    padding:24px 22px;
    text-align:center;
}

.onair-empty h3{
    margin:0 0 6px;
    font-size:20px;
    color:#111111;                   /* dark ink */
    font-weight:700;
}

.onair-empty p{
    margin:0 0 14px;
    color:#6b7280;                   /* muted gray */
    font-size:15px;
}

.onair-link{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    color:#0D249E;                   /* your brand blue */
    text-decoration:none;
    border-bottom:1px solid rgba(13,36,158,.25);
}

.onair-link:hover{
    opacity:.9;
}
