/* Контейнер секції “Similar places nearby” */
.ct-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.ct-cards-big {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

/* Картка */
.ct-cardlist {
    /*display: block;*/
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    background: #fff;

    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ct-cardlist img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    display: block;
}

.ct-cardlist .ct-pad {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
}

.ct-small {
    font-size: .9rem;
    opacity: .8;
    margin: .25rem 0 1rem;
}

.ct-btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    background: #111;
    color: #fff;
}

/* Приберіть інлайновий стиль зі single-listing-vacation.php і використайте це */
.single-listing-cont {
    position: relative;
    padding: 80px 0 0 0; /* заміна вашого inline */
    width: 100%;
}

/* Адаптив сітки */
@media (max-width: 1024px) {
    .ct-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .ct-cards { grid-template-columns: 1fr; }
}


/* specs line with icons */
.ct-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    color: rgba(255,255,255,.6); /* підлаштуйте під вашу тему; на світлому тлі зробіть темнішим */
    margin: .35rem 0 .75rem;
}

.ct-cardlist .ct-spec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    padding-right: 14px;
}

.ct-cardlist .ct-spec + .ct-spec {
    border-left: 1px solid rgba(255,255,255,.15); /* або rgba(0,0,0,.15) на світлому */
    padding-left: 14px;
}

/* FA icons inside spec line */
.ct-cardlist .ct-spec i {
    font-size: 0.95rem;
    line-height: 1;
    opacity: .9;
}

.ct-cardlist .ct-price {
    font-weight: 600;
    margin: .25rem 0 1rem;
}


.ct-icon{
    width: 1.1em;
    height: 1.1em;
    vertical-align: -0.15em;
    color: currentColor;   /* наслідує колір тексту чіпа */
}
.ct-chip .ct-icon{ margin-right: .35em; }




.ct-video-lazy{
    position: relative;
    width: 100%;
    max-width: 800px;           /* за потреби */
    aspect-ratio: 16 / 9;       /* тримаємо місце під відео */
    border-radius: 12px;
    overflow: hidden;
    background: #111;
}
.ct-video-poster{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ct-video-play{
    position: absolute;
    inset: 0;
    margin: auto;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: 28px;
    line-height: 72px;
    text-align: center;
    transition: transform .15s ease, background .15s ease;
}
.ct-video-play:hover{ transform: scale(1.06); background: rgba(0,0,0,.75); }
.ct-video-iframe{
    position:absolute; inset:0; width:100%; height:100%; border:0;
    border-radius: 12px;
}
.ct-video-play img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}