.old-riga {
    background: #000;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
}

.tour-content {
    width: 100%;
    height: max-content;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: auto;
    position: relative;          
}

.tour-image-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.tour-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.slider-controls {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-controls .ui-h-line {
    margin-right: 0;
}

.tour-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-height: 505px;
}

.tour-title {
    font-family: DINPro-CondensedBlack;
    font-size: 72px;
    line-height: 78px;
}

.tour-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-item img {
    width: 20px;
}

.meta-item .material-symbols-outlined {
    font-size: 26px;
}

.tour-description {
    flex: 1;
    overflow-y: auto;
    text-transform: none;
    font-size: 16px;
    line-height: 28px;
    padding-right: 10px;
    scrollbar-width: thin;          
    scrollbar-color: #fff transparent; 
}

.tour-description::-webkit-scrollbar{
    width:10px;                            
    background:transparent;                 
}

.tour-description::-webkit-scrollbar-track{
    background:#000;                   
    border:2px solid #fff;             
    border-radius:6px;
}

.tour-description::-webkit-scrollbar-thumb{
    background:#111;                  
    border-radius:4px;
    margin:2px;                          
}

.tour-description::-webkit-scrollbar-button,           
.tour-description::-webkit-scrollbar-corner{
    display:none;
    width:0;
    height:0;
}

.order-btn {
    background: none;
    border: 2px solid #fff;
    border-radius: 25px;
    padding: 15px 45px;
    font-size: 12px;
    text-transform: uppercase;
    color: inherit;
    cursor: pointer;
    width: max-content;
}

.social-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 0 10px 0;
}

.social-footer .social-media {
    display: flex;
    gap: 10px;
}

.social-footer .social-media img {
    width: 35px;
    cursor: pointer;
}

.old-riga-2-background {
    background: url('./src/img/2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

@media (max-width: 1200px) {
    .tour-content {
        grid-template-columns: 1fr!important;
    }

    .tour-info-section {
        max-height: none!important;
    }

    .tour-image {
        height: 450px!important;
    }
}

.left-side-controls{
    position: static;
    padding: 0;
}