/* Content Area Styles */
.content-area h1 {
    font-size: 1.5rem; /* text-2xl */
    line-height: 48px;
    font-weight: 700;
    color: #1F2AAD;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .content-area h1 {
        font-size: 32px;
    }
}

.content-area h2 {
    font-size: 1.25rem;
    line-height: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
    /* color: #323234; */
}

@media (min-width: 1024px) {
    .content-area h2 {
        font-size: 1.5rem;
    }
}

.content-area h3 {
    font-size: 1.125rem;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    /* color: #323234; */
}

@media (min-width: 1024px) {
    .content-area h3 {
        font-size: 1.25rem;
    }
}

.content-area h4 {
    font-size: 1rem;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    /* color: #323234; */
}

@media (min-width: 1024px) {
    .content-area h4 {
        font-size: 1.125rem;
    }
}

.content-area h5, .content-area h6 {
    font-size: 0.875rem;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* color: #323234; */
}

@media (min-width: 1024px) {
    .content-area h5 {
        font-size: 1rem;
    }
}

.content-area p {
    font-size: 0.875rem;
    line-height: 28px;
    margin-bottom: 1rem;
    text-align: justify;
}

@media (min-width: 1024px) {
    .content-area p {
        font-size: 1rem;
    }
}

.content-area strong {
    font-weight: 700;
}

.content-area a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.2s;
}

.content-area a:hover {
    color: #2635D9;
}

.content-area ul {
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 1rem;
    padding-right: 1rem;
}

.content-area ol {
    list-style-type: decimal;
    list-style-position: inside;
    margin-bottom: 1rem;
    padding-right: 1rem;
}

.content-area li {
    font-size: 0.875rem;
    line-height: 28px;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .content-area li {
        font-size: 1rem;
    }
}

.content-area img {
    border-radius: 0.5rem;
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.content-area pre {
    background-color: #FAFAFA;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    overflow-x: auto;
}

.content-area code {
    display: block;
    background-color: #FAFAFA;
    color: #323234;
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    direction: ltr;
    text-align: left;
}

.content-area blockquote {
    border-right: 4px solid #1F2AAD;
    background-color: #F2F7FD;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.content-area blockquote p {
    margin-bottom: 0;
}

.content-area table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.content-area table th {
    background-color: #F2F7FD;
    border: 1px solid #E4E5E7;
    padding: 0.5rem 1rem;
    text-align: right;
    font-weight: 700;
}

.content-area table td {
    border: 1px solid #E4E5E7;
    padding: 0.5rem 1rem;
    text-align: right;
}

.content-area hr {
    border: 0;
    border-top: 1px solid #E4E5E7;
    margin: 2rem 0;
}

/* Custom info box style */
.content-area .info-box {
    background-color: #F2F7FD;
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.content-area .info-box h3 {
    color: #323234;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    line-height: 24px;
}

.content-area .info-box h3 span {
    color: #1F2AAD;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.content-area .info-box-item {
    background-color: white;
    display: flex;
    border-radius: 0.5rem;
    text-align: justify;
    border: 1px solid #E4E5E7;
    margin: 0.25rem 0;
}

.content-area .info-box-number {
    color: #1F2AAD;
    font-size: 0.875rem;
    line-height: 24px;
    font-weight: 500;
    padding: 0 0.5rem;
    margin: auto 0.5rem auto 0.75rem;
}

.content-area .info-box-text {
    font-size: 0.75rem;
    line-height: 24px;
    padding: 0.375rem 0.75rem 0.375rem 0;
}
