/* ---------- Shared Variables (from amenities + circuit) ---------- */
:root {
    --yd-orange: #ff6e00;
    --yd-orange-soft: #fff2e6;
    --yd-maroon: #6a1b3b;
    --yd-navy: #092546;
    --yd-ink: #18171d;
    --yd-muted: #6b6470;
    --yd-green: #1a9c5b;
    --yd-green-soft: #e9f9f0;
    --yd-border: #f0e2d3;
    --yd-border-alt: #f0e4dc;
    --yd-success-text: #137333;
    --yd-success-hover: #d2e3fc;
}

/* ==========================================================================
   1. LOCATION + AMENITIES (from amenities.css)
   ========================================================================== */
.ota-location {
    margin-bottom: 20px;
}

.ota-location-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--yd-border-alt);
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(16, 24, 40, 0.04);
}

.ota-location-row--full {
    width: 100%;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--yd-border-alt);
    border-right: none !important;
}

.ota-location-contacts {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 12px 0;
}

.ota-location-row {
    display: flex;
    flex: 1 1 50%;
    align-items: flex-start;
    gap: 12px;
    min-width: 200px;
    padding: 0 14px 0 0;
}

.ota-location-contacts .ota-location-row:not(:last-child) {
    border-right: 1px solid var(--yd-border-alt);
    padding-right: 14px;
}

.ota-location-contacts .ota-location-row:not(:first-child) {
    padding-left: 14px;
}

.ota-location-icon img {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.ota-location-content {
    flex: 1;
    min-width: 0;
}

.ota-location-label {
    display: block;
    margin-bottom: 2px;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9a8f96;
}

.ota-location-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #2d2a32;
    word-break: break-word;
}

.ota-location-text a {
    color: #2d2a32;
    text-decoration: none;
}

.ota-location-text a:hover {
    color: var(--yd-orange);
}

#ydSectionLocation {
    scroll-margin-top: 16px;
}

/* Amenities Grid */
.ydAmen2-row {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ydAmen2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 10px;
    margin: 0 0 -10px 0;
    padding: 0;
    list-style: none;
}

.ydAmen2-item {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background-color 0.15s ease;
}

.ydAmen2-item img {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.ydAmen2-label {
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    color: var(--yd-ink);
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ydAmen2-lowerGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.ydAmen2-pills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ydPill {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e4dde0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--yd-ink);
    text-align: left;
    text-decoration: none !important;
    cursor: pointer;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.ydPill:hover,
.ydPill:focus-visible {
    border-color: var(--yd-orange);
    box-shadow: 0 4px 10px rgba(255, 110, 0, 0.12);
    transform: translateY(-1px);
    color: var(--yd-ink);
}

.ydPill img {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.ydPill.ydPill-primary {
    background: var(--yd-orange-soft);
    border-color: #f0d9c8;
    color: var(--yd-maroon);
    font-weight: 700;
}

.ydNote2-card {
    padding: 12px 14px;
    background: #fffaf5;
    border: 1px solid var(--yd-border);
    border-radius: 10px;
}

.ydNote2-title {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--yd-maroon);
}

.ydNote2-title img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.ydNote2-card ul {
    margin: 0;
    padding-left: 16px;
}

.ydNote2-card li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--yd-muted);
}

/* Sidebar / Trust / Check-in */
.ydTrust2-banner {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 0;
    padding: 10px 12px;
    background: var(--yd-green-soft);
    border-radius: 10px;
}

.ydTrust2-dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-top: 5px;
    background: var(--yd-green);
    border-radius: 50%;
}

.ydTrust2-title {
    margin: 0 0 1px 0;
    font-size: 14px;
    font-weight: 800;
    color: #0f7a45;
}

.ydTrust2-sub {
    margin: 0;
    font-size: 12px;
    color: #3f6a52;
}

.ydCheckCard2 {
    margin-bottom: 0;
    overflow: hidden;
    border: 1px solid var(--yd-border);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05), 0 6px 16px rgba(16, 24, 40, 0.06);
}

.ydCheckCard2-head {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    background: linear-gradient(90deg, var(--yd-orange), #ff8f2e);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.ydCheckCard2-body {
    display: flex;
    background: #fff;
}

.ydCheckCard2-col {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 11px 12px;
}

.ydCheckCard2-col+.ydCheckCard2-col {
    border-left: 1px solid #f1eceb;
}

.ydCheckCard2-col img {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.ydCheckCard2-label {
    margin: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #a8a1ac;
}

.ydCheckCard2-time {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    color: var(--yd-ink);
    white-space: nowrap;
}

.ydCancel2-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.ydCancel2-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background-color: var(--yd-green-soft);
    color: var(--yd-success-text);
    border: 1px solid var(--yd-green-soft);
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    user-select: none;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.ydCancel2-badge:hover {
    background-color: #d8efe0;
    border-color: #b7e1cd;
}

.ydCancel2-badge .fa,
.ydCancel2-badge svg {
    flex-shrink: 0;
    font-size: 11px;
    width: 12px;
    height: 12px;
}

.ydCancel2-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--yd-maroon);
    text-decoration: underline;
    text-decoration-color: rgba(106, 27, 59, 0.3);
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.ydCancel2-link:hover,
.ydCancel2-link:focus-visible {
    color: var(--yd-orange);
    text-decoration-color: var(--yd-orange);
    outline: none;
}

/* Equal height – Location + Amenities (desktop) */
.yd-eq-row {
    margin-top: 20px !important
}

@media (min-width: 992px) {
    .yd-eq-row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .yd-eq-row>[class*="col-"] {
        display: flex;
        flex-direction: column;
    }

    .yd-eq-row .ota-location,
    .yd-eq-row #ydSectionAmenities {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        width: 100%;
        height: 100%;
        margin-bottom: 0;
    }

    .yd-eq-row .ota-content-card,
    .yd-eq-row .yd-p-general__body,
    .yd-eq-row .propertyRules-main-box {
        flex: 1 1 auto;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 991px) {

    .yd-eq-row>[class*="col-"],
    .yd-eq-row .ota-location,
    .yd-eq-row #ydSectionAmenities {
        height: auto;
        display: block;
    }
}

/* Policies & Rules */
.ydPolicy-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ydPolicy-core {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ydPolicy-note {
    min-width: 0;
}

.ydPolicy-note .ydNote2-card {
    height: 100%;
    margin: 0;
}

.ydPolicy-note .ydNote2-card ul {
    margin: 0;
    padding-left: 18px;
}

.ydPolicy-note .ydNote2-card li {
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--yd-muted);
}

.ydPolicy-note .ydNote2-card li:last-child {
    margin-bottom: 0;
}

.ydPolicy-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--yd-border-alt);
}

.ydPolicy-actions .ydPill {
    width: auto;
    min-width: 160px;
    flex: 0 1 auto;
}

/* Amenities responsive */
@media (min-width: 480px) {
    .ydAmen2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .ydAmen2-lowerGrid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 640px) and (max-width: 991px) {
    .ydPolicy-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 16px 20px;
        align-items: start;
    }
}

@media (min-width: 992px) {
    #ydSectionTnc {
        margin-top: 28px;
    }

    .ydAmen2-row {
        flex-direction: row;
        align-items: flex-start;
    }

    .ydAmen2-right {
        flex: 1 1 auto;
        min-width: 0;
    }

    .ydAmen2-left {
        flex: 0 0 300px;
    }

    .ydAmen2-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ydPolicy-grid {
        display: grid;
        grid-template-columns: minmax(280px, 340px) 1fr;
        gap: 20px 28px;
        align-items: start;
    }

    .ydPolicy-actions {
        margin-top: 18px;
    }
}

@media (max-width: 900px) {
    .ota-location-row {
        flex: 1 1 calc(50% - 1px);
        min-width: 160px;
        padding: 10px 12px;
        border-right: none;
        border-bottom: 1px solid var(--yd-border-alt);
    }

    .ota-location-row:nth-child(odd) {
        border-right: 1px solid var(--yd-border-alt);
    }

    .ota-location-row:nth-last-child(-n + 2) {
        border-bottom: none;
    }

    .ota-location-row:last-child {
        border-right: none;
    }
}

@media (max-width: 639px) {
    .ydPolicy-actions .ydPill {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 560px) {
    .ota-location-contacts {
        flex-direction: column;
        gap: 12px;
    }

    .ota-location-row,
    .ota-location-contacts .ota-location-row:not(:first-child) {
        flex: 1 1 100%;
        padding: 0;
        border-right: none !important;
    }

    .ota-location-contacts .ota-location-row:not(:last-child) {
        border-bottom: 1px solid var(--yd-border-alt);
        padding-bottom: 12px;
    }

    .ota-location-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ydAmen2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   2. OFFER CARD + CIRCUIT / RELATED DESTINATIONS (from ptblock-circuit.css)
   ========================================================================== */
.ydSection {
    --yd-orange: #ff6e00;
    --yd-orange-soft: #fff2e6;
    --yd-maroon: #6a1b3b;
    --yd-navy: #092546;
    --yd-ink: #18171d;
    --yd-muted: #6b6470;
    width: 100%;
    margin: 0 0 24px 0;
}

.ydSection * {
    box-sizing: border-box;
}

@keyframes ydShimmer {
    0% {
        background-position: -300px 0;
    }

    100% {
        background-position: 300px 0;
    }
}

.ydSkeleton {
    background-image: linear-gradient(90deg, #eef0f2 0px, #f7f8f9 40px, #eef0f2 80px);
    background-size: 300px 100%;
    background-repeat: no-repeat;
    animation: ydShimmer 1.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .ydSkeleton {
        animation: none;
    }
}

/* Offer Card */
.ydOffer {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .05), 0 10px 28px rgba(16, 24, 40, .09);
}

.ydOffer-slide {
    display: none;
}

.ydOffer-slide.is-active {
    display: flex;
    flex-direction: column;
    animation: ydFadeIn .4s ease both;
}

@keyframes ydFadeIn {
    from {
        opacity: 0;
        transform: translateY(2px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ydOffer-slide.is-active {
        animation: none;
    }
}

.ydOffer-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.ydOffer-media img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}

.ydOffer:hover .ydOffer-media img {
    transform: scale(1.05);
}

.ydOffer-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 20, 40, 0) 45%, rgba(9, 20, 40, .82) 100%);
    pointer-events: none;
}

.ydOffer-ribbon {
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--yd-navy);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 5px 12px 5px 10px;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);
}

.ydOffer-ribbon svg {
    width: 11px;
    height: 11px;
    flex: 0 0 auto;
}

.ydOffer-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.01em;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .35);
}

.ydOffer-caption .ydOffer-accent {
    color: #ffc94d;
}

.ydOffer-body {
    padding: 14px 16px 16px 16px;
}

.ydOffer-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin: 0 0 14px 0;
}

.ydOffer-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--yd-muted);
}

.ydOffer-trust svg {
    width: 13px;
    height: 13px;
    flex: 0 0 auto;
    color: #1a9c5b;
}

.ydOffer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ydOffer-footer-text {
    min-width: 0;
}

.ydOffer-footer-label {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #a8a1ac;
    margin: 0 0 2px 0;
}

.ydOffer-footer-sub {
    font-size: 12.5px;
    color: var(--yd-ink);
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ydOffer-cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, var(--yd-orange), #ff8f2e);
    color: #fff !important;
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 24px;
    text-decoration: none !important;
    box-shadow: 0 6px 14px rgba(255, 110, 0, .3);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    white-space: nowrap;
}

.ydOffer-cta:hover,
.ydOffer-cta:focus-visible {
    transform: translateY(-1px);
    filter: brightness(1.04);
    box-shadow: 0 8px 18px rgba(255, 110, 0, .38);
    color: #fff !important;
}

.ydOffer-cta:active {
    transform: translateY(0);
}

.ydOffer-cta svg {
    width: 13px;
    height: 13px;
    transition: transform .15s ease;
}

.ydOffer-cta:hover svg {
    transform: translateX(2px);
}

.ydOffer-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0 0 14px 0;
}

.ydOffer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e3d9db;
    transition: width .2s ease, background-color .2s ease;
}

.ydOffer-dot.is-active {
    background: var(--yd-orange);
    width: 18px;
    border-radius: 3px;
}

.ydSection a:focus-visible {
    outline: 2px solid var(--yd-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Circuit / Related Destinations */
.ydc-circuit {
    background: #fff;
    border: 1px solid #eee4df;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(16, 24, 40, 0.04);
}

.ydc-circuit__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 12px;
    border-bottom: 1px solid #f3ebe6;
    background: #fffaf7;
}

.ydc-circuit__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2d2a32;
}

.ydc-circuit__label i {
    color: #ff6e00;
    font-size: 14px;
}

.ydc-circuit__count {
    font-size: 12px;
    color: #9a8f96;
    font-weight: 500;
    background: #f7f2ef;
    padding: 3px 9px;
    border-radius: 20px;
}

.ydc-circuit__list {
    list-style: none;
    margin: 0;
    padding: 6px 0;
}

.ydc-circuit__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    text-decoration: none;
    color: #1f1c24;
    transition: background 0.15s ease;
    border-left: 3px solid transparent;
}

.ydc-circuit__item:hover {
    background: #fff8f3;
    border-left-color: #ff6e00;
}

.ydc-circuit__name {
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.ydc-circuit__chevron {
    color: #c4b8b0;
    font-size: 15px;
    transition: all 0.15s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.ydc-circuit__item:hover .ydc-circuit__chevron {
    color: #ff6e00;
    transform: translateX(3px);
}

/* Circuit mobile */
@media (max-width: 600px) {
    .ydc-circuit {
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .ydc-circuit__head {
        padding: 12px 14px 10px;
    }

    .ydc-circuit__item {
        padding: 12px 14px;
    }

    .ydc-circuit__name {
        font-size: 14px;
    }

    .ydc-circuit__count {
        font-size: 11px;
        padding: 2px 8px;
    }
}

/* Offer layout */
@media (min-width: 768px) {
    .ydOffer-col {
        flex: 0 0 340px;
    }

    .ydOffer {
        height: 100%;
    }
}

@media (min-width: 992px) {
    .ydOffer-col {
        flex-basis: 380px;
    }
}

@media (max-width: 480px) {
    .ydOffer-caption {
        font-size: 15.5px;
    }

    .ydOffer-body {
        padding: 12px 14px 14px 14px;
    }
}

/* ==========================================================================
   3. YOUTUBE / MEDIA REVIEWS (from v-media.css)
   ========================================================================== */
.ota-yt-reviews__head {
    margin-bottom: 14px;
}

.ota-yt-reviews__sub {
    margin: 4px 0 0;
    font-size: 13.5px;
    color: #8a7f87;
    font-weight: 400;
}

.ota-yt-card {
    background: #fff;
    border: 1px solid #eee4df;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(16, 24, 40, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.ota-yt-card:hover {
    border-color: #f0c9b0;
    box-shadow: 0 6px 18px rgba(255, 110, 0, 0.08);
}

.ota-yt-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
}

.yt-lazy-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.yt-lazy-box .yt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.yt-lazy-box iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ota-yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.ota-yt-play__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.ota-yt-play__icon .fa-play {
    margin-left: 3px;
}

.ota-yt-play:hover .ota-yt-play__icon {
    transform: scale(1.08);
    background: #fff;
}

.ota-yt-card__caption {
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #632240;
    line-height: 1.35;
    background: rgba(255, 119, 51, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 119, 51, 0.15);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 10px;
}

.ota-yt-carousel .owl-nav {
    position: absolute;
    top: 38%;
    width: 100%;
    margin: 0;
    pointer-events: none;
}

.ota-yt-carousel .owl-prev,
.ota-yt-carousel .owl-next {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff !important;
    color: #ff6e00 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    font-size: 18px;
    transition: background 0.15s ease, color 0.15s ease;
}

.ota-yt-carousel .owl-prev {
    left: -6px;
}

.ota-yt-carousel .owl-next {
    right: -6px;
}

.ota-yt-carousel .owl-prev:hover,
.ota-yt-carousel .owl-next:hover {
    background: #ff6e00 !important;
    color: #fff !important;
}

.ota-yt-carousel .owl-dots {
    margin-top: 12px;
    text-align: center;
}

.ota-yt-carousel .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 0 4px;
    background: #e5d9d0;
    border-radius: 50%;
    display: block;
    transition: background 0.15s ease, transform 0.15s ease;
}

.ota-yt-carousel .owl-dot.active span {
    background: #ff6e00;
    transform: scale(1.15);
}

#ydSectionYtReviews {
    scroll-margin-top: 68px;
}

@media (max-width: 767px) {
    .ota-yt-play__icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .ota-yt-carousel .owl-prev,
    .ota-yt-carousel .owl-next {
        display: none !important;
    }
}