/* Odeya Vidéo — styles CPT */

.odv-meta-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .odv-meta-bar {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }
    .odv-meta-sep {
        display: none;
    }
}

.odv-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.odv-meta-item .ti {
    color: #d9abab;
    font-size: 16px;
}

.odv-meta-sep {
    color: #ccc;
}

.odv-texte-2col {
    column-count: 2;
    column-gap: 2.5rem;
    column-fill: balance;
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .odv-texte-2col {
        column-count: 1;
    }
}

.odv-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1.5rem 0;
}

.odv-cta-btn {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    border-radius: 7px;
    background-color: #d9abab;
    color: #00131c;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid #d9abab;
    line-height: 1.4;
}

.odv-cta-btn:hover {
    background-color: #c99898;
    border-color: #c99898;
    color: #00131c;
}

.odv-cta-btn--dark {
    background-color: #00131c;
    color: #d9abab;
    border-color: #00131c;
}

.odv-cta-btn--dark:hover {
    background-color: #002233;
    border-color: #002233;
    color: #d9abab;
}

.odv-vimeo-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.odv-vimeo-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.odv-playlist__infos {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.odv-playlist__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.odv-playlist__telechargements {
    margin: 0.5rem 0;
}

.odv-playlist__texte {
    margin: 2rem 0;
}

.odv-playlist__seo {
    margin-top: 2rem;
    font-size: 0.9em;
}

/* ── Player playlist ──────────────────────────────────────────────────────── */

.odv-pl-wrapper {
    margin-bottom: 1rem;
}

.odv-pl-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #222;
    background: #111;
    border-radius: 0 0 4px 4px;
    max-height: 260px;
    overflow-y: auto;
}

.odv-pl-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid #1e1e1e;
    transition: background 0.15s;
}

.odv-pl-item:last-child {
    border-bottom: none;
}

.odv-pl-item:hover {
    background: #1a1a1a;
}

.odv-pl-item.odv-pl-active {
    background: #1e1515;
    border-left: 3px solid #d9abab;
}

.odv-pl-num {
    flex-shrink: 0;
    width: 1.6rem;
    font-size: 0.78em;
    color: #555;
    text-align: right;
}

.odv-pl-title {
    font-size: 0.85em;
    color: #ccc;
    line-height: 1.35;
}

.odv-pl-item.odv-pl-active .odv-pl-num {
    color: #d9abab;
}

.odv-pl-item.odv-pl-active .odv-pl-title {
    color: #fff;
}
