/* Policy CSS file */
/* ------------------------------------------------- */

/* Content Section */
/* ------------------------------------------------- */

section.content {
    padding: var(--space-11) 0;
    position: relative;
}

section.content .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* WYSIWYG Element Styles */
/* ------------------------------------------------- */

.content-text h2 {
    font-size: clamp(28px, 5.6vw, 56px);
    line-height: 1.2;
    font-weight: 300;
    font-family: "Newsreader", serif;
    color: var(--blue-700);
}

.content-text h3 {
    font-size: clamp(24px, 4vw, 40px);
    line-height: 1.2;
    font-weight: 300;
    font-family: "Newsreader", serif;
    color: var(--blue-700);
}

.content-text h4 {
    font-size: clamp(22px, 2.8vw, 28px);
    line-height: 1.2;
    font-weight: 500;
    color: var(--blue-700);
}

.content-text h5 {
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.2;
    font-weight: 500;
    color: var(--blue-700);
}

.content-text h6 {
    font-size: var(--font-size-16);
    line-height: 1.2;
    font-weight: 500;
    color: var(--blue-700);
}

.content-text p {
    font-size: var(--font-size-16);
    font-weight: 450;
    line-height: 1.5;
    color: var(--neutral-500);
}

.content-text ul,
.content-text ol {
    list-style: disc;
    padding-left: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.content-text ul li,
.content-text ol li {
    font-size: var(--font-size-16);
    font-weight: 450;
    line-height: 1.5;
    color: var(--neutral-500);
}

.content-text a {
    color: var(--blue-700);
    text-decoration: underline;
}

.content-text a:hover {
    color: var(--blue-500);
}

/* Table Styles */
/* ------------------------------------------------- */

table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-6) 0;
}

thead th {
    background: var(--neutral-50);
}

th,
td {
    padding: var(--space-4) var(--space-5);
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--neutral-200);
}

th {
    font-family: "Circular Std", sans-serif;
    font-weight: 500;
    font-size: var(--font-size-14);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--neutral-500);
}

td {
    font-family: "Circular Std", sans-serif;
    font-size: var(--font-size-16);
    line-height: 1.6;
    color: var(--neutral-500);
    overflow-wrap: break-word;
    word-wrap: break-word;
}

td strong {
    font-weight: 500;
    color: var(--neutral-950);
}

tbody tr:last-child th,
tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 650px) {
    th,
    td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    td:first-child {
        padding-bottom: var(--space-2);
        border-bottom: none;
    }

    td:not(:first-child) {
        padding-top: 0;
    }
}