*, ::after, ::before {
  box-sizing: border-box;
}

html {
  /* ensure that the vertical scroll-bar is always present;
   * otherwise there are jumps of the layout when switching from a
   * very short page to a longer one */
  overflow-y: scroll;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica Neue,Helvetica,Arial,sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #000;
  background: #fff;
  text-align: left;
}

a {
  color: #2e8b57;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

div#content-container {
  max-width: 64em;
  margin: 0 auto;
  padding: 0;
}

div#content {
  width: 100%;
  padding-right: 1.5em;
  padding-left: 1.5em;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width: 750px) {
  div#content {
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
}


/* HEADER */
header {
  padding-top: 2em;
  padding-bottom: 0.5em;
  /* border-bottom: 1px solid #aaa; */
  color: #2e8b57;
}

@media (max-width:785px) {
  header {
    padding-top: 0.5em;
    padding-bottom: 0.75em;
  }
}

@media (max-width:575px) {
  header {
    padding-top: 0.25em;
    padding-bottom: 0.25em;
  }
}

header .title {
  font-size: 32px;
  line-height: 40px;
}

header .sub {
  font-size: 26px;
  line-height: 1;
  margin-top: 0.25em;
}

@media (max-width:785px) {
  header .title {
    font-size:22px;
    line-height:26px;
  }
  header .sub {
    font-size:18px;
  }
}

/* @media (max-width:575.98px) {
  header .sub {
    display:none
  }
} */


header a,
header a:hover {
  color: #000000;
  text-decoration: none;
}

/* GENERAL */
table {
  margin-top: 1.5em;
  border: none;
  border-collapse: collapse;
}

table td {
  vertical-align: top;
  padding: 0.2em;
}

@media all and (max-width: 785px) {
  table {
    border-spacing: 0 1em;
    border-collapse: separate;
  }

  table td {
    padding: 0.1em;
  }
}

.h1, h1 {
  font-size: 1.35em;
  font-weight: 500;
}

.h2, h2 {
  font-size: 1.1em;
}


.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 1em;
  margin-bottom: 0.75em;
  line-height: 1.2;
  color: #58595b;
  color: #2e8b57;
}

/*h1::before, h2::before {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-right: 0.4em;
  background-color: #e03127;*/
  /*position: relative;
  top: 0px;*/
/*}*/

footer {
  padding-top: 2em;
  font-size: 13px;
  text-align: center;
  color: #aaa;
  padding-bottom: 4em;
}

footer a {
  background: none;
  color: #aaa;
  text-decoration: none;
}

.highlight {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding: 0.25em 0.75em;
  border: 1px solid #888888;
  background: #eeeeee;
}

strong {
  font-weight: 500;
}

/* ── Conference table ── */
.conf-table {
  width: 100%;
  margin-top: 1em;
  border-collapse: collapse;
}

.conf-table th,
.conf-table td {
  padding: 0.45em 0.75em;
  text-align: left;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
}

.conf-table thead th {
  font-weight: 500;
  color: #58595b;
  border-bottom: 2px solid #aaa;
  white-space: nowrap;
}

.conf-table tbody tr:nth-child(even) {
  background: #f9f9f9;
}

/* Medium screens: horizontal scroll if the table overflows */
@media (max-width: 750px) and (min-width: 576px) {
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Mobile: card with title leading, place & date below in small font */
@media (max-width: 575px) {
  .conf-table thead { display: none; }

  .conf-table tbody tr {
    display: block;
    margin-bottom: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5em 0.75em;
  }

  /* No label prefix on any cell */
  .conf-table td::before { display: none; }

  /* Title: full-width block, normal size */
  .conf-table td[data-label="Title"] {
    display: block;
    padding: 0 0 0.2em 0;
    border-bottom: none;
  }

  /* Location and Dates: inline, smaller, muted. flow together on one line */
  .conf-table td[data-label="Location"],
  .conf-table td[data-label="Dates"] {
    display: inline;
    font-size: 0.82em;
    color: #58595b;
    padding: 0;
    border-bottom: none;
  }

  /* Separator between location and date */
  .conf-table td[data-label="Location"]::after {
    content: "\00a0\00B7\00a0";
  }

  /* Participants: hidden on mobile */
  .conf-table td[data-label="Participants"] {
    display: none;
  }
}