* {
    padding: 0;
    margin: 0;
    font-family: cabin, Arial, sans-serif;
}

/* media query */

@media screen and (min-width: 800px) {
    .footer .auto-width {
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (min-width: 600px) {
    html {
        font-size: 16px;
    }

    .auto-width {
        width: 80%;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 599px) {
    html {
        font-size: 14px;
    }

    .auto-width {
        width: 100%;
        box-sizing: border-box;
    }
}


body {
    color: #383838;
    line-height: 24px;
}

.app {
    width: 100%;
    margin: 0 auto;
}

/* header */
.header {
    width: 100%;
    height: 6rem;
    position: fixed;
    box-shadow: 0 4px 40px rgba(0, 0, 0, .08);
    z-index: 2;
}

.header .auto-width {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.lpms-logo {
    padding: 10px 15px;
    text-align: left;
}

.hdb-logo {
    padding: 20px;
    text-align: right;
    opacity: 0.6;
}

.header img {
    height: 100%;
    width: auto;
}

/* article */

.article-title {
    width: 100%;
    font-size: 1.8rem;
    padding: 7.5rem 1.15px 1.5rem;
    font-weight: 600;
    text-align: center;
    background: #EDF0F2;
    box-sizing: border-box;
}

.divider {
    width: calc(100% - 36px);
    height: 0;
    margin: 0 auto;
    border-bottom: 2px solid #838383;
}

.article-body {
    padding: 18px;
    font-size: 1rem;
    box-sizing: border-box;
}

.update-date {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
}

.introduction {
    font-style: italic;
    font-size: 1rem;
}

.table-of-content {
    margin: 10px 0;
    font-size: 1.2rem;
}

.article-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.link-text a {
    color: #1981d1;
    text-decoration: underline;
}

.table-of-content .link-text {
    margin: 5px 0;
}

.section {
    min-height: 750px;
}

.section>p {
    margin: 10px 0;
    line-height: 1.6;
}

.section>.article-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 1.5rem 0 10px;
    padding-top: 6rem;
    margin-top: -4.5rem;
}

.list-dot {
    list-style-type: none;
    margin-left: 15px;
    text-decoration: underline;
}

.list-dot li {
    position: relative;
}

.list-dot li::before {
    content: "";
    left: -16px;
    top: 10px;
    width: 6px;
    height: 6px;
    position: absolute;
    display: block;
    background-color: #383838;
    border-radius: 50%;
}

.list-lower-latin {
    list-style-type: lower-latin;
    margin-left: 15px;
}

.list-none {
    list-style: none;
}

.list-none > li {
    margin: 10px 0 10px 1.5rem;
}

.list-number {
    margin-right: 10px;
}

.highlight {
    background-color: #ccd9db;
    padding: 10px;
    border-radius: 8px;
    text-align: justify;
    color: #212121;
}

.highlight-text::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 18px;
    background: url("./imgs/info.svg") no-repeat;
    background-size: auto 100%;
    vertical-align: text-bottom;
}

.footer {
    width: 100%;
    box-sizing: border-box;
    padding: 2rem 0;
    text-align: right;
    color: #ededed;
    background-color: #656565;
}

.copyright-statement {
    padding-right: 15px;
    font-size: 1rem;
    font-weight: 600;
}