/* 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);
}

.content-text {
    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: 16px;
    line-height: 1.2;
    font-weight: 500;
    color: var(--blue-700);
}

.content-text p {
    font-size: 16px;
    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: 16px;
    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);
}
