/* === Base === */
@import url('https://fonts.googleapis.com/css?family=Roboto');

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #101214;
    color: #7A7C80;
}

h2, .white {
    color: #fff;
}

a {
    color: #4ea1d3;
    text-decoration: none;
}

/* === Layout === */
.container {
    display: flex;
    justify-content: center;
    padding: 5vh 2rem;
}

.section-2 {
    max-width: 800px;
    width: 100%;
}

.section-2 h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.section-2 p {
    font-size: 1.1rem;
    margin: 0 0 10px 0;
}

.section-2 a {
    display: block;
    padding: 5px 0;
    font-size: 1.2rem;
    width: fit-content;
}

/* === Jam Entries === */
.jam-entries p {
    margin-bottom: 6px;
    line-height: 1.5;
    white-space: normal;
}

/* make each entry forced onto one line */
.jam-entry {
  white-space: nowrap;
  margin-bottom: 6px;
}

/* override any ‘display: block’ you set earlier */
.jam-entry a {
  display: inline;
  padding: 0;       /* remove extra top/bottom padding */
  width: auto;      /* reset fit-content */
}


