/* ============================================================
   PROSE / WYSIWYG CONTAINER (For Service & Industry Pages)
   ============================================================ */
.prose {
    color: var(--color-heavy-metal);
    line-height: 1.6;
    font-size: 18px;
}

.prose h2,
.prose h3,
.prose h4 {
    font-family: "Kanit", sans-serif;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--color-heavy-metal);
    margin-top: 2em;
    line-height: 1;
}

.prose h2 {
    font-size: clamp(36px, 5vw, 48px);
    margin-bottom: 24px;
    border-bottom: 3px solid var(--color-meteor);
    padding-bottom: 12px;
    display: inline-block;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose h3 {
    font-size: clamp(26px, 4vw, 32px);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.prose h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 6px;
    background-color: var(--color-meteor);
}

.prose p {
    font-size: 18px;
    margin-bottom: 1.5em;
    opacity: 0.85;
}

.prose ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2.5em;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prose ul li {
    position: relative;
    padding-left: 24px;
    font-size: 18px;
    font-weight: 500;
}

.prose ul li::before {
    content: "■";
    color: var(--color-meteor);
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 4px;
}

.prose img {
    border-radius: 0;
    border: 4px solid var(--color-heavy-metal);
    max-width: 100%;
    height: auto;
    margin: 2em 0;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
}

/* Image Alignment Classes for WYSIWYG */
@media (min-width: 768px) {
    .prose img.align-right {
        float: right;
        max-width: 50%;
        margin: 0.5em 0 1.5em 2.5em;
    }

    .prose img.align-left {
        float: left;
        max-width: 50%;
        margin: 0.5em 2.5em 1.5em 0;
    }
}
