/* =========================================================
   Erasmus MC Theme Overrides for Open Day Website
   ---------------------------------------------------------
   Sections:
   1) Color Variables
   2) Base Elements (links, headings, buttons, borders)
   3) Hero Tagline
   4) Testimonial Styles
   5) Sponsor Logos Bar
   6) Agenda Layout (responsive widths)
   ========================================================= */

/* 1) Color Variables */
:root{
  --emc-blue:#003D7C;          /* Deep Erasmus MC blue (approx) */
  --emc-blue-mid:#1E5AA8;      /* Mid blue */
  --emc-accent:#00AEEF;        /* Accent cyan/blue */
  --emc-light:#E6F4FB;         /* Light background / divider */
}

/* 2) Base Elements (links, headings, buttons, borders) */
a { color: var(--emc-accent); }
a:hover { text-decoration: underline; }

.button{
  background: var(--emc-blue) !important;
  border-color: var(--emc-blue) !important;
  color: #fff !important;
}
.button:hover{
  background: var(--emc-accent) !important;
  border-color: var(--emc-accent) !important;
  color: #00243F !important;
}

h1, h2, .section-title { color: var(--emc-blue); }
.section-subtitle { color: var(--emc-blue-mid); }
.page-border > div { background: var(--emc-blue) !important; }

/* 3) Hero Tagline */
.hero-tagline{
  margin-top: .5rem;
  font-size: 1.25rem;
  color: var(--emc-blue-mid);
}

/* 4) Testimonial Styles */
blockquote.bigtest q { color: var(--emc-blue-mid); }
blockquote.bigtest footer { color: var(--emc-blue); }

/* 5) Sponsor Logos Bar */
.sponsor-logos{
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 8px;
  border-top: 2px solid var(--emc-light);
}
.sponsor-logos img{
  height: 46px;
  max-width: 200px;
  object-fit: contain;
  filter: none;
}
.sponsor-logos .label{
  font-weight: 600;
  color: var(--emc-blue-mid);
  margin-right: 8px;
}

/* 6) Agenda Layout (responsive widths) */
@media (min-width: 768px){
  .row.no-padding-bottom.clearfix{
    display: flex;
    flex-wrap: wrap;
  }
  .left-col{ flex: 0 0 27%; max-width: 27%; }
  .agenda-col{ flex: 0 0 46%; max-width: 46%; }
  .right-col{ flex: 0 0 27%; max-width: 27%; }
}
