.blog-title h4 {
    font-size: 40px;
    line-height: 1.1em;
}

/* list-view-layout Style start here */
.list-view-layout {
    padding: 60px 0 30px 0;
}

.list-view-layout .deal-item {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 32px;
    box-shadow: 0 0 3px 0px #00000020;
    padding: 15px 0;
    transition: 0.3s all;
}

.list-view-layout .deal-item:hover {
    box-shadow: 0 0 6px 0px #00000020;
    transition: 0.3s all;
}

.list-view-layout .deal-item .deal-image {
    max-width: 38%;
    width: 100%;
    padding: 0 15px;
    transition: 0.6s all;
    overflow: hidden;
}

.list-view-layout .deal-item:hover .deal-image {
    transform: scale3d(1.05, 1.05, 1.05);
    transition: 0.6s all;
}

.list-view-layout .deal-item .deal-content {
    max-width: 62%;
    width: 100%;
    padding: 0 15px;
    text-align: left;
}

.list-view-layout .deal-item .deal-content .deal-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 9;
    overflow: hidden;
}

.list-view-layout .deal-item .deal-content .deal-title {
    margin: 0;
}

.deal-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.deal-button {
    color: rgb(255, 255, 255);
    background-color: rgb(190, 179, 147);
    padding: 13px 36px !important;
    border: 1px solid transparent;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    outline: 0;
    font-size: 15px;
    line-height: 2em;
    letter-spacing: .3em;
    font-weight: 400;
    text-transform: uppercase;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    -webkit-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    -o-transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out;
    padding: 14px 82px;
    cursor: pointer;
}

.deal-button:hover {
    color: #fff;
    background-color: rgb(170, 162, 131);
}

.single-post .list-view-layout .deal-item .deal-image {
    max-width: 25%;
}

@media (max-width:1367px) {
    .list-view-layout .deal-item .deal-image {
        max-width: 29%;
    }

    .single-post .list-view-layout .deal-item .deal-image {
        max-width: 35%;
    }

    .list-view-layout .deal-item .deal-content {
        max-width: 71%;
    }
}

@media (max-width:767px) {
    .list-view-layout .deal-item .deal-image {
        max-width: 100%;
        width: auto;
    }

    .list-view-layout .deal-item .deal-content {
        max-width: 100%;
        width: auto;
    }

    .list-view-layout .deal-item {
        flex-direction: column;
    }

    .grid-view-layout .deal-item .deal-content .deal-description {
        height: auto;
    }

    .deal-button {
        padding: 6px 12px !important;
        font-size: 12px;
    }

    .blog-title h4 {
        font-size: 20px;
    }

    .list-view-layout {
        padding: 30px 0 30px;
    }
}

@media (max-width:480px) {
    .deal-buttons {
        flex-direction: column;
        text-align: center;
    }

}

/* list-view-layout Style end here */


/* Grid-layout Style Start here */
.grid-view-layout {
    padding: 30px 0 60px 0;
    margin: 0 -15px;
}

.grid-view-layout .deals-container {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    --grid-layout-gap: 20px;
    --grid-column-count: 3;
    --grid-item--min-width: 230px;
    --gap-count: calc(var(--grid-column-count) - 1);
    --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
    --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item--min-width), var(--grid-item--max-width)), 1fr));
    grid-gap: var(--grid-layout-gap);
}

.grid-view-layout .deal-item .deal-content {
    padding: 10px 10px 50px 10px;
    position: relative;
    text-align: left;
}

.grid-view-layout .deal-buttons {
    position: absolute;
    bottom: 10px;
}

.grid-view-layout .deal-item {
    border: 0.5px solid #beb39350;
    box-shadow: 0 0 3px 0px #00000020;
    transition: 0.3s all;
}

.grid-view-layout .deal-item:hover {
    box-shadow: 0 0 6px 0px #00000020;
    transition: 0.3s all;
}

.grid-view-layout .deal-item .deal-image {
    overflow: hidden;
}

.grid-view-layout .deal-item .deal-image,
.grid-view-layout .deal-item .deal-image img {
    aspect-ratio: 1/1;
    transition: 1s all;
}

.grid-view-layout .deal-item:hover .deal-image img {
    transform: scale3d(1.05, 1.05, 1.05);
    transition: 1s all;
}

.grid-view-layout .deal-item {
    display: flex;
    flex-direction: column;
}

.grid-view-layout .deal-item:hover {
    box-shadow: 0 0 8px 0px #00000020;
}

.grid-view-layout .deal-item .deal-content .deal-title {
    font-size: 24px;
    line-height: 1.42em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 0;
}

.grid-view-layout .deal-item .deal-content .deal-subtitle {
    margin: 0;
    height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.grid-view-layout .deal-item .deal-content .deal-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* -webkit-line-clamp: 6; */
    overflow: hidden;
    min-height: 170px;
}

.grid-view-layout .deal-button {
    padding: 6px 18px !important;
    font-size: 12px;
}

/* Grid-layout Style end here */

.read-more-btn {
    color: #beb393;
    /*        color: #000;*/
    font-weight: 600;
    padding: 5px 0;
    display: block;
    font-family: Lato, sans-serif;
    font-size: 14px;
    cursor: pointer;
}


/* Filter Style start here  */
.deals-category-filter {
    margin-bottom: 30px;
}

.deals-filter-form {
    /*   padding: 30px 30px;
    background: #ffffff;
    border-radius: 5px;
    border: 0;
    margin-left: -15px;
    margin-right: -15px;
    box-shadow: 0 15px 20px 0px #00000010;*/
}

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.filter-row .filter-select {}

.filter-select {
    padding: 8px 12px;
    border: 1px solid #aaa283;
    border-radius: 2px;
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    background: transparent;
    outline: none;
    color: #00000090;
}

.filter-submit {
    padding: 8px 20px;
    background: #beb393;
    color: #fff;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    min-width: 19%;
    max-width: 19%;
    width: 100%;
}

.filter-submit:hover {
    background: #aaa283;
}

/* Loading spinner animation */
.global-loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 5px solid #fff;
    animation: spin 1s linear infinite;
}

.spinner-btn {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 2px solid #fff;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.error {
    color: #e74c3c;
    text-align: center;
    padding: 20px;
    font-weight: bold;
}


@media (max-width:1024px) {
    .filter-row {
        justify-content: center;
    }

    .filter-select {}

    .filter-submit {}
}

@media (max-width:768px) {
    .deals-filter-form {}
}

@media (max-width:600px) {
    .filter-select {}

    .filter-submit {
        min-width: 100%;
        max-width: 100%;
    }

    .filter-row {
        justify-content: center;
        gap: 15px;
    }

    .deals-filter-form {
        margin-left: 0;
        margin-right: 0;
    }

    .list-view-layout .deal-item {
        margin-left: 0;
        margin-right: 0;
    }

    .blog-title h4 {
        text-align: center;
    }
}

@media (max-width:480px) {
    .deals-filter-form {
        padding: 20px 15px;
    }
}

@media (max-width:400px) {
    .filter-select {
        min-width: 100%;
        max-width: 100%;
    }

    .filter-submit {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Filter Style End here  */


/* Blog Page Filter Start */
.coco-filters-container {
    margin-bottom: 50px;
    position: relative;
    padding: 30px;
    background: #fbfaf9;
    border-radius: 5px;
    border: 0;
    box-shadow: 0 15px 20px 0px #00000010;
}

.coco-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.coco-filter-title {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.coco-search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #007bff;
    padding: 5px;
}

.coco-search-toggle:hover {
    color: #0056b3;
}

.coco-search-container {
    display: none;
    margin-bottom: 15px;
}

.coco-search-container.visible {
    display: block;
}

.coco-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.coco-filter-group {
    flex: 1;
    min-width: 200px;
}

.coco-filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    text-transform: capitalize;
}

.coco-filter-header .coco-search-toggle {
    background-color: #aaa283;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 5px;
}

.coco-filter-group select,
.coco-filter-group input[type="text"] {
    width: 100%;
    font-size: 14px;
    padding: 10px 12px;
    border: 1px solid #aaa283;
    border-radius: 2px;
    background: #ffffff;
    outline: none;
    color: #00000090;
}

.coco-search-toggle svg {
    stroke: #fff;
    width: 30px !important;
    height: 30px !important;
}

.coco-filter-button {
    font-size: 16px;
    transition: background .3s;
    padding: 8px 20px;
    background: #beb393;
    color: #fff;
    border: none;
    border-radius: 2px;
}

.coco-filter-button:hover {
    background: #aaa283;
}

.coco-filter-actions {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
}



.eltd-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.eltd-bli-content {
    padding: 20px;
}

.eltd-blog-pag-load-more {
    text-align: center;
    margin-top: 30px;
}

.eltd-btn-loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.eltd-btn-loading:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width:1024px) {
    .coco-filter-group {
        flex: 1;
        min-width: 40%;
    }
}

@media (max-width: 768px) {
    .coco-filter-row {
        flex-direction: column;
        gap: 15px;
    }

    .coco-filter-actions {
        flex-direction: column;
    }


    .coco-filter-group {
        min-width: 100%;
    }
}

/* Blog Page Filter End */


@media (max-width: 1200px) {
    .grid-view-layout .deal-buttons {
        position: relative;
        bottom: -20px;
        margin-top: 30px;
        width: auto;
        flex-direction: column;
        text-align: center;
    }
}

#post-13813 .reiseessentials .slide {
    margin-left: 0 !important;
}


/* ===================================
   SINGLE BLOG PAGE REDESIGN
=================================== */

/* Content Width */
.single-post .eltd-page-content-holder {
    max-width: 1200px;
    margin: 0 auto;
    float: none;
}

.single-post .eltd-post-text-main {
    max-width: 760px;
    margin: 0 auto;
}

/* Typography */
.single-post .eltd-post-text-main p {
    font-family: "Lato", sans-serif !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.85 !important;
    letter-spacing: .005em !important;
    color: #1a1611 !important;
}

.single-post .eltd-post-text-main h2 {
    font-family: "DidotLT", "Didot LT Std", "Bodoni Moda", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: clamp(28px, 3.4vw, 40px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.003em !important;
    margin: 0 0 14px !important;
    text-align: center;
}

.single-post .eltd-post-text-main h3 {
    font-family: "DidotLT", "Didot LT Std", "Bodoni Moda", Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: clamp(24px, 3.4vw, 32px) !important;
    line-height: 1.18 !important;
    letter-spacing: -.003em !important;
    margin: 0 0 14px !important;
    text-align: center;
}

/* Intro Paragraph */
.single-post .eltd-post-text-main>section>.vc_row:first-child+.vc_row p {
    font-size: 24px;
    text-align: center;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}

/* Images */
.single-post .wpb_single_image {
    margin: 60px 0;
}

.single-post .wpb_single_image img {
    border-radius: 12px;
}

/* Remove Sidebar */
.single-post .eltd-grid-col-3 {
    display: none;
}

.single-post .eltd-grid-col-9 {
    width: 100%;
}

/* Center Special Content Blocks */
/* Center inner content blocks on all blog posts */

.single-post .eltd-post-text-main .vc_row {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* .single-post .eltd-post-text-main .wpb_text_column {
    text-align: center;
} */

/* ===================================
   HIDE OLD BLOG ELEMENTS
=================================== */

.single-post .eltd-title-holder,
.single-post .eltd-post-info-top,
.single-post .eltd-iwt {
    display: none !important;
}

/* ===================================
   NEW HERO SECTION
=================================== */

.single-post .travel-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 20px;
}

.single-post .travel-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.single-post .travel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.single-post .travel-location {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 25px;
}

.single-post .travel-location:before,
.single-post .travel-location:after {
    content: "";
    width: 60px;
    height: 1px;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 15px;
}

.single-post .travel-title {
    color: #fff !important;
    font-size: 72px;
    line-height: 1.1;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
}

.single-post .travel-intro {
    font-size: 28px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #fff;
}

.single-post .travel-meta {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

@media (max-width: 768px) {

    .single-post .travel-hero {
        min-height: 80vh;
        padding: 60px 20px;
    }

    .single-post .travel-title {
        font-size: 42px;
    }

    .single-post .travel-intro {
        font-size: 18px;
        line-height: 1.6;
    }

    .single-post .eltd-post-text-main p {
        font-size: 18px;
    }

    .single-post .eltd-post-text-main h2 {
        font-size: 32px;
    }

    .single-post .eltd-post-text-main h3 {
        font-size: 24px;
    }
}

.single-post .eltd-blog-list-holder {
    width: 100% !important;
}

.single-post .eltd-post-content .eltd-post-text {
    justify-content: center;
    align-items: center;
    display: flex !important;
    flex-direction: column;
}

.single-post .eltd-content {
    background-color: #fbfaf9 !important;
}

/*End Css For single Blog page redesign.*/