/*-- -------------------------- -->
<---           Content          -->
<--- -------------------------- -*/

.content {
    padding: var(--space-3xl) var(--space-sm);
    background-color: var(--color-white);
    overflow: hidden;
    position: relative;
}

.content > .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
}

.content-body {
    text-align: left;
    width: 100%;
    max-width: 46.125rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-body h1 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    line-height: var(--leading-title);
    width: 100%;
    margin: 0 0 1rem 0;
    color: var(--color-dark);
}

.content-body h2 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    line-height: var(--leading-title);
    margin: 2rem 0 1rem 0;
    color: var(--color-dark);
}

.content-body h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    line-height: var(--leading-title);
    margin: 0 0 1rem 0;
    color: var(--color-primary);
}

.content-body h4,
.content-body h5,
.content-body h6 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    line-height: var(--leading-title);
    margin: 0 0 1rem 0;
    color: var(--color-dark);
}

.content-body p {
    font-size: var(--font-size-md);
    line-height: var(--leading-relaxed);
    width: 100%;
    margin: 0 0 1rem 0;
    color: var(--color-dark);
}

.content-body p:last-of-type {
    margin-bottom: 2rem;
}

.content-body p a {
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    color: var(--color-primary);
}

.content-body ol,
.content-body ul {
    padding-left: 1.5rem;
    margin: 0 0 2rem 0;
    color: var(--color-dark);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.content-body ul li {
    list-style: none;
    position: relative;
}

.content-body ul li::before {
    content: "";
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 0.625rem;
    left: -0.75rem;
}

.content-image {
    width: 50%;
    max-width: 27.0625rem;
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.content-image::after {
    content: "";
    width: 100%;
    height: clamp(11.0625rem, 19vw, 16.125rem);
    background: var(--color-primary);
    border-radius: 6.25rem 0 6.25rem;
    opacity: 0.15;
    display: block;
}

.content-picture {
    width: 100%;
    height: clamp(18.75rem, 40vw, 32.5rem);
    box-shadow: 0px 3.3478px 50.2169px rgba(0, 0, 0, 0.16);
    border-radius: 0 clamp(7.8125rem, 15vw, 12.5rem) 0 clamp(7.8125rem, 15vw, 12.5rem);
    box-sizing: border-box;
    overflow: hidden;
    display: block;
    position: relative;
}

.content-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    .content > .wrapper {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .content-body {
        flex: none;
        width: 60%;
        order: 2;
    }

    .content-image {
        display: flex;
    }
}
