/* DKC editor content typography
   Prose scope for rendered editor HTML (.dkc-content)
================================================== */
.dkc-content {
    color: #0F2A44;
    overflow-wrap: anywhere;
}
.dkc-content > * {
    max-width: 100%;
    box-sizing: border-box;
}
.dkc-content p {
    margin: 0 0 14px;
    font-size: 17px;
    line-height: 26px;
}
.dkc-content h2,
.dkc-content h3,
.dkc-content h4 {
    font-family: 'Exo 2', sans-serif;
    color: #0F2A44;
    font-weight: 600;
    float: none;
}
.dkc-content h2 {
    font-size: 28px;
    line-height: 34px;
    margin: 28px 0 14px;
}
.dkc-content h3 {
    font-size: 22px;
    line-height: 28px;
    margin: 24px 0 12px;
}
.dkc-content h4 {
    font-size: 18px;
    line-height: 24px;
    margin: 20px 0 10px;
}
.dkc-content ul,
.dkc-content ol {
    margin: 0 0 14px;
    padding-left: 24px;
}
.dkc-content li {
    font-size: 17px;
    line-height: 26px;
    margin: 6px 0;
}
.dkc-content li::marker {
    color: #3886D4;
}
.dkc-content a {
    color: #3886D4;
    text-decoration: underline;
}
.dkc-content a:hover {
    color: #0F2A44;
}
.dkc-content strong,
.dkc-content b {
    font-weight: 700;
}
.dkc-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}
.dkc-content iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    margin: 10px 0;
}
.dkc-content video {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}
.dkc-content pre {
    max-width: 100%;
    overflow-x: auto;
    white-space: pre-wrap;
}
.dkc-content table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    display: block;
    overflow-x: auto;
    margin: 0 0 14px;
}
.dkc-content th,
.dkc-content td {
    border: 1px solid #D3D9DC;
    padding: 8px 12px;
    font-size: 16px;
    text-align: left;
}
.dkc-content blockquote {
    margin: 20px 0;
    padding: 12px 20px;
    border-left: 3px solid #0F2A44;
    background: rgba(15, 42, 68, 0.05);
    font-size: 17px;
    line-height: 26px;
}

/* Responsive
================================================== */
@media screen and (max-width: 768px){
    .dkc-content h2 {
        font-size: 24px;
        line-height: 30px;
        margin: 22px 0 12px;
    }
    .dkc-content h3 {
        font-size: 20px;
        line-height: 26px;
        margin: 18px 0 10px;
    }
    .dkc-content p,
    .dkc-content li {
        font-size: 16px;
        line-height: 24px;
    }
}
@media screen and (max-width: 550px){
    .dkc-content h2 {
        font-size: 21px;
        line-height: 27px;
    }
    .dkc-content h3 {
        font-size: 18px;
        line-height: 24px;
    }
}
