/* =========================================================
   CLINIC RHAC - SHARED ABOUT CLINIC CONTENT
   ========================================================= */

.about-language-section {
    width: 100%;
}

.about-language-section p {
    margin-top: 0;
    margin-bottom: 1.15rem;
}

.about-language-section .about-list {
    margin: .45rem 0 1.35rem 1.5rem;
    padding: 0;
}

.about-language-section .about-list li {
    margin-bottom: .45rem;
}


/* =========================
   LANGUAGE DIVIDER
   ========================= */

.about-language-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    margin: 2.5rem 0 1.8rem;
}

.about-language-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 146, 69, .45),
        transparent
    );
}

.about-language-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 20px;
    min-width: 100px;

    border-radius: 999px;
    border: 1px solid #a7f3d0;

    background: #ecfdf5;

    color: #047857 !important;

    font-family: Arial, Helvetica, sans-serif !important;
    font-size: .9rem !important;
    font-weight: 800 !important;

    letter-spacing: .08em;
    text-transform: uppercase;
}


/* =========================
   ENGLISH SECTION
   ========================= */

.about-language-en,
.about-language-en p,
.about-language-en li,
.about-language-en h3 {
    font-family: Arial, Helvetica, sans-serif !important;
}

.about-language-en {
    color: #1f2937;
}

.about-english-title {
    position: relative;

    margin: 0 0 1.3rem;
    padding-bottom: .65rem;

    color: #009245 !important;

    font-size: 1.6rem !important;
    line-height: 1.4 !important;
    font-weight: 800 !important;
}

.about-english-title::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 55px;
    height: 3px;

    border-radius: 999px;

    background: linear-gradient(90deg, #009245, #00b96a);
}

.about-clinic-body .about-language-en p,
.about-clinic-body .about-language-en li {
    font-size: 1.18rem !important;
    line-height: 1.85 !important;
    font-weight: 400 !important;
    color: #1f2937 !important;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767.98px) {

    .about-language-divider {
        margin: 2rem 0 1.5rem;
        gap: 9px;
    }

    .about-language-label {
        padding: 6px 14px;
        font-size: .8rem !important;
    }

    .about-english-title {
        font-size: 1.35rem !important;
    }

    .about-clinic-body .about-language-en p,
    .about-clinic-body .about-language-en li {
        font-size: 1.05rem !important;
        line-height: 1.75 !important;
    }
}