.editor h1 {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--neutral-graphitic);
}

.editor h2 {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 117%;
    letter-spacing: -0.02em;
    color: var(--neutral-graphitic);
    margin-bottom: 12px;
}

.editor h2:last-child {
    margin-top: 0;
}

.editor h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 117%;
    letter-spacing: -0.01em;
    color: var(--neutral-graphitic);
    margin-bottom: 20px;
}

.editor h3:last-child {
    margin-top: 0;
}

.editor p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--neutral-graphitic);
    margin-bottom: 20px;
}

.editor p:last-child {
    margin-bottom: 0;
}

.editor ul {
    margin-bottom: 20px;
}

.editor ul:last-child {
    margin-bottom: 0;
}

.editor ul:first-child {
    margin-top: 0;
}

.editor ul li {
    padding: 6px 0 6px 10px;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--neutral-graphitic);
}

.editor ul li:after {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: var(--primary-emerald);
}

.editor ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.editor ol:last-child {
    margin-bottom: 0;
}

.editor ol li {
    list-style-type: decimal;
    padding: 6px 0 6px 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: var(--neutral-graphitic);
}

.editor a {
    color: var(--neutral-graphitic);
    transition: all 0.3s linear;
}

.editor a:hover {
    color: var(--primary-emerald);
}

.editor figure {
    display: flex;
    aspect-ratio: 16/9;
    overflow: hidden;
    margin: 25px 0;
}

.editor figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editor blockquote {
    border-left: 2px solid var(--primary-emerald);
    margin-bottom: 20px;
    padding-left: 15px;
}

.editor img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.editor img:last-child {
    margin-top: 0;
}

@media (min-width: 320px) {}

@media (min-width: 768px) {
    .editor h2 {
        margin-bottom: 16px;
    }
    .editor p {
        font-size: 18px;
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .editor h2 {
        margin-bottom: 20px;
    }
    .editor p {
        font-size: 20px;
    }
}

@media (min-width: 1240px) {
    .editor h1 {
        font-size: 60px;
    }

    .editor h2 {
        font-size: 24px;
    }
}

@media (min-width: 1360px) {
    .editor h3 {
        font-size: 24px;
    }
}