/* Section Generic hero - shorter height than ape-landing (~345px / ~40% viewport) */
.section-generic-hero {
    min-height: 40vh;
    min-height: 40dvh;
}
@media (min-width: 768px) {
    .section-generic-hero {
        border-radius: 0 0 0 100px !important;
        min-height: 45vh;
        min-height: 45dvh;
    }
}
@media (min-width: 1024px) {
    .section-generic-hero {
        min-height: 42vh;
        min-height: 42dvh;
    }
}

@media (min-width: 1250px) {
    .section-generic-hero {
        min-height: 52vh;
        min-height: 52dvh;
    }
}

@media (min-width: 1440px) {
    .section-generic-hero {
        min-height: 42vh;
        min-height: 42dvh;
    }
}

/* Section Generic - WYSIWYG content styling */
.section-generic-content {
    color: #545454;
}
.section-generic-content h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 0.5em;
}
.section-generic-content h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 0.5em;
}
.section-generic-content p {
    margin-bottom: 1em;
}
.section-generic-content p:last-child {
    margin-bottom: 0;
}
.section-generic-content strong {
    font-weight: 700;
}
.section-generic-content u,
.section-generic-content [style*="underline"] {
    text-decoration: underline;
}
.section-generic-content a {
    text-decoration: underline;
    color: #0c5c38;
}
.section-generic-content a:hover {
    color: #0a4d2e;
}
.section-generic-content ul,
.section-generic-content ol {
    list-style-type: disc;
    margin-left: 1.5em;
    margin-bottom: 1em;
}
.section-generic-content ol {
    list-style-type: decimal;
    margin-left: 1.5em;
    margin-bottom: 1em;
    padding-left: 0.5em;
}
.section-generic-content ul li,
.section-generic-content ol li {
    margin-bottom: 0.25em;
}
.section-generic-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1.5rem 0;
    overflow-x: auto;
    border-collapse: collapse;
    color: #2f2f2f;
    font-size: 16px;
    line-height: 1.5;
}
.section-generic-content thead,
.section-generic-content tbody,
.section-generic-content tr {
    width: 100%;
}
.section-generic-content th,
.section-generic-content td {
    min-width: 160px;
    padding: 12px 16px;
    border: 1px solid #d9e3de;
    text-align: left;
    vertical-align: top;
}
.section-generic-content th {
    background: #f2f8f5;
    color: #0c5c38;
    font-weight: 800;
}
.section-generic-content td:first-child {
    font-weight: 700;
}
.section-generic-content tbody tr:nth-child(even) td {
    background: #fbfdfc;
}
.section-generic-content img {
    max-width: 100%;
    height: auto;
    padding-block: 1.2rem;
    display: block;
    max-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
}
/* Prevent Trix image wrapper links from navigating to raw image */
.section-generic-content figure a[href] {
    pointer-events: none;
    text-decoration: none;
}

.section-generic-content figcaption {
    display: none;
}
