:root {
    --primary-color: #006792;
    --primary-color-80: #00679280;
}

body, html {
    height: 100%;
}

body {
    font-family: Lato, sans-serif;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

a {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

header .number {
    color: var(--primary-color);
    font-weight: bold;
}

header .title {
    font-size: 20px;
    line-height: normal;
    background: #000;
    color: #bcbcbc;
    padding: 3px 15px;
    margin: 5px 0;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
}

header .title span {
    display: inline-block;
    margin-right: 10px;
}

header .title span::first-letter {
    color: #fff;
}

header .date {
    font-weight: 300;
    font-size: 16px;
}

header .container {
    position: relative;
}

header .logo img {
    width: 120px;
    height: auto;
}

header button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

#main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
}

#main-menu a {
    text-decoration: none;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;   
}

#main-menu a i {
    transition: transform 0.3s;
}

#main-menu a[aria-expanded="true"] i {
    transform: scaleY(-1);
}

#main-menu a:hover, #main-menu a:focus {
    background-color: var(--primary-color);
    color: white;
}

#main-menu a.active {
    background-color: var(--primary-color-80);
    color: white;
}


#main-menu ul ul {
    border-left: 1px solid var(--primary-color-80);
    margin-left: 15px;
    text-transform: none;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    flex: 0;
}

footer a {
    color: white;
}

article {
    font-size: 16px;
}

article h1 {
    font-size: 32px;
    line-height: normal;
}

#top-carousel {
    height: 400px;
    overflow: hidden;
}

#top-carousel img {
    object-position: center;
    height: 100%;
    object-fit: cover;
}

article iframe[src*="youtube"] {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

article a {
    text-decoration: none;
}

article a:hover, article a:focus {
    text-decoration: underline;
}

article p:empty {
    height: 10px;
}

article h2 {
    font-size: 20px;
    line-height: 1.1;
    background-color: #000;
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
}

article h3 {
    font-size: 18px;
    line-height: 1.1;
    color: var(--primary-color);
    font-weight: bold;
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
}

article .block-table table {
    width: 100%;
    border-collapse: collapse;
}

article .block-table table th {
    background-color: #eee;
}

article .block-table table th, article .block-table table td {
    border-bottom: 1px solid #f0f0f0;
    padding: 5px 8px;
}