/* =========================================================
   MOROCCO HOLIDAYS
   PREMIUM SINGLE POST
   CLEAN ICON SYSTEM
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

.mhs-single-wrapper,
.mhs-single-wrapper * {
    box-sizing: border-box;
}


/* =========================================================
   MAIN
========================================================= */

.mhs-single-wrapper {
    width: 100%;
    margin: 0;
    padding: 0 0 80px;
}


/* =========================================================
   HERO
========================================================= */

.mhs-hero {
    position: relative;
    width: 100vw;
    min-height: 650px;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    background: #24211c;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.mhs-hero-image {
    position: absolute !important;
    inset: 0 !important;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    object-fit: cover !important;
    object-position: center center;

    border: 0 !important;
    border-radius: 0 !important;

    transform: none !important;

    z-index: 0;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.mhs-hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(15, 13, 10, .96) 0%,
            rgba(15, 13, 10, .82) 32%,
            rgba(15, 13, 10, .40) 65%,
            rgba(15, 13, 10, .08) 100%
        );
}


/* =========================================================
   HERO CONTENT
========================================================= */

.mhs-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 120px 35px 60px;
}


/* =========================================================
   PRIVATE TOUR
========================================================= */

.mhs-private-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin: 0 0 18px;

    color: #DFC16C;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.6px;
}


.mhs-badge-icon {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.mhs-badge-icon i {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #DFC16C !important;

    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;

    font-size: 13px !important;
    line-height: 1 !important;

    font-style: normal !important;
}


/* =========================================================
   HERO TITLE
========================================================= */

.mhs-hero-title {
    display: block;

    max-width: 1000px;

    margin: 0 0 35px !important;
    padding: 0 !important;

    color: #ffffff !important;

    background: transparent !important;

    border: 0 !important;
    border-radius: 0 !important;

    box-shadow: none !important;

    font-size: clamp(38px, 5vw, 64px) !important;
    line-height: 1.08 !important;

    font-weight: 700 !important;
    letter-spacing: -1.5px;

    text-shadow:
        0 2px 15px rgba(0, 0, 0, .30);
}


/* =========================================================
   TOUR INFO
========================================================= */

.mhs-tour-info {
    display: flex;
    flex-wrap: wrap;

    width: fit-content;
    max-width: 100%;

    margin: 0;

    border-top: 1px solid rgba(255,255,255,.35);
    border-bottom: 1px solid rgba(255,255,255,.35);
}


/* =========================================================
   INFO ITEM
========================================================= */

.mhs-info-item {
    display: flex;
    align-items: center;

    min-width: 210px;

    padding: 17px 30px 17px 0;

    margin-right: 30px;

    border-right: 1px solid rgba(255,255,255,.25);
}


.mhs-info-item:last-child {
    margin-right: 0;
    border-right: 0;
}


/* =========================================================
   INFO ICON
========================================================= */

.mhs-info-icon {
    width: 44px;
    height: 44px;

    min-width: 44px;
    flex: 0 0 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 13px;

    border: 1px solid rgba(223,193,108,.75);
    border-radius: 50%;

    background: rgba(255,255,255,.04);

    overflow: hidden;
}


/* =========================================================
   ALL INFO ICONS
========================================================= */

.mhs-info-icon i {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #DFC16C !important;

    font-size: 19px !important;
    line-height: 1 !important;

    font-style: normal !important;

    visibility: visible !important;
    opacity: 1 !important;
}


/* =========================================================
   DEPARTURE — LOCATION
========================================================= */

.mhs-info-icon .fa-location-dot {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}


/* =========================================================
   DURATION — CLOCK
========================================================= */

.mhs-info-icon .fa-clock {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}


/* =========================================================
   REMOVE ALL AIRPLANES
========================================================= */

.mhs-info-icon .fa-plane,
.mhs-info-icon .fa-plane-departure,
.mhs-info-icon .fa-plane-arrival,

.mhs-content .fa-plane,
.mhs-content .fa-plane-departure,
.mhs-content .fa-plane-arrival,

.mhs-content h2 .fa-plane,
.mhs-content h2 .fa-plane-departure,
.mhs-content h2 .fa-plane-arrival,

.mhs-content h3 .fa-plane,
.mhs-content h3 .fa-plane-departure,
.mhs-content h3 .fa-plane-arrival {
    display: none !important;
}


/* =========================================================
   INFO TEXT
========================================================= */

.mhs-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.mhs-info-label {
    color: rgba(255,255,255,.62);

    font-size: 10px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.3px;
}


.mhs-info-text strong {
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;
}


/* =========================================================
   CONTENT
========================================================= */

.mhs-content {
    width: 100%;
    max-width: 920px;

    margin: 0 auto;

    padding: 65px 25px 0;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.mhs-content p {
    margin: 0 0 25px;

    color: #4a4741;

    font-size: 17px;
    line-height: 1.85;
}


.mhs-content a {
    color: #a27b27;
    font-weight: 600;
    text-decoration: none;
}


.mhs-content a:hover {
    color: #c49c45;
}


/* =========================================================
   INTRO
========================================================= */

.mhs-content > p:first-child {
    margin-bottom: 35px;
    padding-bottom: 32px;

    color: #35322e;

    font-size: 19px;
    line-height: 1.85;

    border-bottom: 1px solid #ebe5da;
}


/* =========================================================
   H2 BASE
========================================================= */

.mhs-content h2 {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    width: 100%;

    margin: 55px 0 22px !important;
    padding: 14px 19px !important;

    color: #292721 !important;

    background: #fcfaf6 !important;

    border: 1px solid #eee8dc !important;
    border-radius: 10px !important;

    box-shadow: none !important;

    font-size: 27px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
}


/* =========================================================
   H2 LOCATION ICON
========================================================= */

.mhs-content h2::before {
    content: "\f3c5" !important;

    width: 34px;
    height: 34px;

    min-width: 34px;
    flex: 0 0 34px;

    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    margin: 0 !important;
    padding: 0 !important;

    color: #c5a24c !important;

    background: #fffdf8 !important;

    border: 1px solid #e6d8b8 !important;
    border-radius: 50%;

    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;

    font-size: 13px !important;
    line-height: 1 !important;

    font-style: normal !important;
}


/* =========================================================
   NEVER USE H2 AFTER
========================================================= */

.mhs-content h2::after {
    content: none !important;
    display: none !important;
}


/* =========================================================
   DAY TITLE
========================================================= */

.mhs-content h2.mhs-day-title {
    margin-top: 58px !important;

    color: #302d27 !important;

    background: #fcfaf6 !important;

    border: 1px solid #ebe5d9 !important;

    border-left: 4px solid #DFC16C !important;

    border-radius: 10px !important;

    white-space: normal !important;
    overflow: visible !important;
}


/* =========================================================
   DAY LOCATION ICON
========================================================= */

.mhs-content h2.mhs-day-title::before {
    content: "\f3c5" !important;

    color: #c5a24c !important;

    background: #fffdf9 !important;

    border: 1px solid #e4d5af !important;

    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;

    font-size: 13px !important;
}


/* =========================================================
   DAY DESCRIPTION — ALL PARAGRAPHS
========================================================= */

.mhs-content h2.mhs-day-title + p.wp-block-paragraph,
.mhs-content h2.mhs-day-title + p.wp-block-paragraph + p.wp-block-paragraph,
.mhs-content h2.mhs-day-title + p.wp-block-paragraph + p.wp-block-paragraph + p.wp-block-paragraph {
    padding: 22px 26px !important;

    margin-top: 0 !important;
    margin-bottom: 18px !important;

    background: #fdfbf7 !important;

    border: 1px solid #eee8dc !important;

    border-left: 3px solid #d9b66f !important;

    border-radius: 0 10px 10px 10px !important;

    color: #4a4741 !important;

    line-height: 1.85 !important;

    box-shadow: 0 2px 10px rgba(0,0,0,.025) !important;
}


/* =========================================================
   INCLUDED
========================================================= */

.mhs-content h2.mhs-included-title {
    color: #286b45 !important;

    background: #f3faf5 !important;

    border: 1px solid #d8ecdf !important;

    border-left: 4px solid #2d8a56 !important;
}


/* =========================================================
   INCLUDED ICON — CHECK
========================================================= */

.mhs-content h2.mhs-included-title::before {
    content: "\f00c" !important;

    color: #ffffff !important;

    background: #2d8a56 !important;

    border: 0 !important;

    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;

    font-size: 14px !important;
}


/* =========================================================
   INCLUDED CONTENT
========================================================= */

.mhs-content h2.mhs-included-title + p {
    margin-top: 0 !important;

    padding: 22px 25px !important;

    color: #454b46 !important;

    background: #fbfdfb !important;

    border-left: 3px solid #2d8a56 !important;

    border-radius: 0 10px 10px 0 !important;
}


/* =========================================================
   NOT INCLUDED
========================================================= */

.mhs-content h2.mhs-excluded-title {
    color: #a33f39 !important;

    background: #fff6f5 !important;

    border: 1px solid #f0ddda !important;

    border-left: 4px solid #c84a43 !important;
}


/* =========================================================
   NOT INCLUDED ICON — X
========================================================= */

.mhs-content h2.mhs-excluded-title::before {
    content: "\f00d" !important;

    color: #ffffff !important;

    background: #c84a43 !important;

    border: 0 !important;

    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;

    font-size: 14px !important;
}


/* =========================================================
   NOT INCLUDED CONTENT
========================================================= */

.mhs-content h2.mhs-excluded-title + p {
    margin-top: 0 !important;

    padding: 22px 25px !important;

    color: #514846 !important;

    background: #fffafa !important;

    border-left: 3px solid #c84a43 !important;

    border-radius: 0 10px 10px 0 !important;
}


/* =========================================================
   LINE BREAKS
========================================================= */

.mhs-content h2.mhs-included-title + p br,
.mhs-content h2.mhs-excluded-title + p br {
    line-height: 2;
}


/* =========================================================
   IMAGES
========================================================= */

.mhs-content img {
    display: block;

    max-width: 100%;
    height: auto;

    border-radius: 10px;
}


/* =========================================================
   GUTENBERG / BLOCKSY
========================================================= */

.mhs-content .wp-block-heading,
.mhs-content .wp-block-paragraph {
    max-width: 100%;
}


/* =========================================================
   SELECTION
========================================================= */

.mhs-single-wrapper ::selection {
    background: #DFC16C;
    color: #24211c;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .mhs-hero {
        min-height: 580px;
    }

    .mhs-hero-content {
        padding: 100px 28px 45px;
    }

    .mhs-content {
        padding-left: 22px;
        padding-right: 22px;
    }

    .mhs-content h2 {
        font-size: 25px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 640px) {

    .mhs-hero {
        min-height: 560px;
    }

    .mhs-hero-content {
        padding: 100px 20px 35px;
    }

    .mhs-private-badge {
        margin-bottom: 14px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .mhs-hero-title {
        margin-bottom: 28px !important;

        font-size: 34px !important;
        line-height: 1.12 !important;

        letter-spacing: -.5px;
    }


    /* INFO */

    .mhs-tour-info {
        width: 100%;
        display: block;
    }

    .mhs-info-item {
        width: 100%;
        min-width: 0;

        margin: 0;
        padding: 14px 0;

        border-right: 0;

        border-bottom: 1px solid rgba(255,255,255,.22);
    }

    .mhs-info-item:last-child {
        border-bottom: 0;
    }


    /* CONTENT */

    .mhs-content {
        padding: 45px 18px 0;
    }

    .mhs-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .mhs-content > p:first-child {
        margin-bottom: 30px;
        padding-bottom: 27px;

        font-size: 17px;
        line-height: 1.8;
    }


    /* DAY TITLE */

    .mhs-content h2.mhs-day-title {
        display: flex !important;

        align-items: center !important;

        gap: 10px !important;

        width: 100% !important;

        min-height: 64px !important;

        padding: 14px 16px !important;

        color: #302d27 !important;

        -webkit-text-fill-color: #302d27 !important;

        font-family: inherit !important;

        font-size: 21px !important;

        font-weight: 700 !important;

        line-height: 1.35 !important;

        white-space: normal !important;

        overflow: visible !important;

        text-overflow: clip !important;
    }


    /* DAY LOCATION ICON */

    .mhs-content h2.mhs-day-title::before {
        content: "\f3c5" !important;

        display: inline-flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 30px !important;
        min-width: 30px !important;

        height: 30px !important;

        flex: 0 0 30px !important;

        color: #c5a24c !important;

        background: #fffdf9 !important;

        border: 1px solid #e4d5af !important;

        border-radius: 50% !important;

        font-family: "Font Awesome 6 Free" !important;

        font-weight: 900 !important;

        font-size: 12px !important;

        line-height: 1 !important;
    }


    /* DAY DESCRIPTION MOBILE */

    .mhs-content h2.mhs-day-title + p.wp-block-paragraph,
    .mhs-content h2.mhs-day-title + p.wp-block-paragraph + p.wp-block-paragraph,
    .mhs-content h2.mhs-day-title + p.wp-block-paragraph + p.wp-block-paragraph + p.wp-block-paragraph {

        padding: 18px 18px !important;

        margin-bottom: 16px !important;

        font-size: 16px !important;

        line-height: 1.8 !important;

        border-radius: 0 8px 8px 8px !important;
    }
}
.mhs-content > p.wp-block-paragraph:first-child {
    background: #fdfbf7 !important;
    padding: 28px 32px !important;
    border-left: 4px solid #b8863b !important;
    border-radius: 12px !important;
    margin-bottom: 35px !important;
    color: #4a4742 !important;
    line-height: 1.8 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
}
