/**
 * Article typography, tables and in-post FAQ.
 * Loaded after main.css / media.css, scoped to .singleBlog_content so nothing
 * here can leak into the page builder layouts.
 */

/* ---------- typography ---------------------------------------------- */

.singleBlog_content p {
    margin: 0 0 20px;
}

.singleBlog_content h3 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0.04em;
    color: var(--light-green);
    margin: 34px 0 14px;
}

.singleBlog_content strong {
    font-weight: 600;
    color: #fff;
}

.singleBlog_content a {
    color: var(--light-green);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: var(--transition);
}

.singleBlog_content a:hover {
    opacity: 0.75;
}

.singleBlog_content ul,
.singleBlog_content ol {
    margin: 0 0 24px;
    padding-left: 0;
    list-style: none;
}

.singleBlog_content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
}

.singleBlog_content ul li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--light-green);
}

.singleBlog_content ol {
    counter-reset: lotta-ol;
}

.singleBlog_content ol li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    counter-increment: lotta-ol;
}

.singleBlog_content ol li::before {
    content: counter(lotta-ol);
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--light-green);
    font-weight: 500;
}

/* ---------- tables --------------------------------------------------- */

.article-table {
    margin: 34px 0;
    border: 1px solid rgba(206, 241, 123, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.article-table table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 150%;
}

.article-table th,
.article-table td {
    padding: 16px 24px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.article-table tr:last-child th,
.article-table tr:last-child td {
    border-bottom: 0;
}

/* column headers */
.article-table thead th {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--light-green);
    background: rgba(206, 241, 123, 0.06);
    border-bottom: 1px solid rgba(206, 241, 123, 0.2);
    white-space: nowrap;
}

/* row labels */
.article-table tbody th[scope="row"] {
    font-weight: 500;
    color: var(--light-green);
    width: 34%;
}

.article-table td {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
}

.article-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.article-table strong {
    color: #fff;
    font-weight: 500;
}

/* ---------- embedded map --------------------------------------------- */

.article-map {
    margin: 34px 0;
    border: 1px solid rgba(206, 241, 123, 0.18);
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.article-map iframe {
    display: block;
    width: 100%;
    height: 380px;
    border: 0;
}

@media (max-width: 767px) {
    .article-map iframe {
        height: 280px;
    }
}

/* ---------- FAQ inside an article ------------------------------------ */

.singleBlog_content .faq {
    padding: 20px 0 0;
}

.singleBlog_content .faq_title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 32px;
}

.singleBlog_content .faq_item-question-title {
    font-size: 17px;
}

.singleBlog_content .faq_item p:last-child {
    margin-bottom: 0;
}

.singleBlog_content .faq_item a {
    color: var(--dark-green);
}

@media (max-width: 767px) {
    .singleBlog_content h3 {
        font-size: 21px;
    }

    .article-table th,
    .article-table td {
        padding: 13px 16px;
    }

    .singleBlog_content .faq_title {
        font-size: 28px;
    }
}
