/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root {
    --tin-color-primary: #003893;
    --tin-color-primary-light: #EEF4FF;

    --tin-color-accent: #DC143C;
    --tin-color-accent-light: #FFF1F4;

    --tin-color-white: #FFFFFF;
    --tin-color-gray-light: #F8FAFC;
    --tin-color-gray: #E2E8F0;

    --tin-color-text: #1E293B;
    --tin-color-text-light: #64748B;
}

@keyframes blink {
  0%, 100% {opacity: 1;}
  50% {opacity: 0;}
}

@keyframes carousel {
    from {
        translate: 0;
    }
    to {
        translate: -100%;
    }
}

@keyframes down {
	0% {
        opacity: 0;
		transform: translate(0);
	}
	40% {
        opacity: 1;
		transform: translateY(10px);
	}
    80% {
        opacity: 0;
		transform: translateY(20px);
	}
}

.img-aspect-ratio-4-3 {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

.img-aspect-ratio-3-4 {
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
}

.img-aspect-ratio-1-1 {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}

.img-aspect-ratio-16-9 {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
}

.img-aspect-ratio-3-2 {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
}

.img-aspect-ratio-9-16 {
    aspect-ratio: 9/16;
    object-fit: cover;
    object-position: center;
}

.img-aspect-ratio-2-3 {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
}

.img-aspect-ratio-21-9 {
    aspect-ratio: 21/9;
    object-fit: cover;
    object-position: center;
}

.tin-hide-overflow {
    overflow: hidden;
}


.tin-section.tin-page-title {
    .post-header.entry-header {
        .post-title.entry-title {
            margin: 0;
        }
    }
}

.section-header {
    margin-bottom: 30px;
    /*text-align: center;*/
    .section-subtitle {
        background-color: #fde8ec;
        border-radius: 100px;
        color: #dC143C;
        display: inline-block;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 10px;
        padding: 10px 15px;
    }

    .section-title {
        border: none;
        font-size: 40px;
        margin: 0;
    }
}


body {
    &.post-type-archive-tin_destination,
    &.post-type-archive-tin_experience {
        

        #site-divider {

            &.has-no-sidebar {
                main.site-main {
                    max-width: 100%;

                    .tin-posts-list {
                        grid-template-columns: repeat(3, 1fr);
                    }
                }
            }
        }
    }
}

.page-header-content-container {
    margin: 0 auto;
    max-width: 900px;

    .page-header {
        .page-title {
            font-size: 36px !important;
        }
    }

    .page-content {
        font-size: 1.125rem;
    }
}


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

    @media ( max-width: 991px ) {
        grid-template-columns: repeat(2, 1fr);
    }

    @media ( max-width: 575px ) {
        gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }

    article {
        border: 1px solid #eeeeee;
        border-radius: 5px;
        overflow: hidden;
        position: relative;
        transition-duration: 0.3s;
        
        .thumbnail-block {
            margin: 0;
            overflow: hidden;

            a.post-thumbnail-link {
                display: block;

                img {
                    aspect-ratio: 4/3;
                    border-radius: 0;
                    object-fit: cover;
                    object-position: center;
                    transition-duration: 0.3s;

                    @media ( max-width: 575px ) {
                        aspect-ratio: 16/9;
                    }
                }
            }
        }

        .post-content {
            margin: 0;
            padding: 20px;

            .post-categories {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;

                a {
                    background-color: var(--tin-color-primary-light);
                    border-radius: 3px;
                    color: var(--tin-color-primary);
                    display: inline-block;
                    font-size: 0.875rem;
                    font-weight: 600;
                    padding: 3px 8px;
                }
            }

            .post-title {
                font-size: 1.125rem;
                margin: 0;

                @media ( max-width: 575px ) {
                    font-size: 1rem;
                }
            }
        }

        &:hover {
            box-shadow: 0 0 15px 5px rgba(0,0,0,0.1);
            transform: translateY(-5px);

            .thumbnail-block {
                a.post-thumbnail-link {
                    img {
                        transform: scale(1.05);
                    }
                }
            }
        }
    }
}

.site-divider.has-sidebar {
    .tin-posts-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tin-companion-breadcrumbs-title {
    background-color: #1e2e61;
    color: #fff;
    padding: 75px 0;
    text-align: center;

    .breadcrumb {
        margin-top: 0;

        .trail-items {
            justify-content: center;
        }

        .trail-items .trail-item a {
            color: inherit;
        }

        .trail-items .trail-item:not(.trail-end)::after {
            color: inherit;
        }
    }

    .page-header {
        margin-top: 15px;
        .page-title {
            color: inherit;
            letter-spacing: 1px;
            margin: 0;
            text-transform: uppercase;
        }
    }
}

body.tax-tin_destination_cat #primary .page-header .tax-page-title {
    font-size: 44px;
}

.tin-tax-content {
    margin-bottom: 40px;
}


/*********************************************************
 * Article Overlay Design
 ********************************************************/ 
article {
    .post-thumbnail-container {
        .post-thumbnail-link {
            border-radius: 5px;
            display: block;
            overflow: hidden;
            img {
                object-fit: cover;
                object-position: center;
                transition: transform 0.3s ease-in-out;
            }
        }
    }
    .post-content {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
        row-gap: 10px;
        h3.post-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin: 0;
            a {
                color: inherit;
            }
        }
        .post-excerpt {
            p {
                margin: 0;
            }
        }
    }
    &[data-content_overlay="yes"] {
        position: relative;
        .post-content {
            background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 1) 100%);
            border-radius: 5px;
            bottom: 0;
            color: #ffffff;
            left: 0;
            overflow: hidden;
            padding: 30px 15px 15px;
            position: absolute;
            right: 0;
            h3.post-title {
                a {
                    color: #ffffff;
                }
            }
        }
    }
    &:hover {
        .post-thumbnail-container {
            .post-thumbnail-link {
                img {
                    transform: scale(1.1);
                }
            }
        }
    }
}

/*********************************************************
    Hero
*********************************************************/
.tin-hero-section {
    overflow: hidden;
    position: relative;

    .tin-section-inner {
        min-height: 720px;
        position: relative;

        @media (max-width: 1023px) {
            min-height: 480px;
        }

        @media (max-width: 767px) {
            min-height: 480px;
        }

        @media (max-width: 575px) {
            min-height: 360px;
        }
    }

    .tin-hero-image {
        inset: 0;
        position: absolute;

        img {
            height: 100%;
            object-fit: cover;
            object-position: center;
            width: 100%;
        }
    }

    &.tin-hero-video {

        video {
            height: 100%;
            inset: 0;
            object-fit: cover;
            object-position: center;
            position: absolute;
            width: 100%;
        }
    }
}

.tin-hero-content {
    align-items: flex-end;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
    color: #ffffff;
    display: flex;
    inset: 0;
    padding-bottom: 50px;
    position: absolute;
    z-index: 1;

    @media (max-width: 991px) {
        padding-bottom: 40px;
    }

    @media (max-width: 575px) {
        padding-bottom: 30px;
    }

    .hero-header-content {
        color: #ffffff;
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;
        text-align: center;

        .term-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 10px;

            a {
                backdrop-filter: blur(5px);
                background-color: rgb(255 255 255 / 0.2);
                border: 1px solid #eeeeee;
                border-radius: 100px;
                color: #ffffff;
                display: inline-flex;
                font-size: 0.875rem;
                padding: 2px 12px;
                text-decoration: none;

                &:hover {
                    background-color: rgb(255 255 255 / 0.4);
                }

                &.parent-term {
                    backdrop-filter: blur(5px);
                    background-color: var(--tin-color-accent);
                    border-color: var(--tin-color-accent);

                    &:hover {
                        background-color: rgb(255 255 255 / 0.4);
                        border-color: #eeeeee;
                    }
                }
            }
        }
        
        .post-title,
        .page-title {
            color: #FFFFFF;
            font-size: 3.5rem;
            font-weight: 700;
            margin: 0;

            @media ( max-width: 1023px ) {
                font-size: 32px;
            }

            @media ( max-width: 575px ) {
                font-size: 28px;
            }
        }

        .post-excerpt {
            margin-top: 15px;

            @media (max-width: 575px) {
                margin-top: 10px;
            }
            p {
                margin: 0;
            }
        }
    }
}

.tin-hero-media-control {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;

    @media (max-width: 767px) {
        right: 15px;
    }
}

.tin-hero-media-control button {
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgb(255 255 255 / 0.2);
    border: 1px solid rgb(255 255 255 / 0.5);
    border-radius: 100px;
    color: #ffffff;
    display: flex;
    font-size: 20px;
    height: 50px;
    justify-content: center;
    transition: all 0.3s;
    width: 50px;

    svg {
        height: 24px;
        width: 24px;
    }

    @media (max-width: 767px) {
        height: 40px;
        width: 40px;

        svg {
            height: 20px;
            width: 20px;
        }
    }
}

.tin-hero-media-control button:hover,
.tin-hero-media-control button:focus {
    background-color: rgb(255 255 255 / 0.4);
    border: 1px solid rgb(255 255 255 / 0.5);
    color: #ffffff;
}


.tin-hero-gallery {
    height: 100%;
    img {
        height: 100%;
        object-fit: cover;
        object-position: center;
        width: 100%;
    }
}

.tin-hero-gallery {

    .swiper-pagination {
        .swiper-pagination-bullet {
            background-color: rgb(255 255 255);
            border-radius: 100px;
            width: 10px;

            &.swiper-pagination-bullet-active {
                background-color: var(--tin-color-accent);
                width: 30px;
            }
        }
    }
}

/*********************************************************
    Breadcrumbs
*********************************************************/
.tin-travel-breadcrumbs {
    margin-bottom: 20px;
    margin-top: 20px;

    .breadcrumb {
        margin-top: 0;
    }
}


/*********************************************************
    Travel Section
*********************************************************/
.tin-section-travel {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 20px;

    .tin-section-heading {
        margin-bottom: 20px;
        h2 {
            font-size: 1.125rem;
            margin: 0;
        }
    }

    @media (max-width: 575px) {
        padding: 15px;
    }
}

/*********************************************************
    Highlights
*********************************************************/
.tin-travel-highlights-section {

    .tin-section-inner {

        .tin-section-content {
            ul.tin-travel-highlights {
                display: flex;
                flex-direction: column;
                list-style: none;
                margin: 0;
                row-gap: 10px;

                li.tin-travel-highlight {
                    column-gap: 10px;
                    display: flex;
                    font-size: 1rem;

                    .tin-travel-highlight-icon {
                        line-height: 0;
                        margin-top: 5px;

                        svg {
                            fill: #ff8220;
                            height: 16px;
                            width: 16px;
                        }
                    }
                }
            }
        }
    }
}

/*********************************************************
	Overview
*********************************************************/
.tin-travel-overview-section {

    .prose {
        font-size: 1rem;
        overflow: hidden;
        position: relative;
    }
}



/*********************************************************
    Attractions
*********************************************************/
.tin-travel-attractions-section {

    .tin-section-heading {
        align-items: center;
        column-gap: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 15px;

        .tin-travel-swiper-navs {
            align-items: center;
            column-gap: 5px;
            display: flex;

            .tin-travel-attractions-slider-prev,
            .tin-travel-attractions-slider-next {
                align-items: center;
                background-color: var(--tin-color-accent-light);
                border: 1px solid #eeeeee;
                border-radius: 100px;
                display: flex;
                height: 35px;
                justify-content: center;
                left: 0;
                margin-top: auto;
                position: relative;
                right: 0;
                top: 0;
                width: 35px;

                &::after {
                    color: var(--tin-color-accent);
                    font-size: 14px;
                }
            }
        }
    }

    .tin-travel-attractions {

        article {
            border-radius: 5px;
            box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.2);
            overflow: hidden;
            position: relative;

            .post-thumbnail-container {

                a.post-thumbnail-link {
                    img {
                        aspect-ratio: 3/4;
                        object-fit: cover;
                        object-position: center;
                    }
                }
            }

            .post-content {
                background: #000000;
                background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
                bottom: 0;
                font-size: 1.125rem;
                left: 0;
                margin-top: 0px;
                padding: 30px 15px 15px;
                position: absolute;
                right: 0;

                .post-title {
                    font-size: 1.125rem;

                    a {
                        color: #FFFFFF;
                    }
                }
            }

            
        }

        .tin-travel-attractions-slider-pagination {
            margin-top: 15px;
            position: relative;

            .swiper-pagination-bullet {
                height: 10px;
                width: 10px;
            }

            .swiper-pagination-bullet-active {
                background-color: var(--tin-color-accent);
                
            }
        }
    }
}


/*********************************************************
    Experiences
*********************************************************/
.item__header {
    align-items: center;
    color: inherit;
    column-gap: 10px;
    display: flex;
    font-weight: 500;
    justify-content: space-between;

    .accordion__icon {
        line-height: 0;
        transition: transform 0.3s ease-in;

        svg {
            height: 1rem;
            width: 1rem;
        }
    }
}

.item__content {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms ease;
}

.accordion__item.active .item__header .accordion__icon {
    transform: rotate(180deg);
}

.item__answer {
  line-height: 150%;
  opacity: 0.8;
}

.accordion-content-inner {

    & > :last-child {
        margin-bottom: 0;
    }
}

.tin-travel-experiences-section {

    .tin-section-heading {
        margin-bottom: 30px;

        h2 {
            margin: 0;
        }
    }

    .tin-section-content {
        display: flex;
        flex-direction: column;
        row-gap: 15px;

        article {
            .accordion__item {
                border-bottom: 1px solid #EEEEEE;
                padding-bottom: 10px;
                transition: all 0.3s ease-in-out;
                
                .item__header {
                    outline: none;
                    text-decoration: none;

                    &:hover {
                        color: inherit;
                    }
                }

                .accordion-content-inner {
                    background-color: var(--tin-color-primary-light);
                    border: 1px solid rgb(238, 238, 238);
                    border-radius: 5px;
                    column-gap: 30px;
                    display: grid;
                    grid-template-columns: 1fr;
                    margin-top: 15px;
                    padding: 20px;
                    row-gap: 15px;

                    @media (max-width: 767px) {
                        padding: 15px;
                    }
                }

                &.active {
                    .item__header {
                        text-decoration: none;
                    }
                }
            }

            &:last-child {
                .accordion__item {
                    border-bottom: none;
                    padding-bottom: 0px;
                }
            }
        }

        article.has-post-thumbnail {
            .accordion-content-inner {
                grid-template-columns: 2fr 1fr;

                .thumbnail-block {
                    border-radius: 5px;
                    overflow: hidden;
                    img {
                        aspect-ratio: 4/3;
                        object-fit: cover;
                        object-position: center;
                    }
                }

                @media (max-width: 767px) {
                    grid-template-columns: 1fr;

                    .content-block {
                        order: 2;
                    }

                    .thumbnail-block {
                        order: 1;

                        img {
                            aspect-ratio: 16/9;
                        }
                    }
                }
            }
        }
    }
}


/*********************************************************
	Related Destinations
*********************************************************/
.tin-section-travel-related {
    padding-bottom: 50px;

    .tin-section-heading {
        align-items: center;
        display: flex;
        gap: 30px;
        justify-content: space-between;
        margin-bottom: 20px;

        h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            text-transform: capitalize;

            @media(max-width: 575px) {
                font-size: 1.25rem;
            }
        }

        .tin-travel-swiper-navs {
            align-items: center;
            column-gap: 5px;
            display: flex;

            .swiper-button-prev,
            .swiper-button-next {
                align-items: center;
                background-color: var(--tin-color-primary-light);
                border: 1px solid #E5E5E5;
                border-radius: 100px;
                display: flex;
                height: 40px;
                justify-content: center;
                left: 0;
                margin-top: auto;
                position: relative;
                right: 0;
                top: 0;
                width: 40px;

                &::after {
                    color: var(--tin-color-primary);
                    font-size: 14px;
                }
            }
        }
    }

    .tin-section-content {
        article {
            background-color: var(--tin-color-primary-light);
            border: 1px solid #eeeeee;
            border-radius: 5px;
            overflow: hidden;

            .thumbnail-block {
                box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.2);
                overflow: hidden;

                .post-thumbnail-link {
                    display: block;
                    line-height: 0;

                    img {
                        aspect-ratio: 4/3;
                        object-fit: cover;
                        object-position: center;
                        transform: scale(1);
                        transition: transform 0.3s ease-in-out;
                    }

                    &:hover {
                        img {
                            transform: scale(1.1);
                        }
                    }
                }
            }

            .post-content {
                margin: 0;
                padding: 15px;

                .post-title {
                    font-size: 1rem;
                }

                .post-excerpt {
                    font-size: 0.875rem;

                    p {
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        overflow: hidden;
                    }
                }
            }
        }
        
    }
}



/*********************************************************
    Map & Itinerary
*********************************************************/
.tin-travel-map-itinerary {
    padding-bottom: 50px;
    padding-top: 50px;

    @media(max-width: 767px) {
        padding-left: 20px;
        padding-right: 20px;
    }

    .tin-section-heading {
        margin-bottom: 40px;
        text-align: center;

        h2 {
            font-size: 1.875rem;
            font-weight: 600;
            margin-bottom: 0;
            text-transform: capitalize;

            @media(max-width: 575px) {
                font-size: 1.25rem;
            }
        }
    }

    .tin-section-content {
        /*display: flex;
        flex-direction: row-reverse;
        gap: 50px;
        padding-left: 50px;
        padding-right: 50px;*/
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;

        @media(min-width: 768px) {
            padding-left: 50px;
            padding-right: 50px;
        }

        .tin-travel-map {
            margin-bottom: 40px;

            @media(max-width: 575px) {
                margin-bottom: 30px;
            }

            &.image-lightbox-wrapper {
                border-radius: 10px;
                position: relative;
                overflow: hidden;
            }

            &.image-lightbox-wrapper img {
                display: block;
                width: 100%;
                height: auto;
                border-radius: 10px;
                overflow: hidden;
            }

            .image-lightbox-link {
                position: relative;
                display: block;
            }

            .image-lightbox-icon {
                line-height: 0;
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0.35);
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: opacity .25s ease;
                color: #fff;
                font-size: 26px;

                svg {
                    
                    height: 32px;
                    stroke: #ffffff;
                    stroke-width: 0.6;
                    width: 32px;
                }
            }

            .image-lightbox-link:hover .image-lightbox-icon {
                opacity: 1;
            }

            
        }

        .tin-travel-itinerary {

            .itinerary-experience-accordion {

                display: flex;
                flex-direction: column;
                gap: 40px;

                @media(max-width: 575px) {
                    gap: 30px;
                }

                .itinerary-item {
                    background-color: #ffffff;
                    border: 1px solid #b3d0ff;
                    border-radius: 10px;
                    padding: 15px;
                    position: relative;

                    @media(max-width: 575px) {
                        padding: 10px;
                    }

                    &::after {
                        background: repeating-linear-gradient(180deg,#b3d0ff 0,#b3d0ff 6px,transparent 0,transparent 12px);
                        background-position: 80%;
                        background-repeat: no-repeat;
                        background-size: 2px 100%;
                        content: "";
                        display: block;
                        height: 100px;
                        left: 50%;
                        position: absolute;
                        top: 100%;
                        width: 1px;
                    }

                    &:last-child {

                        &::after {
                            display: none;
                        }
                    }
                }

                .itinerary-header {
                    display: flex;
                    align-items: center;
                    gap: 15px;
                    cursor: pointer;
                }

                .itinerary-dot {
                    align-items: center;
                    background: #fff;
                    border: 2px solid #444444;
                    border-radius: 50%;
                    display: flex;
                    height: 40px;
                    justify-content: center;
                    line-height: 0;
                    width: 40px;
                    z-index: 1;

                    svg {
                        height: 24px;
                        stroke: #444444;
                        stroke-width: 1.8;
                        width: 24px;
                    }
                }

                .itinerary-item.active .itinerary-dot {
                    background: var(--tin-secondary-color);
                    border-color: var(--tin-secondary-color);

                    svg {
                        stroke: #ffffff;
                    }
                }

                .itinerary-title {
                    flex: 1;
                    font-size: 1.125rem;
                    font-weight: 600;

                    @media(max-width: 575px) {
                        font-size: 1rem;
                    }
                }

                .itinerary-toggle {
                    line-height: 0;
                    svg {
                        height: 20px;
                        stroke-width: 1.8;
                        width: 20px;
                    }
                }

                .itinerary-item.active .itinerary-toggle {
                    svg {
                        transform: rotate(-180deg);
                    }
                }

                .itinerary-content {
                    display: none;
                    font-size: 1.125rem;
                    padding-left: 55px;
                    padding-right: 20px;
                    padding-top: 10px;
                }

                .itinerary-item.active .itinerary-content {
                    display: block;
                }
            }
        }
    }
}


/*********************************************************
    FAQs
*********************************************************/
.tin-travel-faqs-section {

    .tin-section-content {

        .tin-accordion-wrapper {
            display: flex;
            flex-direction: column;
            row-gap: 10px;

            .accordion__item {
                border-bottom: 1px solid #EEEEEE;
                padding-bottom: 10px;
                transition: all 0.3s ease-in-out;

                &:last-child {
                    border-bottom: none;
                    padding-bottom: 0;
                }
                
                .item__header {
                    outline: none;
                    text-decoration: none;

                    &:hover {
                        color: inherit;
                    }
                }

                .accordion-content-inner {
                    background-color: var(--tin-color-primary-light);
                    border: 1px solid #eeeeee;
                    border-radius: 5px;
                    margin-top: 15px;
                    padding: 15px;
                }

                &.active {
                    .item__header {
                        text-decoration: none;
                    }
                }
            }
        }
        
    }
}


/*********************************************************
    Recommended Experiences
*********************************************************/
.tin-related-experiences-section {
    padding-bottom: 40px;
    padding-top: 40px;

    .tin-section-heading {
        margin-bottom: 20px;

        @media(max-width: 575px) {
            margin-bottom: 30px;
        }

        h2 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            text-transform: capitalize;

            @media(max-width: 575px) {
                font-size: 1.25rem;
            }
        }
    }

    .tin-section-content {
        .tin-posts-list {
            font-size: 1.125rem;
        }
    }
}


/*********************************************************
	Map
*********************************************************/


/*******************************************************************************************
 * 
 * Event widget
 * 
 ******************************************************************************************/
.tin-section-events-wrapper {
    &.hide {
        display: none;
    }
}
.tin-section-events {
    .tin-section-header {
        position: relative;
        .tin-section-title-wrapper {
            align-items: center;
            display: flex;
            flex-direction: row;
            gap: 10px;
            .tin-section-header-title {
                margin: 0;
            }
        }
    }
    .tin-section-content {
        ul.tin-events-list {
            display: grid;
            flex-direction: column;
            gap: 30px;
            grid-template-columns: repeat(2,1fr);
            list-style: none;
            margin: 0;
            padding: 0;
            li.tin-event-item {
                a {
                    align-items: center;
                    background-color: #f5f5f5;
                    border: 2px solid #f5f5f5;
                    border-radius: 10px;
                    display: grid;
                    gap: 15px;
                    grid-template-columns: 30% auto;
                    padding: 15px;
                    transition-duration: 0.3s;
                    &:hover,
                    &:focus {
                        background-color: #ffffff;
                        border-color: #243774;
                        text-decoration: none;
                    }
                    .tin-event-thumbnail {
                        border-radius: 5px;
                        overflow: hidden;
                        img {
                            aspect-ratio: 1;
                            object-fit: cover;
                            object-position: center;
                        }
                    }
                    .tin-event-content {
                        .tin-event-date-wrapper {
                            align-items: center;
                            display: flex;
                            flex-direction: row-reverse;
                            flex-wrap: wrap;
                            gap: 15px;
                            justify-content: flex-end;

                            .tin-event-start-end-date {
                                display: block;
                                color: #222222;
                                font-size: 14px;
                                text-transform: uppercase;
                            }
                        }
                        
                        .tin-event-title {
                            font-size: 1rem;
                            margin: 0;
                        }
                    }
                }
                
            }
        }

        p.tin-more-events {
            margin: 15px 0 0;
            text-align: right;

            a {
                background-color: var(--tin-secondary-color);
                border-radius: 5px;
                color: #ffffff;
                display: flex;
                font-weight: 500;
                gap: 5px;
                justify-content: center;
                padding: 7px 10px;
                transition-duration: 0.3s;

                &:hover, &:focus {
                    background-color: var(--tin-primary-color);
                }
            }
        }
    }
}

.tin-section-events .tin-section-header {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.tin-events-month-navigation-search {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;

    button {
        svg {
            height: 20px;
            transition-duration: 0.3s;
            width: 20px;
        }
    }
}

.tin-events-search-wrapper {

    margin: 0;
    position: relative;

    #tin-event-search-input {
        border: 1px solid #cccccc;
        border-radius: 3px;
        height: 40px;
        padding-right: 35px;
    }

    #tin-event-search-submit {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
}

.tin-events-month-navigation-wrapper {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 5px;

    .tin-event-month-nav-btn {
        align-items: center;
        border: 1px solid #cccccc;
        border-radius: 3px;
        display: flex;
        height: 40px;
        justify-content: center;
        padding: 0;
        transition-duration: 0.3s;
        width: 40px;

        &:hover,
        &:focus {
            border-color: var(--tin-secondary-color);

            svg {
                stroke: var(--tin-secondary-color);
                transition-duration: 0.3s;
            }
        }
    }
}

.tin-event-badge {
    align-items: center;
    border-radius: 3px;
    column-gap: 3px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    padding: 3px 8px;
    text-transform: capitalize;
}

.tin-event-badge-ongoing {
    background-color: #28a745; /* Green */
    color: #fff;

    svg {
        animation: blink 1s linear infinite;
        height: 24px;
        width: 24px;
    }
}

@media ( max-width: 575px ) {
    .tin-events-month-navigation-search {
        margin-top: 10px;
    }
    .tin-section-events {
        .tin-section-content {
            ul.tin-events-list {
                li.tin-event-item {
                    a {
                        padding: 15px;
                        .tin-event-thumbnail {
                            img {
                                width: 100px;
                            }
                        }
                        .tin-event-content {
                            .tin-event-date-wrapper {
                                .tin-event-start-end-date {
                                    display: block;
                                    color: #222222;
                                    font-size: 12px;
                                    text-transform: uppercase;
                                }
                            }
                            
                            .tin-event-title {
                                font-size: 18px;
                                margin: 0;
                            }
                        }
                    }
                }
            }
        }
    }
}

/* Custom properties for easy color & timing adjustments */
:root {
  --skeleton-bg: #f3f4f6;       /* Gray-100 */
  --skeleton-element: #e5e7eb;  /* Gray-200 */
  --skeleton-card-bg: #f9fafb; /* Gray-50 */
}

/* Container & Layout */
.skeleton-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .skeleton-header {
    flex-direction: row;
  }
}

.skeleton-header-text {
  flex: 1 1 0%;
  width: 100%;
}

.skeleton-header-text > * + *,
.skeleton-text-group > * + * {
  margin-top: 0.5rem;
}

.skeleton-divider {
  border: 0;
  border-top: 1px solid #f3f4f6;
  margin: 1.5rem 0;
}

.skeleton-body > * + * {
  margin-top: 1rem;
}

.skeleton-card {
  padding: 1rem;
  background-color: var(--skeleton-card-bg);
  border-radius: 0.5rem;
}

.skeleton-card > * + * {
  margin-top: 0.75rem;
}

/* Base Skeleton & Animation */
.skeleton-element {
  background-color: var(--skeleton-element);
  border-radius: 0.25rem;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.skeleton-thumb {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
}

/* Helper Sizing Classes */
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }

.w-15 { width: 15%; }
.w-24 { width: 6rem; }
.w-25 { width: 25%; }
.w-33 { width: 33%; }
.w-50 { width: 50%; }
.w-75 { width: 75%; }

/* Keyframes for smooth opacity fading */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}



/* Custom variables for theme matching */
:root {
  --skeleton-base: #e5e7eb;      /* Gray-200 */
  --skeleton-card-bg: #f9fafb;  /* Gray-50 */
}

.events-list-skeleton-container {
    display: none;

    &.show {
        display: block;
    }
}

/* Header Section (Month + Arrow Buttons) */
.list-skeleton-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.list-skeleton-nav {
  display: flex;
  gap: 0.5rem;
}

/* Stacked Layout for Cards */
.list-skeleton-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Single Horizontal Event Card */
.list-skeleton-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--skeleton-card-bg);
  border-radius: 0.75rem;
}

.list-skeleton-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

/* Base Shapes and Animations */
.skeleton-bar, .skeleton-circle {
  background-color: var(--skeleton-base);
  animation: listPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.skeleton-bar {
  border-radius: 0.25rem;
}

.skeleton-circle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
}

.skeleton-img-thumb {
  width: 6rem;
  height: 6rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

/* Exact Sizing Helpers (in pixels for precise control) */
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }

.w-110 { width: 110px; }
.w-120 { width: 120px; }
.w-140 { width: 140px; }
.w-150 { width: 150px; }
.w-220 { width: 220px; }
.w-250 { width: 250px; }
.w-300 { width: 300px; }

/* Pulse Keyframes */
@keyframes listPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
}

body.tin-event-dialog-active {
    position: relative;
}

#tin-event-dialog-overlay {
    backdrop-filter: blur(5px);
    background-color: rgba(255,255,255,0.5);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99998;
}

#tin-event-dialog {
    /* Remove default browser styles */
    border-top: 5px solid #dC143C;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

    /* Layout and dimensions */
    width: 90%;
    max-width: 900px;
    background-color: #ffffff;
    color: #333333;
    position: fixed;
    left: 50%;
    top: 50%;

    /* Smooth transitions for opening (Modern browsers) */
    opacity: 0;
    transform: translate(-50%,-50%);
    transition: opacity 0.3s ease, transform 0.3s ease, display 0.3s ease allow-discrete;
    visibility: hidden;
    z-index: 99999;

    #tin-event-content {
        max-height: 80vh;
        padding: 30px;
        font-size: 1rem;
        overflow: auto;
    }
}

.tin-event-content {

    a {
        color: inherit;
        text-decoration: underline solid #dC143C;
    }

    .tin-event-thumbnail-title {
        align-items: center;
        display: grid;
        gap: 30px;
        grid-template-columns: 25% auto;
    }

    .tin-event-thumbnail {
        a {
            border-radius: 5px;
            display: block;
            overflow: hidden;
            position: relative;
            img {
                aspect-ratio: 1;
                object-fit: cover;
                object-position: center;
            }
            span {
                align-items: center;
                background-color: #000000;
                border-radius: 3px;
                display: flex;
                justify-content: center;
                padding: 5px;
                position: absolute;
                right: 10px;
                top: 10px;
                svg {
                    fill: #ffffff;
                    height: 20px;
                    width: 20px;
                }
            }
            
        }
    }

    .tin-event-schedule {
        align-items: center;
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        font-size: 14px;
        gap: 15px;
        justify-content: flex-end;
    }

    .tin-event-title-container {
        display: flex;
        flex-direction: column;
        margin-top: 5px;
        .tin-event-title {
            margin: 0;
        }
        a {
            display: block;
            margin-top: 10px;
            svg {
                height: 14px;
                stroke-width: 2px;
                width: 14px;
            }
        }
    }

    .tin-event-detail {
        border: 1px solid #eeeeee;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        
        .tin-event-data {
            align-items: start;
            border-bottom: 1px solid #eeeeee;
            display: grid;
            gap: 30px;
            grid-template-columns: 20% auto;
            padding: 20px;

            &:last-child {
                border-bottom: none;
            }

            .tin-event-data-label {
                align-items: center;
                display: flex;
                font-weight: bold;
                gap: 10px;

                .tin-event-label-icon {
                    line-height: 0;

                    svg {
                        height: 20px;
                        width: 20px;
                    }
                }
            }

            .tin-event-data-detail {
                p {
                    margin-bottom: 10px;
                }

                .tin-event-location-map {
                    border: 2px solid #dddddd;
                    border-radius: 5px;
                    margin-top: 15px;
                    overflow: hidden;

                    iframe {
                        max-height: 350px;
                        width: 100%;
                    }
                }
            }
        }
    }
}

#tin-close-event-dialog {
    align-items: center;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    height: 40px;
    position: absolute;
    right: 15px;
    top: 15px;
    width: 40px;

    .tin-close-event-dialog-icon {
        display: block;
        line-height: 0;

        svg {
            height: 20px;
            width: 20px;
        }
    }
}

body.tin-event-dialog-active #tin-event-dialog-overlay {
    display: block;
}

body.tin-event-dialog-active #tin-event-dialog {
    opacity: 1;
    visibility: visible;
}


/* When the lightbox is active, hide the event dialog completely */
html.fslightbox-open #tin-event-dialog {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Prevents clicking anything inside the hidden dialog */
}

/* Optional: Ensure fslightbox sits clearly on top of everything else */
.fslightbox-container {
    pointer-events: auto !important;
    z-index: 99999999 !important;
}

.fslightbox-nav {
    z-index: 100000000 !important;
    pointer-events: auto !important; /* Forces the buttons to react to mouse clicks */
    cursor: pointer !important;
}

@media ( max-width: 767px ) {
    .tin-event-content .tin-event-detail .tin-event-data {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    #tin-event-dialog {
        border-radius: 0;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;

        #tin-event-content {
            max-height: 100vh;
            overflow-y: auto;
            padding: 30px 15px;
            .tin-event-thumbnail-title {
                gap: 15px;
                grid-template-columns: 1fr;

                .tin-event-thumbnail {
                    a {
                        img {
                            aspect-ratio: 4/3;
                        }
                    }
                }

                .tin-event-title-container {
                    .tin-event-title {
                        font-size: 28px;
                    }
                }
            }

            .tin-event-detail {
                .tin-event-data {
                    gap: 10px;
                    padding: 15px;
                    .tin-event-data-detail {
                        .tin-event-location-map {
                            iframe {
                                max-height: 250px;
                            }
                        }
                    }
                }
            }
        }
    }
    
    #tin-close-event-dialog {
        right: 5px;
        top: 5px;
    }
}




/*********************************************************
    Experiences Archive
*********************************************************/
.tin-travel-cat-section {
    border-bottom: 1px solid #EEEEEE;
    padding-bottom: 70px;
    padding-top: 70px;

    .tin-section-heading-container {
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;

        .tin-section-heading {
        
            h2 {
                font-size: 1.875rem;
                font-weight: 600;
                margin-bottom: 0;
                text-transform: capitalize;

                @media(max-width: 575px) {
                    font-size: 1.25rem;
                }
            }
        }

        .tin-swiper-navs {
            align-items: center;
            column-gap: 10px;
            display: flex;

            .swiper-button-next,
            .swiper-button-prev {
                align-items: center;
                background-color: var(--tin-color-primary-light);
                border: 1px solid #E5E5E5;
                border-radius: 100px;
                display: flex;
                height: 45px;
                justify-content: center;
                left: 0;
                margin-top: auto;
                position: relative;
                right: 0;
                top: 0;
                width: 45px;

                &::after {
                    color: var(--tin-color-primary);
                    font-size: 16px;
                }
            }
        }
    }

    .tin-section-content {
        .travel-cat-slider {
            .tin-term-card {
                border-radius: 10px;
                box-shadow: 0 0 10px 0 rgb(0 0 0 / 0.2);
                overflow: hidden;
                position: relative;

                .tin-term-thumbnail {
                    a {
                        display: block;
                        line-height: 0;

                        img {
                            aspect-ratio: 3/4;
                            object-fit: cover;
                            object-position: center;
                            transform: scale(1.2) translateY(10px);
                            transition: all 0.3s;
                        }
                    }
                }

                .tin-term-content {
                    bottom: 0;
                    left: 0;
                    position: absolute;
                    right: 0;
                    top: auto;

                    .tin-term-name {
                        margin: 0;
                        a {
                            align-items: center;
                            background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 1) 100%);;
                            color: #FFFFFF;
                            display: flex;
                            gap: 5px;
                            justify-content: center;
                            padding: 30px 15px 15px;
                            text-decoration: none;

                            svg {
                                height: 1rem;
                                opacity: 0;
                                stroke-width: 2;
                                transition: all 0.3s;
                                visibility: hidden;
                                width: 1rem;
                            }

                            &:hover {
                                svg {
                                    opacity: 1;
                                    visibility: visible;
                                }
                            }
                        }
                    }
                }

                &:hover {
                    .tin-term-thumbnail {
                        a {
                            img {
                                transform: scale(1.2) translateY(0);
                            }
                        }
                    }
                }
            }
        }
    }
}

.tin-companion-experiences-archive-heading-container {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;

    .tin-section-heading {
    
        h2 {
            font-size: 1.875rem;
            font-weight: 600;
            margin-bottom: 0;
            text-transform: capitalize;

            @media(max-width: 575px) {
                font-size: 1.25rem;
            }
        }
    }

    .tin-companion-experiences-archive-count {
        margin: 0;
    }
}

.tin-travel-archive-desc-section {
    border-bottom: 1px solid #EEEEEE;
    font-size: 1.125rem;
    padding-bottom: 50px;
    padding-top: 70px;

    .tin-container-inner {
        margin-left: auto;
        margin-right: auto;
        max-width: 900px;
    }
}

.archive-content.archive-experience-posts {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);

    @media (max-width: 1199px) {
        gap: 20px;
    }

    @media (max-width: 767px) {
        gap: 15px;
    }

    article {
        border: 1px solid #eeeeee;
        border-radius: 5px;
        align-items: center;
        overflow: hidden;
        position: relative;

        &.has-post-thumbnail {
            display: grid;
            grid-template-columns: 40% auto;

            @media (max-width: 767px) {
                grid-template-columns: 1fr;
            }
        }

        .post-thumbnail {
            border-radius: 0;
            height: 100%;
            overflow: hidden;

            a.post-thumbnail-link {
                display: block;
                height: 100%;
                line-height: 0;

                img {
                    aspect-ratio: 4/3;
                    height: 100%;
                    max-width: 100%;
                    object-fit: cover;
                    object-position: center;
                    transform: scale(1);
                    transition: transform 0.3s ease-in-out;

                    @media (max-width: 767px) {
                        aspect-ratio: 16/9;
                    }
                }
            }
        }

        .destination-link {
            align-items: center;
            backdrop-filter: blur(2px);
            background-color: rgb(0 0 0 / 0.2);
            border-radius: 100px;
            color: #FFFFFF;
            column-gap: 2px;
            display: inline-flex;
            font-size: 0.875rem;
            left: 15px;
            padding: 2px 8px 2px 4px;
            position: absolute;
            text-decoration: none;
            top: 15px;

            .tin-svg-icon {
                line-height: 0;

                svg {
                    height: 1rem;
                    width: 1rem;
                }
            }

            &:hover {
                background-color: rgb(0 0 0 / 0.6);
            }
        }

        .post-content {
            align-items: flex-start;
            margin: 0;
            padding: 30px;
            row-gap: 15px;

            .post-metas {
                
                .post-categories {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    gap: 10px;

                    a {
                        background-color: var(--tin-color-primary-light);
                        border-radius: 5px;
                        color: var(--tin-color-primary);
                        display: inline-flex;
                        font-size: 0.875rem;
                        padding: 1px 8px;
                    }
                }
            }

            .post-title {
                font-size: 1.25rem;
                font-weight: 600;
                margin: 0;

                a {
                    color: inherit;
                }
            }

            .post-excerpt {

                p {
                    display: -webkit-box;
                    margin: 0;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 3;
                }

                .post-link {
                    align-items: center;
                    column-gap: 2px;
                    display: inline-flex;
                    margin-top: 5px;

                    svg {
                        height: 12px;
                        width: 12px;
                    }
                }
            }

            @media (max-width: 1199px) {
                padding: 15px;
                row-gap: 10px;

                .post-title {
                    font-size: 1rem;
                }

                .post-excerpt {
                    font-size: 0.875rem;

                    p {
                        -webkit-line-clamp: 2;
                    }
                }
            }

            @media (max-width: 767px) {
                padding: 15px;
            }
        }

        &:hover {
            .post-thumbnail {
                a.post-thumbnail-link {
                    img {
                        transform: scale(1.1);
                    }
                }
            }
        }
    }
}

.archive-content.archive-destination-posts {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3,1fr);

    @media ( max-width: 1199px ) {
        grid-template-columns: repeat(2,1fr);
    }

    @media ( max-width: 575px ) {
        gap: 15px;
        grid-template-columns: repeat(1,1fr);
    }

    article {
        border: 1px solid #eeeeee;
        border-radius: 5px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        padding: 0;
        position: relative;

        .post-thumbnail {
            border-radius: 0;

            a.post-thumbnail-link {
                display: block;
                line-height: 0;
                overflow: hidden;

                img {
                    aspect-ratio: 4/3;
                    height: auto;
                    max-width: 100%;
                    object-fit: cover;
                    object-position: center;
                    transform: scale(1);
                    transition: transform 0.3s ease-in-out;

                     @media ( max-width: 575px ) {
                        aspect-ratio: 16/9;
                    }
                }
            }
        }

        .destination-link {
            align-items: center;
            backdrop-filter: blur(2px);
            background-color: rgb(0 0 0 / 0.2);
            border-radius: 100px;
            color: #FFFFFF;
            column-gap: 2px;
            display: inline-flex;
            font-size: 0.875rem;
            padding: 2px 8px 2px 4px;
            position: absolute;
            right: 15px;
            text-decoration: none;
            top: 15px;

            .tin-svg-icon {
                line-height: 0;

                svg {
                    height: 1rem;
                    width: 1rem;
                }
            }

            &:hover {
                background-color: rgb(0 0 0 / 0.6);
            }
        }

        .post-content {
            margin: 0;
            padding: 15px;
            width: 100%;

            .post-metas {
                margin-top: 0;
                .post-categories {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    gap: 10px;
                    
                    a {
                        background-color: var(--tin-color-primary-light);
                        border-radius: 5px;
                        color: var(--tin-color-primary);
                        display: inline-flex;
                        font-size: 0.875rem;
                        padding: 1px 8px;
                    }
                }
            }

            .post-title {
                font-size: 1rem;
            }

            .post-excerpt {
                font-size: 0.875rem;
                margin: 0;

                p {
                    display: -webkit-box;
                    margin: 0;
                    overflow: hidden;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                }

                .post-link {
                    align-items: center;
                    column-gap: 2px;
                    display: inline-flex;
                    margin-top: 10px;

                    svg {
                        height: 12px;
                        width: 12px;
                    }
                }
            }
        }

        &:hover {
            .post-thumbnail {
                a.post-thumbnail-link {
                    img {
                        transform: scale(1.1);
                    }
                }
            }
        }
    }
}

.tin-popular-experiences-section {
    background-color: var(--tin-color-primary-light);
    padding-bottom: 40px;
    padding-top: 40px;

    .tin-section-heading-container {
        align-items: flex-end;
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;

        .tin-section-heading {
        
            h2 {
                font-size: 1.875rem;
                font-weight: 600;
                margin-bottom: 0;
                text-transform: capitalize;

                @media(max-width: 575px) {
                    font-size: 1.25rem;
                }
            }
        }

        .tin-swiper-navs {
            align-items: center;
            column-gap: 10px;
            display: flex;

            .tin-popular-experiences-slider-next,
            .tin-popular-experiences-slider-prev {
                align-items: center;
                background-color: #FFFFFF;
                border: 1px solid #E5E5E5;
                border-radius: 100px;
                display: flex;
                height: 45px;
                justify-content: center;
                left: 0;
                margin-top: auto;
                position: relative;
                right: 0;
                top: 0;
                width: 45px;

                &::after {
                    color: var(--tin-color-primary);
                    font-size: 16px;
                }
            }
        }
    }

    .tin-section-content {
        .travel-slider {

            article {
                border-radius: 10px;
                overflow: hidden;

                .tin-card {

                    position: relative;

                    .thumbnail-block {
                        .post-thumbnail-link {
                            img {
                                aspect-ratio: 1;
                                object-fit: cover;
                                object-position: center;
                                transform: scale(1);
                                transition: all 0.3s;
                            }
                        }
                    }

                    .post-content {
                        background-color: rgb(0 0 0 / 0.3);
                        background: linear-gradient(180deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 1) 100%);
                        bottom: 0px;
                        left: 0px;
                        padding: 30px;
                        position: absolute;
                        right: 0px;
                        top: auto;

                        .post-categories {
                            a {
                                background-color: #FFFFFF;
                                border-radius: 3px;
                                color: #222222;
                                display: inline-block;
                                font-size: 0.875rem;
                                padding: 3px 8px;
                            }
                        }

                        .post-title {
                            font-size: 1.125rem;
                            a {
                                color: #FFFFFF;
                            }
                        }
                    }

                    &:hover {
                        .thumbnail-block {
                            .post-thumbnail-link {
                                img {
                                    transform: scale(1.04);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}


/************
 * Travel Single
 */
.tin-travel-single-main {
    display: flex;
    flex-direction: column;
    row-gap: 30px;

    @media (max-width: 575px) {
        row-gap: 20px;
    }
}






body.single-tin_guide {
    main > article.tin_guide {
        header.post-header {
            border-bottom: none !important;
            margin-bottom: 30px;

            .post-categories {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;

                .post-category-link {
                    align-items: center;
                    background-color: #eceff9;
                    border: 1px solid var(--tin-border-color);
                    border-radius: 5px;
                    color: var(--tin-primary-color);
                    display: inline-flex;
                    font-size: 14px;
                    gap: 10px;
                    line-height: 1;
                    padding: 8px 10px;
                    text-decoration: none;

                    &:hover {
                        background-color: var(--tin-color-primary);
                        color: #ffffff;

                    }
                }
            }

            .post-title {
                margin-bottom: 15px;
                margin-top: 15px;
            }

            .tin-post-author-date-reading-time {
                align-items: center;
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                font-size: 14px;
                gap: 10px;

                .meta-author {
                    align-items: center;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: nowrap;
                    gap: 5px;

                    img {
                        border-radius: 100px;
                        height: 30px;
                        width: 30px;
                    }
                }

                .meta-date,
                .meta-reading-time {
                    align-items: center;
                    display: flex;
                    gap: 10px;

                    &::before {
                        content: "/";
                        font-size: 10px;
                    }
                }

                .meta-date {
                    time.updated {
                        display: none;
                    }
                }
            }
        }

        .thumbnail-block {
            margin-bottom: 30px;

            img {
                border-radius: 5px;
            }
        }
    }

    main > #tin-related {

        .related-content {
            border: 1px solid #eeeeee;
            border-radius: 10px;
            gap: 0;
            grid-template-columns: repeat(1, 1fr);

            article {
                border-bottom: 1px solid #eeeeee;
                display: grid;
                gap: 30px;
                grid-template-columns: 45% auto;
                padding: 20px;

                &:last-child {
                    border-bottom: none;
                }

                .thumbnail-block {
                    a {
                        border-radius: 5px;
                        display: block;
                        overflow: hidden;

                        img {
                            aspect-ratio: 4/3;
                            object-fit: cover;
                            object-position: center;
                        }
                    }
                }

                .post-content {
                    display: flex;
                    flex-direction: column;
                    margin: 0;
                    row-gap: 0;

                    .post-categories {
                        display: flex;
                        flex-direction: row;
                        flex-wrap: wrap;
                        gap: 10px;
                        margin-bottom: 5px;

                        .post-category-link {
                            color: inherit;
                            font-size: 14px;
                        }
                    }

                    .post-title {
                        font-size: 1.25rem;
                        margin: 0;

                        a {
                            color: inherit;
                        }
                    }

                    .post-excerpt {
                        margin-top: 15px;
                        p {
                            display: -webkit-box;
                            -webkit-box-orient: vertical;
                            -webkit-line-clamp: 3;
                            overflow: hidden;
                        }
                    }

                    .post-metas {
                        align-items: center;
                        display: flex;
                        flex-direction: row;
                        flex-wrap: wrap;
                        font-size: 14px;
                        gap: 10px;
                        margin-top: auto;

                        .meta-author {
                            align-items: center;
                            display: flex;
                            flex-direction: row;
                            flex-wrap: nowrap;
                            gap: 5px;

                            img {
                                border-radius: 100px;
                                height: 30px;
                                width: 30px;
                            }
                        }

                        .meta-date,
                        .meta-reading-time {
                            align-items: center;
                            display: flex;
                            gap: 10px;

                            &::before {
                                content: "/";
                                font-size: 10px;
                            }
                        }

                        .meta-date {
                            time.updated {
                                display: none;
                            }
                        }
                    }
                }

                
            }
        }
    }
}

header.archive-page-header {

    .page-title-count {
        align-items: flex-end;
        column-gap: 30px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 15px;

        @media ( max-width: 767px ) {
            flex-wrap: wrap;
        }

        .page-title {
            border: none !important;
            font-size: 2.25rem !important;
            margin: 0 !important;
            padding: 0 !important;

            @media (max-width: 1023px) {
                font-size: 32px !important;
            }

            @media (max-width: 575px) {
                font-size: 28px !important;
            }
        }

        .archive-count {
            align-items: center;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 15px;
            margin: 0;
        }
    }

    .archive-description {
        background-color: #f5f5f5;
        border: 1px solid #eeeeee;
        border-radius: 5px;
        margin-top: 30px;
        padding: 20px;

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

        @media (max-width: 575px) {
            margin-top: 20px;
            padding: 15px;
        }
    }

    .archive-terms {
        margin-top: 30px;
        .term-links {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            gap: 8px;

            a {
                background-color: var(--tin-color-primary-light);
                border-radius: 100px;
                color: var(--tin-color-primary);
                display: inline-flex;
                font-size: 0.875rem;
                padding: 3px 10px;
                text-decoration: none;

                &:hover {
                    background-color: var(--tin-color-primary);
                    color: #FFFFFF;
                }
            }
        }

        @media (max-width: 575px) {
            margin-top: 15px;
        }
    }
}

.guide-archive-content {
    .archive-articles {
        border-radius: 5px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        row-gap: 30px;

        article {
            align-items: center;
            display: grid;
            gap: 30px;
            grid-template-columns: 45% auto;

            .thumbnail-block {
                a {
                    border-radius: 5px;
                    display: block;
                    overflow: hidden;

                    img {
                        aspect-ratio: 4/3;
                        object-fit: cover;
                        object-position: center;
                    }
                }
            }

            .post-content {
                display: flex;
                flex-direction: column;
                margin: 0;
                row-gap: 0;

                .post-categories {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    gap: 10px;
                    margin-bottom: 5px;

                    .post-category-link {
                        color: inherit;
                        font-size: 14px;
                    }
                }

                .post-title {
                    font-size: 1.25rem;
                    margin: 0;

                    a {
                        color: inherit;
                    }
                }

                .post-excerpt {
                    margin-top: 15px;
                    p {
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 3;
                        overflow: hidden;
                    }
                }

                .post-metas {
                    align-items: center;
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    font-size: 14px;
                    gap: 10px;
                    margin-top: 15px;

                    .meta-author {
                        align-items: center;
                        display: flex;
                        flex-direction: row;
                        flex-wrap: nowrap;
                        gap: 5px;

                        img {
                            border-radius: 100px;
                            height: 26px;
                            width: 26px;
                        }
                    }

                    .meta-date,
                    .meta-reading-time {
                        align-items: center;
                        display: flex;
                        gap: 10px;

                        &::before {
                            content: "/";
                            font-size: 10px;
                        }
                    }

                    .meta-date {
                        time.updated {
                            display: none;
                        }
                    }
                }
            }

            
        }
    }
    
}






/**************************************************************************************************************************************************
    Home - Destinations
**************************************************************************************************************************************************/
.tin-home-section-hero {
    .tin-section-inner {
        min-height: 80vh;
        position: relative;

        .tin-hero-video-wrapper,
        .tin-hero-image-wrapper {
            inset: 0;
            position: absolute;
            z-index: 1;

            .tin-hero-video,
            img {
                height: 100%;
                object-fit: cover;
                object-position: center;
                width: 100%;
            }
        }

        .tin-hero-content-wrapper {
            align-items: center;
            background: linear-gradient(180deg,rgba(0, 0, 0, 0) 30%,rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
            color: #FFFFFF;
            display: flex;
            inset: auto 0 0;
            justify-content: flex-start;
            padding-bottom: 30px;
            padding-top: 80px;
            position: absolute;
            text-align: center;
            z-index: 1;

            h2, p {
                margin: 0;
                margin-left: auto;
                margin-right: auto;
                max-width: 700px;
                text-align: center;
            }

            h2 {
                color: #ffffff;
                font-size: 3.5rem;
                font-weight: 700;
                line-height: 1.2;
                max-width: 900px;
            }

            p {
                margin-top: 15px;
                max-width: 800px;
            }

            span.tin-svg-icon {
                animation: down 2s infinite;
                display: block;
                line-height: 0;
                margin-top: 20px;
                opacity: 0;

                svg {
                    height: 1.5rem;
                    stroke-width: 2;
                    width: 1.5rem;
                }
            }
        }

        .tin-hero-media-control {
            align-items: center;
            bottom: 0;
            display: flex;
            justify-content: center;
            position: absolute;
            right: 30px;
            top: 0;
            z-index: 1;
        }
    }
}

.tin-section-header {
    .tin-section-content {
        align-items: flex-start;
        column-gap: 30px;
        display: flex;
        justify-content: space-between;
        row-gap: 15px;

        @media (max-width: 767px) {
            flex-direction: column;
            flex-wrap: wrap;
        }

        .header-titles {
            display: flex;
            flex: 1;
            flex-direction: column;
            max-width: 60%;
            row-gap: 15px;

            h2, p {
                margin: 0;
            }

            h2 {
                font-size: 1.5rem;
            }

            @media (max-width: 767px) {
                max-width: 100%;
            }
        }

        .header-link {
            align-items: center;
            background-color: var(--tin-color-accent);
            border-radius: 100px;
            color: #FFFFFF;
            column-gap: 5px;
            display: flex;
            justify-content: center;
            padding: 5px 15px;
            text-decoration: none;
            transition-duration: 0.3s;

            .tin-svg-icon {
                line-height: 0;
                svg {
                    height: 1rem;
                    stroke-width: 1.5;
                    width: 1rem;
                }
            }

            &:hover {
                background-color: #ffffff;
                color: var(--tin-color-accent);
            }

            @media (max-width: 767px) {
                justify-content: flex-end;
                max-width: 100%;
                width: 100%;
            }
        }
    }
    
}


.tin-section-destinations {

    article {
        .post-content {
            background: linear-gradient(180deg,rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 1) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            top: 0;
            transition: all 0.3s ease-in;
            .post-title {
                font-size: 1.275rem;
                font-weight: 700;
                transform: translateY(0);
                transition: all 0.3s ease-in;
            }
            .post-excerpt {
                font-size: 0.875rem;
                max-height: 0;
                opacity: 0;
                overflow: hidden;
                transform: translateY(100%);
                transition: all 0.4s ease-in;

                @media (max-width: 767px) {
                    max-height: 100%;
                    opacity: 1;
                    transform: translateY(0);
                }

                a {
                    border-bottom: 1px solid #bbbbbb;
                    color: inherit;
                    display: inline-block;
                    font-size: 0.875rem;
                    letter-spacing: 1px;
                    margin-top: 15px;
                    padding-bottom: 2px;
                    text-transform: uppercase;
                    transition: all 0.3s ease-in;

                    &:hover {
                        border-bottom-color: var(--tin-color-accent);
                    }
                }
            }
        }

        &:hover {
            .post-content {
                background: linear-gradient(180deg,rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
                .post-excerpt {
                    margin-top: 5px;
                    max-height: 100%;
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
    }

    .swiper {
        .swiper-button-next,
        .swiper-button-prev {
            backdrop-filter: blur(5px);
            background-color: rgb(255 255 255 / 0.1);
            border: 1px solid #eeeeee;
            border-radius: 100px;
            color: #FFFFFF;
            height: 50px;
            margin-top: -55px;
            transition: background-color 0.3s ease-in-out;
            width: 50px;

            &::after {
                font-size: 16px;
            }

            &:hover {
                background-color: rgb(255 255 255 / 0.3);
            }

            @media (max-width: 767px) {
                height: 45px;
                width: 45px;
            }

            @media (max-width: 575px) {
                height: 40px;
                width: 40px;
            }
        }

        .swiper-pagination {
            margin-top: 30px;
            position: relative;

            .swiper-pagination-bullet-active {
                background-color: var(--tin-color-accent);
            }

            @media (max-width: 767px) {
                margin-top: 20px;
            }

            @media (max-width: 575px) {
                margin-top: 15px;
            }
        }
    }
}


.tin-section-experience-categories {
    .tin-section-content {
        align-items: center;
        column-gap: 5px;
        display: flex;
    }
    .feed-swiper {
        .swiper-slide {
            width: auto;
            a {
                background-color: #eeeeee;
                border-radius: 100px;
                color: inherit;
                display: inline-flex;
                font-size: 0.875rem;
                padding: 4px 10px;
            }
        }

        
    }

    .swiper-button-next,
    .swiper-button-prev {
        background-color: #eeeeee;
        border-radius: 100px;
        color: inherit;
        height: 35px;
        margin-top: auto;
        min-height: 35px;
        position: relative;
        top: auto;
        transition: background-color 0.3s ease-in-out;
        min-width: 35px;

        &::after {
            font-size: 14px;
        }

        &:hover {
            background-color: #eeeeee;
        }
    }

    .swiper-button-prev {
        left: 0;
    }

    .swiper-button-next {
        right: 0;
    }
}

.tin-section-experiences {
    &[data-layout="grid"] {
        .tin-section-content {
            display: grid;
            gap: 30px;
            grid-template-columns: repeat(4, 1fr);
        }

        
    }

    article {
        background-color: #fefbef;
        border: 1px solid #eeeeee;
        border-radius: 5px;
        height: 100%;
        overflow: hidden;
        position: relative;

        .post-categories {
            display: flex;
            flex-wrap: wrap;
            font-size: 0.75rem;
            gap: 8px;
            left: 15px;
            position: absolute;
            top: 15px;
            z-index: 1;

            a {
                backdrop-filter: blur(5px);
                background-color: rgb(0 0 0 / 1);
                
                /* border: 1px solid #ffffff; */
                border-radius: 5px;
                color: #ffffff;
                display: inline-block;
                padding: 4px 12px;

                &:hover {
                    background-color: var(--tin-color-accent);
                }
            }
        }

        .post-thumbnail-container {
            a.post-thumbnail-link {
                border-radius: 0;
                display: block;
                img {
                    aspect-ratio: 4/3;
                    object-fit: cover;
                    object-position: center;
                }
            }
        }

        .post-content {
            margin-top: 0px;
            padding: 15px;
            row-gap: 10px;
            .post-title {
                font-size: 1rem;
                font-weight: 700;
                transform: translateY(0);
                transition: all 0.3s ease-in;

                a {
                    color: #444444;

                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
            .post-excerpt {
                font-size: 0.875rem;
                p {
                    display: -webkit-box;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    overflow: hidden;
                }
                a {
                    align-items: center;
                    color: inherit;
                    display: inline-flex;
                    font-size: 0.875rem;
                    font-weight: 600;
                    letter-spacing: 1px;
                    margin-top: 5px;
                    text-transform: uppercase;
                    transition: all 0.3s ease-in;

                    span.link-icon {
                        align-items: center;
                        background-color: #444444;
                        border-radius: 100px;
                        color: #ffffff;
                        display: inline-flex;
                        height: 20px;
                        justify-content: center;
                        margin-left: 0px;
                        opacity: 0;
                        width: 20px;
                        transition: opacity 0.3s ease-in, margin 0.3s ease-in;

                        svg {
                            
                            height: 12px;
                            width: 12px;
                        }
                    }
                    

                    &:hover {
                        span.link-icon {
                            margin-left: 5px;
                            opacity: 1;
                        }
                    }
                }
            }
        }
    }

    .swiper {
        .swiper-slide {
            height: auto;
        }
        .swiper-button-next,
        .swiper-button-prev {
            backdrop-filter: blur(5px);
            background-color: rgb(255 255 255 / 0.1);
            border-radius: 100px;
            color: #FFFFFF;
            height: 50px;
            margin-top: -55px;
            transition: background-color 0.3s ease-in-out;
            width: 50px;

            &::after {
                font-size: 16px;
            }

            &:hover {
                background-color: rgb(255 255 255 / 0.3);
            }
        }

        .swiper-pagination {
            margin-top: 30px;
            position: relative;

            .swiper-pagination-bullet-active {
                background-color: var(--tin-color-accent);
            }
        }
    }
}

.tin-section-events {

    &[data-layout="carousel"] {
        article {
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease-in;

            a.tin-event {
                display: block;
            }

            .event-dates {
                align-items: center;
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                font-size: 0.875rem;
                gap: 5px;
                /* left: 15px; */
                /* position: absolute; */
                /* top: 15px; */
                /* z-index: 1; */

                .tin-event-badge-ongoing {
                    background-color: var(--tin-color-accent);
                    border-radius: 100px;
                    margin: 0;
                    padding: 3px 15px;
                }

                .start-date {
                    text-transform: uppercase;
                }
            }

            .post-thumbnail-container {
                .post-thumbnail-link {
                    display: block;
                    img {
                        aspect-ratio: 3/4;
                        object-fit: cover;
                        object-position: center;
                    }
                }
            }

            .post-content {
                background: linear-gradient(180deg,rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 1) 100%);
                bottom: 0;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                left: 0;
                padding: 15px;
                position: absolute;
                right: 0;
                top: 0;
                transition: all 0.3s ease-in;

                .post-title {
                    font-size: 1.125rem;
                    font-weight: 700;
                    line-height: 1.5;
                    transform: translateY(0);
                    transition: all 0.3s ease-in;

                    a {
                        color: #ffffff;
                        transition: text-decoration 0.3s ease-in;

                        &:hover {
                            text-decoration: underline;
                        }
                    }
                }

                .post-link {
                    align-items: center;
                    color: #ffffff;
                    column-gap: 2px;
                    display: inline-flex;
                    font-size: 0.875rem;

                    .link-icon {
                        line-height: 0;
                        svg {
                            height: 20px;
                            width: 20px;
                        }
                    }
                }
            }

            &:hover {
                .post-content {
                    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 1) 100%);
                }
            }
        }
    }
    

    .swiper {
        .swiper-button-next,
        .swiper-button-prev {
            backdrop-filter: blur(5px);
            background-color: rgb(255 255 255 / 0.1);
            border: 1px solid #eeeeee;
            border-radius: 100px;
            color: #FFFFFF;
            height: 50px;
            margin-top: -55px;
            transition: background-color 0.3s ease-in-out;
            width: 50px;

            &::after {
                font-size: 16px;
            }

            &:hover {
                background-color: rgb(255 255 255 / 0.3);
            }
        }

        .swiper-pagination {
            margin-top: 30px;
            position: relative;

            .swiper-pagination-bullet-active {
                background-color: var(--tin-color-accent);
            }
        }
    }
}

.tin-section-guides {
    .tin-section-content {
        display: grid;
        gap: 30px;
        grid-template-columns: repeat(3,1fr);

        @media (max-width: 991px) {
            gap: 20px;
            grid-template-columns: repeat(2,1fr);
        }

        @media (max-width: 767px) {
            gap: 15px;
            grid-template-columns: 1fr;
        }

        article {
            background-color: #f5f5f5;
            border: 1px solid #eeeeee;
            border-radius: 5px;
            padding: 20px;

            .post-content {
                margin-top: 0px;

                .post-title {
                    font-size: 1rem;

                    a:hover {
                        text-decoration: underline;
                    }
                }

                .post-excerpt {
                    font-size: 0.875rem;
                    margin-top: 5px;
                    p {
                        display: -webkit-box;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp: 2;
                        margin: 0;
                        overflow: hidden;
                    }

                    a {
                        display: inline-block;
                        margin-top: 10px;
                    }
                }
            }

            @media (max-width: 767px) {
                padding: 15px;
            }
        }
    }
}

.tin-section-news {
    .tin-section-content {
        display: grid;
        gap: 30px;
        grid-template-columns: 1fr 2fr;

        @media (max-width: 1199px) {
            grid-template-columns: 1fr;
        }

        @media (max-width: 767px) {
            gap: 20px;
        }

        .post-content {
            row-gap: 0;
            .meta.cat-links {
                margin-bottom: 5px;
                .post-categories {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    font-size: 0.875rem;
                    gap: 10px;
                    list-style: none;
                    margin: 0;
                    padding: 0;

                    a {
                        color: #444444;
                    }
                }
            }

            .meta-block.entry-meta {
                align-items: center;
                color: #444444;
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                font-size: 0.875rem;
                gap: 15px;
                margin-top: 5px;

                a {
                    color: inherit;
                }

                .meta-author {
                    a {
                        align-items: center;
                        display: flex;
                        gap: 3px;
                    }
                    img.avatar {
                        border-radius: 100px;
                        height: 25px;
                        width: 25px;
                    }
                }
            }

            .post-title {
                a {
                    color: #444444;
                    
                    &:hover {
                        text-decoration: underline;
                    }
                }
            }
        }

        .news-column-1 {

            article {
                .post-title {
                    line-height: 1.4;
                }
                .post-excerpt {
                    font-size: 0.875rem;
                    margin-top: 10px;
                }

                @media (max-width: 1199px) {
                    align-items: center;
                    display: grid;
                    gap: 30px;
                    grid-template-columns: 40% auto;

                    .post-content {
                        margin: 0;
                    }
                }

                @media (max-width: 991px) {
                    .post-title {
                        font-size: 1rem;
                    }
                }

                @media (max-width: 767px) {
                    gap: 15px;
                    grid-template-columns: 1fr;
                }
            }

            
        }

        .news-column-2 {
            display: flex;
            flex-direction: column;
            row-gap: 30px;

            @media (max-width: 767px) {
                gap: 20px;
            }

            .news-row-1,
            .news-row-2,
            .news-row-3 {
                display: grid;
                gap: 30px;
                grid-template-columns: 1fr 1fr;

                @media (max-width: 767px) {
                    gap: 20px;
                    grid-template-columns: 1fr;
                }
            }

            article {
                /* border-bottom: 1px solid #eeeeee; */
                /* border-left: 1px solid #eeeeee; */
                border-radius: 5px;
                display: grid;
                gap: 15px;
                grid-template-columns: auto 65%;
                /* padding-bottom: 15px; */
                /* padding-left: 15px; */

                /* &:first-child {
                    border-right: 1px solid #eeeeee;
                    padding-right: 20px;
                } */

                @media (max-width: 419px) {
                    gap: 15px;
                    grid-template-columns: 1fr;
                }

                .post-thumbnail-container {
                    order: 1;

                    .post-thumbnail-link {
                        display: block;
                        img {
                            aspect-ratio: 4/3;
                            object-fit: cover;
                            object-position: center;

                            @media (max-width: 419px) {
                                aspect-ratio: 16/9;
                                width: 100%;
                            }
                        }
                    }
                }

                .post-content {
                    margin-top: 0;
                    order: 2;

                    .post-title {
                        font-size: 1rem;
                        line-height: 1.5;
                    }
                }
            }

            .news-row-3 {
                border-bottom: none;
                padding-bottom: 0;
            }
        }   
    }
}

.tin-section-taxonomy-terms {
    .tin-section-content {
        align-items: center;
        display: flex;
        gap: 8px;

        .term-links {
            display: flex;
            flex: 1 1 auto;
            flex-wrap: nowrap;
            gap: 8px;
            overflow: hidden;

            a {
                align-items: center;
                border: 1px solid #eeeeee;
                border-radius: 100px;
                color: inherit;
                display: inline-flex;
                flex-shrink: 0;
                font-size: 0.875rem;
                justify-content: center;
                padding: 4px 12px;
                text-decoration: none;
            }
        }

        .show-more-terms {
            background-color: transparent;
            border: none;
            color: var(--tin-color-accent);
            flex-shrink: 0;
            font-size: 0.875rem;
            height: auto;
            padding: 4px 12px;
        }

        .terms-swiper {
            .swiper-slide {
                width: auto;
                a {
                    background-color: #eeeeee;
                    border-radius: 100px;
                    color: inherit;
                    display: inline-flex;
                    font-size: 0.875rem;
                    padding: 4px 12px;
                }
            }
        }

        .swiper-button-next,
        .swiper-button-prev {
            background-color: #eeeeee;
            border-radius: 100px;
            color: inherit;
            height: 35px;
            margin-top: auto;
            min-height: 35px;
            position: relative;
            top: auto;
            transition: background-color 0.3s ease-in-out;
            min-width: 35px;

            &::after {
                font-size: 14px;
            }

            &:hover {
                background-color: #eeeeee;
            }
        }

        .swiper-button-prev {
            left: 0;
        }

        .swiper-button-next {
            right: 0;
        }
    }
}

.tin-e-magazines {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3,1fr);
    .tin-e-magazine {
        .df-popup-thumb {
            margin: 0 !important;
            width: auto;
        }
    }
}

.tin-section-logos {
    .swiper-wrapper {
        align-items: center;
        .swiper-slide {
            align-items: center;
            display: flex;
            justify-content: center;
            width: 150px;
            text-align: center;

            @media (max-width: 757px) {
                width: 100px;
            }
            img {
                max-height: 80px;
                width: auto;

                @media (max-width: 575px) {
                    max-height: 70px;
                }
            }
        }
    }
    
}




/**************************************************************************************************************************************************
    Travel Widgets
**************************************************************************************************************************************************/
.widget {
    .tin-accordion-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 7px;

        .accordion__item {
            border-bottom: 1px solid #eeeeee;
            padding-bottom: 7px;

            &:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }

            .item__header {
                span.label {
                    img.emoji {
                        vertical-align: -0.25em !important;
                    }
                }

                &:hover {
                    text-decoration: none;
                }
            }

            &.active {
                .item__content {
                    margin-top: 10px;
                    .accordion-content-inner {
                        background-color: var(--tin-color-primary-light);
                        border: 1px solid #eeeeee;
                        border-radius: 5px;
                        padding: 15px;

                        ul, ol {
                            margin-left: 15px;
                        }

                        & > * {
                            margin-bottom: 10px;
                        }

                        & > *:last-child {
                            margin-bottom: 0;
                        }
                    }
                }
            }
        }

        .accordion__icon svg {
            height: 0.875rem;
            width: 0.875rem;
        }
    }

    &.tin-travel-facts {
        .widget-content {
            .travel-facts {
                display: flex;
                flex-direction: column;
                row-gap: 7px;

                .travel-fact {
                    border-bottom: 1px solid #eeeeee;
                    display: flex;
                    flex-direction: column;
                    gap: 7px;
                    padding-bottom: 7px;

                    &:last-child {
                        border-bottom: none;
                        padding-bottom: 0;
                    }

                    span {
                        img.emoji {
                            vertical-align: -0.25em !important;
                        }
                    }
                }
            }
        }
    }

    &.tin-travel-best-time {
        .widget-content {
            .tin-accordion-wrapper {
                .accordion__item {
                    .item__header {
                        span.ratings {
                            align-items: center;
                            display: inline-flex;
                            &::before {
                                content: '(';
                            }
                            &::after {
                                content: ')';
                            }
                            svg {
                                fill: #ff8220;
                                height: 0.75rem;
                                width: 0.75rem;
                            }
                        }
                    }
                }
            }
        }
    }

    &.tin-destinations,
    &.tin-experiences,
    &.tin-guide-posts {
        .widget-content {
            ul.destinations-list,
            ul.experiences-list,
            ul.posts-list {
                display: flex;
                flex-direction: column;
                list-style: none;
                margin: 0;
                padding: 0;
                row-gap: 5px;

                li {
                    border-bottom: 1px solid #eeeeee;
                    padding-bottom: 5px;

                    a.post-title {
                        color: inherit;
                        display: block;

                        &:hover {
                            text-decoration: underline;
                        }
                    }

                    &:last-child {
                        border-bottom: none;
                        padding-bottom: 0;
                    }
                }
            }
        }
    }

    &.tin-destination-terms,
    &.tin-experience-terms {
        .widget-content {
            ul {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
                list-style: none;
                margin: 0;
                padding: 0;
                
                li {
                    a {
                        border: 1px solid #eeeeee;
                        border-radius: 100px;
                        color: inherit;
                        display: inline-flex;
                        padding: 3px 10px;
                    }
                }
            }
        }
    }
}
