/* =========================================================
   HIGHLIGHT SECTION
========================================================= */

.home-highlight-section {
    width: 100%;
    background: #f5f6fd;
    padding: 30px 0 38px;
    position: relative;
}


/* =========================================================
   TITLE
========================================================= */

.home-highlight-title {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 25px;
}

.home-highlight-title h2 {
    margin: 0;
    padding: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 1.2px;

    color: #10143d;

    text-transform: uppercase;

    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.16);
}

.home-highlight-line {
    display: block;

    width: 45px;

    height: 1px;

    background: #c7c9d8;
}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.home-highlight-wrapper {
    width: 100%;

    /* padding: 0 42px; */

    position: relative;
}


/* =========================================================
   SLIDER
========================================================= */

.home-highlight-slider {
    width: 100%;
}

.home-highlight-slider .owl-stage {
    display: flex;

    align-items: stretch;
}

.home-highlight-slider .owl-item {
    display: flex;

    align-items: stretch;
}


/* =========================================================
   CARD
========================================================= */

.home-highlight-card {
    width: 100%;

    height: 100%;

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    border: 1px solid rgba(20, 25, 60, 0.08);

    box-shadow:
        0 4px 15px rgba(25, 30, 70, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.home-highlight-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 12px 28px rgba(25, 30, 70, 0.15);
}


/* =========================================================
   CARD LINK
========================================================= */

.home-highlight-facebook-link {
    display: flex;

    flex-direction: column;

    width: 100%;
    height: 100%;

    color: inherit;

    text-decoration: none !important;
}

.home-highlight-facebook-link:hover {
    color: inherit;

    text-decoration: none !important;
}


/* =========================================================
   IMAGE
========================================================= */

.home-highlight-image {
    width: 100%;

    height: 300px;

    position: relative;

    overflow: hidden;

    background: #e8e9ee;
}

.home-highlight-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.home-highlight-card:hover
.home-highlight-image img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.home-highlight-image-overlay {
    position: absolute;

    top: 10px;
    right: 10px;

    opacity: 0;

    transform: translateY(-5px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.home-highlight-card:hover
.home-highlight-image-overlay {
    opacity: 1;

    transform: translateY(0);
}

.home-highlight-image-overlay span {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.home-highlight-image-overlay i {
    font-size: 14px;

    color: #1877f2;
}


/* =========================================================
   BODY
========================================================= */

.home-highlight-body {
    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 13px 14px 12px;

    background: #ffffff;
}


/* =========================================================
   PROFILE
========================================================= */

.home-highlight-profile {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 40px;
}


/* =========================================================
   AVATAR
========================================================= */

.home-highlight-avatar {
    width: 38px;
    height: 38px;

    min-width: 38px;

    overflow: hidden;

    border-radius: 50%;

    background: #f1f2f5;

    border: 1px solid #e2e4ea;

    box-shadow:
        0 2px 5px rgba(0, 0, 0, 0.08);
}

.home-highlight-avatar img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   PROFILE INFO
========================================================= */

.home-highlight-profile-info {
    flex: 1;

    min-width: 0;

    padding-left: 9px;
}

.home-highlight-profile-info h4 {
    margin: 0 0 2px;

    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    line-height: 15px;

    font-weight: 700;

    color: #181818;
}

.home-highlight-profile-info span {
    display: block;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 9.5px;

    line-height: 13px;

    color: #929292;
}


/* =========================================================
   FACEBOOK ICON
========================================================= */

.home-highlight-facebook-icon {
    width: 27px;

    min-width: 27px;

    height: 27px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1877f2;

    box-shadow:
        0 2px 5px rgba(24, 119, 242, 0.22);
}

.home-highlight-facebook-icon i {
    font-size: 13px;

    color: #ffffff;
}


/* =========================================================
   DIVIDER
========================================================= */

.home-highlight-divider {
    width: 100%;

    height: 1px;

    margin: 10px 0 8px;

    background: #eeeeee;
}


/* =========================================================
   SOCIAL
========================================================= */

.home-highlight-social {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 7px;
}

.home-highlight-social span {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10.5px;

    line-height: 16px;

    color: #555555;
}

.home-highlight-social i {
    font-size: 13px;

    color: #222222;
}


/* =========================================================
   CONTENT
========================================================= */

.home-highlight-content {
    flex: 1;

    min-height: 95px;
}

.home-highlight-content h3 {
    margin: 0 0 5px;

    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11.5px;

    line-height: 16px;

    font-weight: 700;

    color: #1b1b1b;
}

.home-highlight-content p {
    margin: 0;

    padding: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10.5px;

    line-height: 16px;

    color: #555555;

    display: -webkit-box;

    -webkit-line-clamp: 4;

    -webkit-box-orient: vertical;

    overflow: hidden;
}


/* =========================================================
   FOOTER
========================================================= */

.home-highlight-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 8px;

    padding-top: 8px;

    border-top: 1px solid #f0f0f0;
}

.home-highlight-footer span {
    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    line-height: 14px;

    color: #a0a0a0;
}

.home-highlight-footer i {
    font-size: 12px;

    color: #b0b0b0;

    transition: transform 0.2s ease;
}

.home-highlight-card:hover
.home-highlight-footer i {
    transform: translateX(3px);
}


/* =========================================================
   OWL NAV
========================================================= */

.home-highlight-section .owl-nav {
    display: block !important;

    margin: 0 !important;

    padding: 0 !important;
}


/* =========================================================
   PREVIOUS / NEXT BUTTON
========================================================= */

.home-highlight-section
.owl-nav button.owl-prev,

.home-highlight-section
.owl-nav button.owl-next {

    position: absolute !important;

    top: 45% !important;

    width: 30px !important;
    height: 30px !important;

    min-width: 30px !important;
    min-height: 30px !important;

    margin: 0 !important;

    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    border: 0 !important;

    border-radius: 50% !important;

    outline: none !important;

    background: #ffffff !important;

    color: #171717 !important;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.16) !important;

    opacity: 1 !important;

    z-index: 20 !important;

    cursor: pointer !important;

    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease !important;
}


/* Previous */

.home-highlight-section
.owl-nav button.owl-prev {
    left: 5px !important;
}


/* Next */

.home-highlight-section
.owl-nav button.owl-next {
    right: 5px !important;
}


/* Arrow Icon */

.home-highlight-section
.owl-nav button.owl-prev i,

.home-highlight-section
.owl-nav button.owl-next i {

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 17px !important;

    line-height: 1 !important;

    color: #222222 !important;
}


/* Hover */

.home-highlight-section
.owl-nav button.owl-prev:hover,

.home-highlight-section
.owl-nav button.owl-next:hover {

    background: #ffffff !important;

    color: #111111 !important;

    transform: scale(1.08) !important;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.20) !important;
}

.home-highlight-section
.owl-nav button.owl-prev:hover i,

.home-highlight-section
.owl-nav button.owl-next:hover i {
    color: #111111 !important;
}


/* Focus */

.home-highlight-section
.owl-nav button.owl-prev:focus,

.home-highlight-section
.owl-nav button.owl-next:focus {

    outline: none !important;

    background: #ffffff !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .home-highlight-section {
        padding: 27px 0 34px;
    }

    .home-highlight-wrapper {
        padding: 0 38px;
    }

    .home-highlight-image {
        height: 215px;
    }

}


/* =========================================================
   991px
========================================================= */

@media (max-width: 991px) {

    .home-highlight-title {
        margin-bottom: 22px;
    }

    .home-highlight-title h2 {
        font-size: 20px;
    }

    .home-highlight-line {
        width: 35px;
    }

    .home-highlight-wrapper {
        padding: 0 34px;
    }

    .home-highlight-image {
        height: 225px;
    }

    .home-highlight-body {
        padding: 13px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home-highlight-section {
        padding: 23px 0 28px;
    }

    .home-highlight-title {
        gap: 10px;

        margin-bottom: 18px;
    }

    .home-highlight-title h2 {
        font-size: 18px;

        letter-spacing: 1px;
    }

    .home-highlight-line {
        width: 28px;
    }

    .home-highlight-wrapper {
        padding: 0 28px;
    }

    .home-highlight-image {
        height: 270px;
    }

    .home-highlight-body {
        padding: 14px;
    }

    .home-highlight-content {
        min-height: 90px;
    }

    .home-highlight-section
    .owl-nav button.owl-prev,

    .home-highlight-section
    .owl-nav button.owl-next {

        width: 29px !important;
        height: 29px !important;

        min-width: 29px !important;
        min-height: 29px !important;
    }

    .home-highlight-section
    .owl-nav button.owl-prev {
        left: 3px !important;
    }

    .home-highlight-section
    .owl-nav button.owl-next {
        right: 3px !important;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .home-highlight-section {
        padding: 20px 0 25px;
    }

    .home-highlight-title {
        margin-bottom: 17px;
    }

    .home-highlight-title h2 {
        font-size: 17px;
    }

    .home-highlight-wrapper {
        padding: 0 24px;
    }

    .home-highlight-image {
        height: 250px;
    }

    .home-highlight-body {
        padding: 13px;
    }

    .home-highlight-avatar {
        width: 36px;
        height: 36px;

        min-width: 36px;
    }

    .home-highlight-facebook-icon {
        width: 26px;
        height: 26px;

        min-width: 26px;
    }

    .home-highlight-content p {
        -webkit-line-clamp: 4;
    }

}


/* =========================================================
   EXTRA SMALL
========================================================= */

@media (max-width: 360px) {

    .home-highlight-wrapper {
        padding: 0 21px;
    }

    .home-highlight-image {
        height: 225px;
    }

    .home-highlight-body {
        padding: 12px;
    }

    .home-highlight-profile-info h4 {
        font-size: 11px;
    }

    .home-highlight-profile-info span {
        font-size: 9px;
    }

    .home-highlight-content h3 {
        font-size: 11px;
    }

    .home-highlight-content p {
        font-size: 10px;

        line-height: 15px;
    }

}