/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.3.0.1744446963
Updated: 2025-04-12 08:36:03

*/
/* @font-face {
    font-family: 'UniversLTStd';
    src: url('assets/fonts/univers/UniversLTStd.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
} */

:root {
    --white: #FFF;
    --black: #000;
    --main-yellow: #FECE00;
    --universe-ltstd: 'Univers', sans-serif;
}

body {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

a,
a:visited {
    text-decoration: none;
    color: var(--black);
}


/* a:hover {
    color: #aaa;
} */

a:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-block-end: 7px;
}

p:last-child {
    margin-bottom: 0;
}

@media (min-width: 751px) {
    .hide-desktop {
        display: none !important;
    }
}

@media (max-width: 750px) {
    .hide-mobile {
        display: none !important;
    }
}

.aeon-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
    z-index: 9;
}

.header-container {
    padding: 24px 64px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}

.header-left {
    grid-area: 1 / 1 / 2 / 2;
}

.header-nav {
    grid-area: 1 / 2 / 2 / 5;
}

.header-right {
    grid-area: 1 / 5 / 2 / 6;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo img {
    height: 38px;
}

.header-divider {
    width: 1px;
    height: 24px;
    background-color: #7B7777;
    margin: 0 15px;
}

.header-logo-text {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    color: #212121;
}

.header-nav .sub-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-1.5rem);
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
    position: absolute;
    background: #FFFFFF;
    border-radius: 8px;
    transition: .3s ease;
}

.header-nav .menu-item.has-children>a svg {
    transition: .3s ease;
}

.header-nav .menu-item.has-children:hover>a svg {
    transform: rotate(180deg);
}

.header-nav .menu-item.has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
    transform: translateY(0);
}

.header-nav .menu-item a {
    font-family: var(--universe-ltstd);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.header-nav>.menu-item>a {
    display: block;
    padding: 15px 0;
}

.menu-item.has-children>a {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Right: menu + button */
.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 48px;
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
}

.button--primary {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 20px 14px 24px;
    gap: 12px;
    background: var(--main-yellow);
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
    width: fit-content;
}

@media (max-width: 750px) {
    .header-nav .sub-menu {
        transform: translateX(50dvw);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100dvw;
        height: 100%;
        justify-content: flex-start;
        align-items: flex-end;
        overflow-y: auto;
    }

    .header-nav .menu-item.has-children:hover .sub-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .header-nav .menu-item.has-children .sub-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: inherit;
        transform: translateX(0);
    }

    .header-nav-mobile .sub-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .header-nav-mobile .sub-menu-back {
        background-color: transparent;
        font-size: 20px;
        padding: 3px 2px;
        color: #000;
        border: 0;
        border-radius: 0;
    }

    .header-nav-mobile .sub-menu-back:hover,
    .header-nav-mobile .sub-menu-back:focus {
        background-color: transparent;
        border: 0;
    }

    .header-nav-mobile .sub-menu-title {
        color: #000;
        font-size: 24px;
        font-weight: 400;
        line-height: 150%;
    }

    .button--primary {
        padding: 9px 14px 9px 17px;
        gap: 8px;
    }
}

.custom-logo {
    max-width: 185px;
}

.header-hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
    display: none;
    z-index: 100;
}

.header-hamburger span {
    position: absolute;
    height: 1.5px;
    width: 100%;
    background: #1A1A1A;
    border-radius: 2px;
    left: 0;
    transition: 0.3s ease;
}

.header-hamburger span:nth-child(1) {
    top: 0;
}

.header-hamburger span:nth-child(2) {
    top: 8px;
}

.header-hamburger span:nth-child(3) {
    top: 16px;
}

/* Saat aktif jadi ikon close (X) */
.header-hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.header-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
}

/* layanan kesehatan */
.laykes-wrapper {
    padding: 115px 120px;
    margin: auto;
}

.laykes-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}

.laykes-cta h2 {
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 100%;
    color: var(--black);
    margin: 0 0 30px 0;
}

.laykes-image {
    text-align: center;
}

.laykes-image img {
    max-width: 242px;
    margin: auto;
}

.laykes-image img.laykes-icon-services {
    max-width: none;
}

/* end layanan kesehatan */

/* footer */
.footer-divider {
    height: 1.5px;
    width: 100%;
    background-color: #C3C3CB;
}

.footer-wrapper {
    padding: 0 120px 50px;
}

.footer-logo {
    margin-top: 30px;
}

.footer-nav {
    padding-top: 60px;
    padding-bottom: 100px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
}

.footer-nav .menu-item a {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    display: block;
    width: fit-content;
    color: var(--black);
}

.footer-nav .menu-item>a {
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-nav .menu-item .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.network-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.country-network,
.country-network ul,
.country-network ul li,
.certified ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.country-network ul,
.certified ul {
    list-style: none;
    padding-left: 0;
}

.country-network ul li {
    gap: 4px;
}

.country-network span {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    color: var(--black);
}

.country-network>span {
    font-weight: 700;
}

.footer-copyright {
    padding: 0 40px 48px;
}

.copyright-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.copyright-wrapper .logo-aeon img {
    width: auto;
    height: 32px;
}

.copyright-wrapper .logo-plant img {
    width: auto;
    height: 40px;
}

.copyright-left,
.copyright-right {
    flex: 0 0 auto;
    min-width: 200px;
}

.copyright-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.text-copy p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 125%;
    color: var(--black);
}

.copyright-wrapper .footer-social ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social li a svg path {
    transition: .3s ease;
}

.footer-social li a:hover svg path {
    fill: var(--black);
}

/* end footer */
button {
    outline: none;
}

.fill-white .elementor-button svg path {
    fill: white;
}

.elementor-button svg path,
.elementor-button:hover svg path,
.fill-white .elementor-button:hover svg path {
    fill: initial;
}

.services-item-image {
    backdrop-filter: blur(16px);
}

.services-item-image .elementor-image-box-title {
    margin: 0;
}

.services-item-image .elementor-image-box-img {
    height: 24px;
}

.backdrop-hww-item {
    backdrop-filter: blur(8px);
    clip-path: inset(0 0 0 0 round 0 0 8px 8px
            /* (top-left, top-right, bottom-right, bottom-left) */
        );
}

.backdrop-item-16 {
    backdrop-filter: blur(16px);
    clip-path: inset(0 0 0 0 round 0 0 16px 16px
            /* (top-left, top-right, bottom-right, bottom-left) */
        );
}

.backdrop-item-24 {
    backdrop-filter: blur(24px);
    clip-path: inset(0 0 0 0 round 0 0 24px 24px
            /* (top-left, top-right, bottom-right, bottom-left) */
        );
}

.of-hidden {
    overflow: hidden;
}

.drop-shadow-item {
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.25));
}

.article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-image {
    margin-bottom: 24px;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
}

.article-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-title {
    font-family: var(--universe-ltstd);
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 125%;
    color: var(--black);
    margin: 0;
}

.article-excerpt {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: var(--black);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-date {
    font-family: var(--universe-ltstd);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black);
}

.text-white path {
    fill: #fff !important;
}

.pagination-article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pagination-article a,
.pagination-article span {
    border-radius: 8px;
    border: 1px solid #F1F1F1;
    background: #fff;
    display: flex;
    width: 32px;
    height: 32px;
    padding: 5px 4px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #222;
    text-align: center;
    font-family: 'Univers', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    transition: 0.3s ease-in-out;
}

.pagination-article a.active,
.pagination-article span.current,
.pagination-article a:hover {
    border: 1px solid #FECE00;
    background: #FECE00;
    color: #000;
}

/* .pagination-article .disable-prev-next {
    background-color: #d0d5dd;
    opacity: 0.5;
} */

@media (max-width: 1100px) {
    /* .header-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    } */

    .header-container {
        padding: 16px;
        display: block;
    }

    .header-right {
        display: none;
    }

    .header-hamburger {
        display: block;
    }

    .header-left {
        gap: 10px;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        right: 0;
        width: 100%;
        height: fit-content;
        z-index: 99;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        margin: 0;
        align-items: flex-end;
        padding: 24px 16px;
        gap: 16px;
        background: #FFFFFF;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.05);
        border-radius: 0px 0px 8px 8px;
    }

    .header-nav>.menu-item>a {
        padding: 0;
    }

    .header-nav.show {
        transform: translateX(0);
    }

    .header-nav>.menu-item svg {
        display: none;
    }
}

@media (min-width: 751px) {
    .medium-hide {
        display: none;
    }
}

@media only screen and (max-width: 750px) {
    .small-hide {
        display: none;
    }

    .article-list {
        grid-template-columns: 1fr;
    }

    .header-btn-contact {
        padding: 10px 12px;
        font-size: 14px;
        line-height: 18px;
    }

    .header-header {
        padding: 16px;
    }

    .header-logo img {
        height: 30px;
    }

    .services-item-image .elementor-image-box-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .laykes-wrapper {
        padding: 24px 16px;
    }

    .laykes-content {
        grid-template-columns: 1fr;
        gap: 73px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        padding-top: 24px;
        padding-bottom: 24px;
        justify-content: center;
        text-align: center;
        gap: 16px;
    }

    .laykes-cta h2 {
        font-size: 48px;
    }

    .laykes-image img {
        max-width: 200px;
    }

    .footer-wrapper {
        padding: 0 16px;
    }

    .footer-nav>.menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .footer-nav .menu-item .sub-menu {
        display: none;
    }

    .footer-nav .menu-item .sub-menu li {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-nav .menu-item a {
        font-size: 16px;
    }

    .footer-nav .menu-item>a {
        margin-bottom: 0;
    }

    .footer-copyright {
        padding: 85px 16px 52px;
    }

    .copyright-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .copyright-left,
    .copyright-right {
        min-width: auto;
        width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .copyright-left {
        gap: 27px;
        margin-bottom: 68px;
    }

    .copyright-center {
        gap: 0;
        margin-bottom: 87px;
    }

    .pagination-article {
        margin-bottom: 50px;
    }
}

/* floating side button */
.floating-side-button {
    position: fixed;
    right: 0;
    bottom: 45dvh;
    z-index: 1;
}

.floating-button-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-button-item a {
    position: relative;
    z-index: 15;
    display: block;
    padding: 12px;
    border-radius: 4px 0 0 4px;
}

.floating-button-item a.btn-file-download {
    background-color: #B70081;
}

.floating-button-item a.btn-contact-phone {
    background-color: #FECE00;
}

@media (max-width: 750px) {
    .floating-side-button {
        bottom: 36dvh;
    }

    .floating-button-item a {
        padding: 8.57px 8.57px 8px;
        border-radius: 2.86px 0 0 2.86px;
    }

    .floating-button-item a svg {
        width: 22.86px;
        height: 22.86px;
    }
}

/* end floating side button */

/* modal */
.modal-dialog {
    max-width: 581px;
}

.modal .btn-close {
    background: none;
    display: flex;
    align-items: center;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: #000;
    opacity: 1;
    position: absolute;
    top: 45px;
    right: 36px;
}

.modal .modal-body {
    padding: 32px;
}

.modal .modal-content {
    border-radius: 12px;
    border-color: transparent;
}

.modal .modal-content-header {
    margin-bottom: 40px;
}

.modal .modal-title {
    font-family: 'Univers', sans-serif;
    color: #000;
    font-size: 36px;
    font-weight: 400;
    line-height: 125%;
    margin: 0;
}

.modal .modal-description {
    color: #848589;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin-top: 16px;
    margin-bottom: 0;
}

.modal .modal-content-form .form-group-input .form-group {
    margin-bottom: 16px;
}

.modal .modal-content-form .form-group-input .form-group:last-child {
    margin-bottom: 0;
}

.modal .modal-content-form input.form-control {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    padding: 20px 24px;
    border: 1px solid #C3C3CB;
    border-radius: 16px;
    width: 100%;
}

.modal .modal-content-form input.form-control::placeholder {
    color: #C3C3CB;
    opacity: 1;
}

.modal .modal-content-form .btn-submit-modal {
    background-color: #FECE00;
    border-color: #FECE00;
    border-radius: 8px;
    padding: 14px 25px;
    width: 100%;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 40px;
}

.modal .modal-result-message {
    margin-top: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.modal .modal-result-message.success {
    color: #00ff00;
}

.modal .modal-result-message.error {
    color: #ff0000;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 581px;
    }
}

@media (max-width: 750px) {
    .modal .btn-close {
        top: 18px;
        right: 15px;
    }

    .modal .modal-body {
        padding: 20px;
    }

    .modal .modal-content-header {
        margin-bottom: 20px;
    }

    .modal .modal-title {
        font-size: 28px;
    }

    .modal .modal-description {
        font-size: 14px;
        margin-top: 14px;
    }

    .modal .modal-content-form input.form-control {
        font-size: 14px;
        padding: 10px 15px;
    }

    .modal .modal-content-form .btn-submit-modal {
        padding: 8px 16px;
        font-size: 14px;
        margin-top: 20px;
    }

    .modal .modal-result-message {
        margin-top: 16px;
        font-size: 14px;
    }
}

/* end modal */

/* single post blog */
.single-post-blog {
    padding: 64px 64px 155px;
}

.single-post-blog .row-container-blog {
    margin-left: 0;
    margin-right: 0;
}

.single-post-blog .row-container-blog > .col-md-12 {
    padding-left: 0;
    padding-right: 0;
}

.single-post-blog .post-featured-image {
    margin-bottom: 32px;
}

.single-post-blog .post-meta-date {
    margin-bottom: 24px;
}

.single-post-blog .post-date {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
}

.single-post-blog h1 {
    color: #000;
    font-family: 'Univers', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 100%;
    margin: 0 0 88px;
}

.single-post-blog .contents {
    max-width: 888px;
    margin: 0 auto 88px;
}

.single-post-blog .contents p {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.single-post-blog .contents p:last-child {
    margin-bottom: 0;
}

.single-post-blog .post-meta-author {
    max-width: 655px;
    margin: 0 auto;
}

.single-post-blog .post-author-title {
    color: #1C1C1C80;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin: 0 0 15px;
}

.single-post-blog .post-author-image img {
    border-radius: 50%;
}

.single-post-blog .post-author-content {
    display: flex;
    flex-direction: row;
    gap: 37px;
}

.single-post-blog .post-author-name {
    color: #1C1C1C;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 125%;
    text-transform: capitalize;
    margin: 0;
}

.single-post-blog .post-author-social {
    margin: 0 0 13px;
}

.single-post-blog .post-author-social a,
.single-post-blog .post-author-social a:hover,
.single-post-blog .post-author-social a:visited {
    color: #1C1C1C80;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
}

.single-post-blog .post-author-description p {
    color: #1C1C1C;
    font-family: 'Univers', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 0;
}

.single-post-recom {
    margin-top: 263px;
}

.single-post-recom .related-posts h5 {
    color: #000;
    font-family: 'Univers', sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 125%;
    margin: 0 0 32px;
}

.single-post-recom .related-posts-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px
}

.single-post-recom .related-posts-list .related-posts-item {
    flex: 0 0 auto;
    width: 32%;
}

.single-post-recom .related-posts-item .rpi-title {
    color: #000;
    font-family: 'Univers', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    margin: 24px 0;
}

.single-post-recom .related-posts-item .rpi-title a {
    display: block;
}

.single-post-recom .related-posts-item .rpi-date {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
    margin: 0;
}

@media (max-width: 750px) {
    .single-post-blog {
        padding: 16px 16px 32px;
    }

    .single-post-blog .post-featured-image {
        margin-bottom: 18px;
    }

    .single-post-blog .post-meta-date {
        margin-bottom: 14px;
    }

    .single-post-blog .post-date {
        font-size: 14px;
    }

    .single-post-blog h1 {
        font-size: 32px;
        margin: 0 0 40px;
    }

    .single-post-blog .contents {
        max-width: none;
        margin: 0 auto 40px;
    }

    .single-post-blog .contents p {
        font-size: 14px;
    }

    .single-post-blog .post-meta-author {
        max-width: none;
    }

    .single-post-blog .post-author-title {
        font-size: 16px;
        margin: 0 0 8px;
    }

    .single-post-blog .post-author-content {
        gap: 16px;
    }

    .single-post-blog .post-author-name {
        font-size: 16px;
        font-weight: 500;
    }

    .single-post-blog .post-author-social {
        margin: 0 0 8px;
    }

    .single-post-blog .post-author-social a,
    .single-post-blog .post-author-social a:hover,
    .single-post-blog .post-author-social a:visited {
        font-size: 14px;
    }

    .single-post-blog .post-author-description p {
        font-size: 14px;
    }

    .single-post-recom {
        margin-top: 40px;
    }

    .single-post-recom .related-posts h5 {
        font-size: 20px;
        margin: 0 0 16px;
    }

    .single-post-recom .related-posts-list {
        flex-direction: column;
        gap: 16px;
    }

    .single-post-recom .related-posts-list .related-posts-item {
        width: 100%;
    }

    .single-post-recom .related-posts-item .rpi-title {
        font-size: 16px;
        margin: 16px 0;
    }

    .single-post-recom .related-posts-item .rpi-date {
        font-size: 14px;
    }
}
/* end single post blog */