/* ═══════════════════════════════════════════════════════════════
   conference-footer-match-home.css
   Makes the conference page footer match the main home footer:
   – Wider panel, more padding, larger logo, same bottom bar style
   ═══════════════════════════════════════════════════════════════ */

/* 1. Outer wrapper – match home footer spacing */
.conference-event-footer {
  margin-top: 1.75rem !important;
  padding-top: 2.35rem !important;
}

/* 2. White card – match home footer-panel sizing & border-radius */
.conference-event-footer__card {
  grid-template-columns: minmax(270px, 1.08fr) minmax(170px, 0.72fr) minmax(370px, 1.08fr) !important;
  gap: 4.1rem !important;
  padding: 4.3rem 4.25rem 3.2rem 5rem !important;
  border-radius: 0 28px 0 0 !important;
  box-shadow: 4px -4px 32px #060e261a !important;
  margin-left: 0 !important;
  margin-right: 3.55rem !important;
}

/* 3. Logo – match home footer logo size (292px) */
.conference-event-footer__logo {
  width: 292px !important;
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 1.5rem !important;
}

/* 4. Bottom bar – match home footer bottom bar (solid navy, same height) */
.conference-event-footer__bottom {
  min-height: 88px !important;
  padding: 1.85rem 5rem 1rem !important;
  background: #163d77 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 0.75rem 1rem !important;
}

/* 5. Description / body text – match home footer style */
.conference-event-footer__card p,
.conference-event-footer__desc {
  font-size: 0.98rem !important;
  line-height: 1.58 !important;
  color: #1f232a !important;
  max-width: 35ch !important;
}

/* 6. Section titles – match home footer-title */
.conference-event-footer__title,
.conference-event-footer__card h3,
.conference-event-footer__card h4 {
  font-size: 1.03rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: 0 !important;
  margin-bottom: 1.55rem !important;
  color: #101010 !important;
}

/* 7. Contact icons – match home footer circular style */
.conference-event-footer__contact-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 999px !important;
  background: #163d77 !important;
}

/* 8. Social icons – match home footer size */
.conference-event-footer__social {
  width: 41px !important;
  height: 41px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(17, 24, 39, 0.24) !important;
  background: #fff !important;
}

/* ── Responsive: tablet ─────────────────────────────────────── */
@media (max-width: 1080px) {
  .conference-event-footer__card {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2rem !important;
    padding: 3rem 2rem 2.7rem !important;
    border-radius: 0 20px 0 0 !important;
    margin-right: 1rem !important;
  }
  .conference-event-footer__logo {
    width: 248px !important;
  }
  .conference-event-footer__bottom {
    padding: 2.6rem 2rem 1rem !important;
  }
}

/* ── Responsive: mobile ─────────────────────────────────────── */
@media (max-width: 760px) {
  .conference-event-footer__card {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
    padding: 1.5rem 1rem 2rem !important;
    border-radius: 0 14px 0 0 !important;
    margin-right: 0 !important;
  }
  .conference-event-footer__logo {
    width: min(220px, 72vw) !important;
    margin-bottom: 1rem !important;
  }
  .conference-event-footer__bottom {
    min-height: auto !important;
    padding: 1rem !important;
    justify-content: center !important;
    text-align: center !important;
  }
}
