.categoryPage {
    margin-bottom: 60px;
}
.categoryPage__hero {
    position: relative;
    height: 330px;
    width: 100%;
}

.categoryPage__hero > * {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.categoryPage__bgOverlay {
    background-color: rgba(0, 0, 0, 0.20);
    z-index: 1;
}

.categoryPage__heroContent {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-title);
    color: #F2F5F5;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    z-index: 2;
}

/* CVP */
.categoryPage__tadCvp .tadCvp {
    top: 0px;
}

.categoryPage__navBackground {
    position: sticky;
    top: var(--header-height);
    background: white;
    z-index: 3;
}
.categoryPage__navContainer {
    display: flex;
    justify-content: space-between;
    overflow: auto;
    border-bottom: 1px solid var(--border-light-gray);
}
.categoryPage__navButton {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-family: var(--font-family-title);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    white-space: nowrap;
    color: #999;
    border-bottom: 2px solid transparent;
    padding: 15px 20px;
    cursor: pointer;
}
.categoryPage__navButton.active {
    color: black;
    border-bottom-color: black;
}
.categoryPage__navButton:hover,
.categoryPage__navButton:focus {
    color: black;
}
.categoryPage__navBackground.is-pinned {
    box-shadow: 0 0 8px #0008;
}
.categoryPage__navBackground.is-pinned .categoryPage__navContainer {
    border: none;
}

.categoryPage__overview {
    padding: var(--space-8, 32px) var(--space-4, 16px);
}

.categoryPage__intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.categoryPage__introLeft {
    max-width: 678px;
    text-align: center;
}

.categoryPage__eyebrow {
    color: var(--text-secondary);
    font-family: var(--font-family-body);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px; 
    letter-spacing: 0.42px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-transform: uppercase;
    margin: 0px;
}

.categoryPage__heading {
    color: var(--text-secondary);
    font-family: var(--font-family-title);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 24px;
    margin-top: 8px;
}

.categoryPage__subheading {
    color: var(--text-secondary);
    font-family: var(--font-family-title);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-top: 8px;
    margin-bottom: 24px;
}

.categoryPage__narrative {
    color: var(--text-secondary);
    font-family: var(--font-family-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.cruiseLine__about {
    margin-top: 20px;
    display: flex;
    width: 367px;
    height: 244px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-8, 32px);
    border-radius: var(--radius-xl, 16px);
    background: var(--surface-secondary);


}

.cruiseLine__about img {
    max-width: 183px;
    max-height: 78px;
}
.cruiseLine__stats {
    display: flex;
}

.cruiseLine__stats .divider {
    height: auto;
    min-height: 80px;
    width: 1px;
    background-color: var(--border-emphasis);
    margin: 0px 20px;
}

.cruiseLine__stat {
    flex: 1 1 50%;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4px;
 
}
.cruiseLine__stat span:first-child {
    color: var(--text-secondary);
    font-family: var(--font-family-title);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    }
.cruiseLine__stat span:last-child {
    color: var(--text-tertiary);
    font-family: var(--font-family-body);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; 
    text-transform: uppercase;
    display: block;
}

.categoryPage__sectionHeading {
    color: var(--text-primary);
    font-family: var(--font-family-title);
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;  
}

@media (min-width: 992px) {

    .categoryPage__heading {
        font-size: 40px;
        line-height: 48px;
    }

    .categoryPage__overview {
        padding: var(--space-16, 64px) 0px;
    }
    .categoryPage__intro {
        flex-direction: row;
    }
    .categoryPage__introLeft {
        text-align: left;
    }
    .categoryPage__introLeft.full-width {
        margin: 0px auto;
        text-align: center;
    }   
  
}

.categoryPage__sectionSubheading {
    color: var(--text-primary);
    font-family: var(--font-family-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.categoryPage__deals {
    padding: var(--space-6, 24px) 0px;
    background: var(--background-secondary); 

}

.categoryPage__sectionHeader {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.categoryPage__linkButton {
    color: var(--text-primary);
    font-family: var(--font-family-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px; 
    text-decoration-line: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    white-space: nowrap;

}

@media (min-width: 992px) {

    .categoryPage__sectionHeading {
        font-size: 28px;
        line-height: 36px;  
    }
    
    .categoryPage__sectionSubheading {
        font-size: 16px;
        line-height: 24px;
    }
    .categoryPage__linkButton {
        font-size: 18px;
        line-height: 28px; 

    } 
    .categoryPage__deals {
        padding: var(--space-10, 40px) 0px;
    }
}

.cruiselinePage__fleet, .categoryPage__crossLink {
    padding: var(--space-8, 32px) 0px var(--space-6, 24px) 0px;
}

.categoryPage__crossLink .baseCarousel {
    margin-top: 20px;
}


.cruiselinePage__fleetItem, .cruiselinePage__cruiselines {
    height: 120px;
    width: 172px;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    box-shadow: 0px 0.949px 2.371px 0px rgba(0, 0, 0, 0.20);
    padding: var(--space-2, 8px) var(--space-2, 8px) var(--space-3, 12px) var(--space-2, 8px);
}

.cruiselinePage__cruiselines .componentCarousel__imageWrapper {
    padding: 14px 16px;
    height: 80px; 
}

.cruiselinePage__fleetItem  .componentCarousel__imageWrapper {
    height: 80px; 
}
.cruiselinePage__fleetItem img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cruiselinePage__cruiselines img  {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cruiselinePage__fleetItem .componentCarousel__text,
.cruiselinePage__cruiselines .componentCarousel__text  {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    font-family: var(--font-family-title);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
} 
.cruiselinePage__cruiselines:hover {
    text-decoration: none;
}

.categoryPage__carouselButtons {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media (min-width: 992px) {
    .cruiselinePage__fleet, .categoryPage__crossLink {
        padding: var(--space-10, 40px) 0px 64px 0px;
    }
}

/* FAQ */
.categoryPage__faq {
    padding: var(--space-10, 40px) 0px;
    background: var(--background-primary);
    text-align: center;
}

.categoryPage__faqTitle {
    font-family: var(--font-family-title);
    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
    margin: 40px 0px 12px 0px;
    letter-spacing: 0.5px;
    text-underline-offset: 3px;
}

.categoryPage__accordion {
    margin-top: 20px;
    box-shadow: 0px 20px 40px 0px rgba(78, 87, 101, 0.15);
    box-shadow: 0px 20px 40px 0px color(display-p3 0.3117 0.3389 0.3917 / 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.categoryPage__accordion .tadAccordion__header {
    padding: 20px 40px 20px 16px;
    border-bottom: 1px solid #E4E7EC;
    background-color: #fff;
    text-align: left;
}


.categoryPage__accordion .tadAccordion__header.last {
    border: none;
}

.categoryPage__faq .tadAccordion.active+.tadAccordion .tadAccordion__header {
    border-top: 1px solid #E4E7EC;
}

.categoryPage__faq .tadAccordion__content {
    background-color: var(--gray-200);
    padding-left: 18px;
    padding-right: 16px;
    color: var(--text-tertiary);
    font-family: var(--font-family-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

.categoryPage__faq .tadAccordion__content strong {
    margin-top: 12px;
    display: block;
}

.categoryPage__faq .tadAccordion__icon {
    right: 16px;
    color: #00BFD6;
    font-size: 20px;
    font-weight: 600;
}

.categoryPage__faq .tadAccordion.active .tadAccordion__icon {
    transform: none !important;
}

.categoryPage__faq .tadAccordion.active .tadAccordion__icon::before {
    content: '\f077' !important;

}

@media (min-width: 992px) {
    .categoryPage__faq {
        padding-top: 40px;
        padding-bottom: var(--space-16, 64px);

    }
    
}

/* End FAQ */


.categoryPage__gallery {
    padding: var(--space-8, 32px) 0px var(--space-12, 48px) 0px;
    background: var(--background-secondary);
 }
.categoryPage__gallery .categoryPage__sectionHeading {
    margin-bottom:32px
 }

 .categoryPage__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
 }
 .categoryPage__image {
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 700px) {

    .categoryPage__images {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
}

@media (min-width: 992px) {
    .categoryPage__gallery {
        padding: var(--space-10, 40px) 0px var(--space-16, 64px) 0px;
     }
}


.categoryPage__blogSection {
    padding: 40px 0px;
}

.categoryPage__blogItems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
.categoryPage__blogItems .archive-wraper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 0px;
    width: 100%;
}

.categoryPage__blogItems .archive-wraper img {
    border-radius: var(--radius-md, 8px);
    height: 220px;
    object-fit: cover;
}
.categoryPage__blogItems .archive-wraper .article-category {
   display: none;
}

.categoryPage__blogItems .archive-wraper .article-title a {
    color: var(--text-primary);
    font-family: var(--font-family-title);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin: 15px 0px 8px 0px;
}
.categoryPage__blogItems .archive-wraper .article-content {
    color: var(--text-primary);
    font-family: var(--font-family-body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
}


/* 
@media (min-width: 700px) {
    .categoryPage__images {
        grid-template-columns: 1fr 1fr ;
    }
}
@media (min-width: 992px) {
    .categoryPage__images {
        grid-template-columns: 1fr 1fr 1fr;
    }
} */

.categoryPage__blogItem img {
    height: 225px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.categoryPage__blogHeading {
    color: var(--text-primary);
    font-family: FuturaBT;
    font-size: 24px;
    font-weight: 700;
    line-height: 28px; /* 116.667% */
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}
.categoryPage__blogDescription {
    color: var(--text-primary);
    font-family: Lato;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px; /* 137.5% */
    letter-spacing: 0.2px;
}

@media (min-width: 992px) {
    .categoryPage__blogItems {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

.categoryPage__bannerSection {
    padding: 40px 0px
}

.categoryPage__introBanner {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background-color: var(--gray-200);
}


.categoryPage__introBannerIcon {
    display: block;
    flex-grow: 0;
    height: 22px;
}

.categoryPage__introBannerText {
    color: #323232;
    text-align: center;
    font-family: var(--font-family-title);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}

.categoryPage__introBannerText span {
    display: block;
    font-family: var(--font-family-body);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-top: 3px;
}

.categoryPage__introBannerText span a {
    color: var(--TripATeal-500, #3797B0);
}

@media (min-width: 700px) {
    .categoryPage__introBanner {
        flex-direction: row;
        gap: 16px;
    }

    .categoryPage__introBannerText {
        font-size: 24px;
        text-align: left;
    }

    .categoryPage__introBannerText span {
        font-size: 16px;
        margin-top: 8px;
    }

    .categoryPage__introBannerIcon {
        height: 38px;
    }
}






/* Cruise Inspiration Module */
.cruise__inspirationWrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cruise__inspirationWrapper > * {
    padding: 24px 0px;
}

.cruise__cruisePortItem {
    max-width: 366px;
    height: 160px;
    width: 90%;
    box-shadow: 0px 0.949px 2.371px 0px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0.949px 2.371px 0px color(display-p3 0 0 0 / 0.20);
    border-radius: 12px ;
    overflow: hidden;
}

.cruise__cruisePortItem:hover {
text-decoration-color: var(--text-secondary);
}

.cruise__cruisePortItem .componentCarousel__imageWrapper {
    height: 120px;
    
} 

.cruise__cruisePortItem .componentCarousel__imageWrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.cruise__cruisePortItem .componentCarousel__text {
    color: var(--text-secondary);
    font-family: var(--font-family-title);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    padding: var(--space-2, 8px);
}

.cruisePort__image {
    width: 367px;
    border-radius: var(--radius-xl, 16px);
    height: 244px;
}

@media (min-width: 992px) {
    .cruise__cruisePortItem {
        width: 32%;
        max-width: 366px;
    }
}



/* CVP */
.cruiseOnly__CVP {
    font-size: 20px;
}
.cruiseOnly__cvp {
    position: relative;
    background: var(--gray-200, #F5F5F5);
    padding-top: 8px;
}
@media (min-width: 992px) {
    .cruiseOnly__cvp {
        padding-top: 0;
    }
}
.cruiseOnly__cvpItemContainer {
    display: flex;
    clear: both;
}
.cruiseOnly__cvpItem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.cruiseOnly__cvpIcon {
    font-size: 40px;
    color: var(--colour-text-tertiary, #444545)
}
.cruiseOnly__cvpText {
    line-height: 1.4;
}
.cruiseOnly__cvpTitle {
    font-family: var(--font-family-title);
    font-weight: 700;
    font-size: 16px;
    color: var(--colour-text-secondary, #262626)
}
.cruiseOnly__cvpBody {
    font-family: var(--font-family-body);
    font-weight: 500;
    font-size: 14px;
    color: var(--colour-text-tertiary, #444545)
}

.cruiseOnly__cvpIndicatorContainer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 5px 0;
}
.cruiseOnly__cvpIndicator {
    cursor: pointer;
    width: 5px;
    height: 5px;
    border-radius: 99px;
    background: #D0D5DD;
    opacity: 0.7;
}
.cruiseOnly__cvpIndicator.active {
    background: #98A2B3;
}

@media (max-width: 991px) {
    .cruiseOnly__cvpItemContainer {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }
    .cruiseOnly__cvpItem {
        width: 100%;
        flex-shrink: 0;
        scroll-snap-align: start;
        padding: 0 10px 15px;
        min-height: 82px;
    }
    .cruiseOnly__cvpDivider {
        display: none;
    }
}

@media (min-width: 992px) {
    .cruiseOnly__cvpIndicatorContainer {
        display: none;
    }
    .cruiseOnly__cvpItemContainer {
        gap: 16px;
        padding: 15px 0;
    }
    .cruiseOnly__cvpItem {
        flex: 1 1 0;
    }
    .cruiseOnly__cvpDivider {
        border-right: 1px solid var(--gray-400, #D0D5DD);
        margin: 7px 0;
    }
}