/*
    Use this stylesheet to modify the layout of your
    conference.
*/

/* ----------- Styles for the conference header ----------- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/*
The wrapper of the whole conference page.
*/
.conf {
  width: 100%;
  border: none;
  margin: auto;
}

/*
Wraps around the upper part of the conference header.
*/
.confTitleBox {
  color: white;
  min-height: 90px;
  border-top: 3px solid #234173;
  border-bottom: 1px solid #0f4c80;
  background: #2b2852;
}

/*
Sets the width of the upper part of the conference header.
Is set to 950px and centered by default.
*/
.confTitle {
  width: 950px;
  margin: 0 auto;
}

/*
The box containing the logo. By the default the logo is placed
on the left of the conference title.
*/
.confLogoBox {
  float: left;
  padding-right: 40px;
}

.confLogo {
  max-width: 250px;
  width: 80%;
}

/*
The style for the title text.
*/
.conference-title-link {
  font-family: "Montserrat", sans-serif;
  font-weight: bolder;
  font-size: 22pt;
  line-height: 1.3em;
  display: flex;
  padding: 5px 0;
  color: #faf5f0;
  align-items: center;
}

/*
Wrapper around the bottom part of the conference header
*/
.confSubTitleBox {
  background: #f1f0f8;
  border-bottom: 1px solid #d5e4f1;
  border-top: 1px solid #d5e4f1;
  padding: 0.5rem 0;
}

/*
The content of the lower part of the header. Is by default
centered and has a fixed width.
*/
.confSubTitleContent {
  width: 950px;
  margin: 0 auto;
  font-size: 11pt;
  color: #24425a;
}

/*
Style for links in the lower part of the header
*/
.confSubTitle a {
  font-size: 11pt;
}

/*
Styles for the date and place information.
*/
.datePlace > .date {
  font-size: 12pt;
  font-weight: bold;
  padding-top: 6px;
}

.datePlace > .place {
  font-size: 11pt;
  padding-top: 1px;
  padding-bottom: 6px;
}

.event-label {
  padding: 0.3em !important;
}

/*
Announcement styles
*/
.simpleTextAnnouncement {
  background: #f5faff url(/images/conf/sprites_blue.png) repeat-x scroll 0 -400px;
  border-top: 1px solid #c2d6e7;
  font-family: Verdana, sans-serif;
  font-weight: bold;
  font-size: 10pt;
  text-align: center;
  color: #0f283d;
  padding: 8px 0;
}

/* ----------- Styles for the main content ----------- */

/*
The wrapper around the menu and the page content.
By default centered with a fix width.
*/
#confSectionsBox {
  width: 950px;
  margin: 0 auto;
  margin-top: 30px;
}

/* ----------- Styles for the menu ----------- */

/* Styles for all menu Items */

/*
Wrapper around the menu
*/
.conf_leftMenu {
  float: left;
  width: 200px;
}

/*
Styles for the menu box
*/
#outer {
  border: 1px solid #ccc;
  background: #f6f6f6;
}

/*
The menu item
*/
#outer li a {
  font-family: verdana, arial, sans-serif;
  font-size: 10pt;
}

/*
The menu item when doing mouseover
*/
#outer li a:hover {
  background: #e0e0e0;
}

/*
A non selected menu item
*/
.menuConfTitle {
  text-align: left;
}

.menuConfTitle a {
  color: #275c86;
  padding: 7px 12px;
}

/*
A selected menu item
*/

.menuConfTitle.selected > a,
.menuConfMiddleCell.selected > a {
  color: #bd891a;
  background: #dadada;
  border-bottom: 1px solid #d0d0d0;
  border-top: 1px solid #d0d0d0;
}

/*
sub menu item
*/
li ul.inner li a {
  padding: 3px 12px 3px 30px;
  background: transparent url(/images/conf/left_menu_bullet.png) scroll no-repeat 15px center;
}

/*
Support box
*/

.support_box {
  background: #f6f6f6;
  border: 1px solid #ccc;
}

.support_box > h3 {
  color: #f3f3f3;
  background: #2b2852;
}

/* ----------- Styles for the page content ----------- */

/*
Wrapper around the content
*/
.confBodyBox {
  margin-left: 230px;
}

/* Some needed classes */
.supportedBy-Items
{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accomodationOpts > li {
  margin: 9px 0;
  line-height: 180%;
}

/* Container for all speaker cards */
.speakers-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px; /* Negative margin to offset the padding in cards */
}

/* Individual speaker card */
.speaker-card {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

/* Responsive breakpoints that match your site's width (950px) */
@media (min-width: 640px) {
    .speaker-card {
        width: 50%;
    }
}

@media (min-width: 950px) {
    .speaker-card {
        width: 33.33%;
    }
}

/* Card inner content with border and shadow */
.speaker-card-inner {
    background: #fff;
    border: 1px solid #d5e4f1;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speaker-card-inner:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Speaker image style */
.speaker-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Speaker info container */
.speaker-info {
    padding: 15px;
}

/* Speaker name style - matching your site's blue color scheme */
.speaker-name {
    color: #275c86;
    font-family: "Montserrat", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
}

.speaker-name:hover {
    text-decoration: underline;
}

/* Speaker affiliation */
.speaker-affiliation {
    font-size: 0.85rem;
    color: #24425a;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Talk title - keeping your original styling */
.speaker-talk {
    color: #ba372a;
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Intro paragraph style */
p.note {
    margin-bottom: 25px;
    font-style: italic;
    color: #555;
}