/* ─── Trek en Direct Cap Vert — Frontend CSS ──────────────────────────────── */

:root {
    --trcv-primary:    #d7006d;
    --trcv-primary-dk: #b0005a;
    --trcv-text:       #111111;
    --trcv-muted:      #888888;
    --trcv-border:     #e8e8e8;
    --trcv-tag-bg:     #f0f0f0;
    --trcv-tag-text:   #333333;
    --trcv-bg:         #ffffff;
    --trcv-sidebar-w:  300px;
    --font-main:       "Futura", "Futura Condensed", "Century Gothic", Arial, sans-serif;
    /* Set dynamically by JS to account for fixed site headers */
    --trcv-header-h:   0px;
}

/* ─── Layout ─────────────────────────────────────────────────────────────── */

#trcv-page {
    font-family: var(--font-main);
    color: var(--trcv-text);
    background: #f8f8f8;
    padding-top: var(--trcv-header-h);
}

#trcv-page-title {
    font-family: "Montserrat", "Open Sans", sans-serif;
    text-align: center;
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 32px 20px 20px;
    margin: 0;
    background: #fff;
}

#trcv-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

#trcv-main {
    flex: 1;
    min-width: 0;
}

#trcv-sidebar {
    width: var(--trcv-sidebar-w);
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--trcv-header-h) + 16px);
    padding-top:50px;
}

#trcv-sidebar iframe{
    max-width:100% !important;
    min-width:250px !important;
}

/* ─── Timeline ───────────────────────────────────────────────────────────── */

#trcv-timeline-wrap {
    position: sticky;
    top: var(--trcv-header-h);
    z-index: 100;
    background: var(--trcv-bg);
    border-bottom: 1px solid var(--trcv-border);
    padding: 10px 0;
    margin-bottom: 0;
}

#trcv-timeline-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#trcv-timeline-scroll {
    flex: 1;
    overflow-x: auto;
    display: flex;
    gap: 6px;
    scrollbar-width: none;
    padding-bottom: 2px;
}
#trcv-timeline-scroll::-webkit-scrollbar { display: none; }

.trcv-day-btn {
    flex-shrink: 0;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--trcv-border);
    background: #fff;
    color: var(--trcv-text);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
    letter-spacing: .03em;
}
.trcv-day-btn:hover:not(.trcv-day-empty) {
    border-color: var(--trcv-primary);
    color: var(--trcv-primary);
    background: #fff;
}
.trcv-day-btn.trcv-day-active {
    background: var(--trcv-primary);
    border-color: var(--trcv-primary);
    color: #fff;
    font-size: 14px;
    padding: 6px 15px;
}
.trcv-day-btn.trcv-day-empty {
    opacity: .38;
    cursor: default;
    pointer-events: none;
}

/* Bouton Filtres */
#trcv-filter-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--trcv-border);
    background: #fff;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--trcv-text);
    white-space: nowrap;
    transition: border-color .15s;
}
#trcv-filter-btn:hover,
#trcv-filter-btn.active {
    border-color: var(--trcv-primary);
    color: var(--trcv-primary);
}
#trcv-filter-btn svg { flex-shrink: 0; }

/* Dropdown filtres */
#trcv-filter-dropdown {
    display: none;
    position: absolute;
    right: 20px;
    top: calc(100% + 4px);
    background: #fff;
    border: 1px solid var(--trcv-border);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    padding: 8px;
    z-index: 200;
    min-width: 160px;
}
#trcv-filter-dropdown.open { display: block; }

.trcv-filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    user-select: none;
    transition: background .1s;
}
.trcv-filter-option:hover { background: #f5f5f5; }
.trcv-filter-option input { cursor: pointer; }


/* ─── Entête de date ─────────────────────────────────────────────────────── */

#trcv-date-header {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--trcv-muted);
    padding: 20px 0 12px;
    border-bottom: 2px solid var(--trcv-border);
    margin-bottom: 4px;
    min-height: 1.5em;
}


/* ─── Articles ───────────────────────────────────────────────────────────── */

.trcv-article {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.05);
    overflow: hidden;
    margin-bottom: 16px;
}
.trcv-article:last-child { margin-bottom: 0; }

/* Zone media pleine largeur (image / vidéo / galerie) */
.trcv-article-media {
    width: 100%;
    line-height: 0;
}
.trcv-article-media .trcv-media-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.trcv-article-media .trcv-video-responsive {
    position: relative;
    padding-top: 56.25%;
    margin: 0;
}
.trcv-article-media .trcv-video-responsive iframe,
.trcv-article-media .trcv-video-responsive .trcv-yt-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.trcv-article-media .trcv-gallery,
.trcv-article-media .trcv-photo-featured {
    margin: 0;
    border-radius: 0;
}
/* Dans une gallery-cell, l'image doit couvrir toute la cellule (aspect-ratio fixe) */
.trcv-article-media .trcv-gallery-cell .trcv-media-img {
    height: 100%;
    max-height: none;
}

/* Zones padded de la carte */
.trcv-article-header {
    padding: 18px 20px 10px;
}
.trcv-article-footer {
    padding: 10px 20px 14px;
}

/* Méta */
.trcv-article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}
.trcv-meta-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
}
.trcv-article-time {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1;
    margin-right: 4px;
}
.trcv-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
    line-height: 1.4;
}
.trcv-tag-type {
    background: var(--trcv-tag-bg);
    color: var(--trcv-tag-text);
}
.trcv-tag-label {
    background: transparent;
    color: var(--trcv-muted);
    padding: 3px 0;
}

/* Titre */
.trcv-article-title {
    font-family: "Montserrat", "Open Sans", sans-serif;
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.2;
    margin: 0;
    color: var(--trcv-text);
}

/* Corps */
.trcv-article-body {
    margin-bottom: 14px;
}

/* ─── Texte ──────────────────────────────────────────────────────────────── */

.trcv-texte-content {
    font-size: 15px;
    line-height: 1.7;
    color: #222;
}
.trcv-texte-wrap.trcv-truncated .trcv-texte-content {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}
.trcv-texte-wrap.trcv-truncated .trcv-texte-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #fff);
}
.trcv-texte-wrap.trcv-expanded .trcv-texte-content {
    max-height: none;
}
.trcv-texte-wrap.trcv-expanded .trcv-texte-content::after {
    display: none;
}
.trcv-lire-suite {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid var(--trcv-border);
    background: #fff;
    color: var(--trcv-text);
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    white-space: nowrap;
}
.trcv-lire-suite:hover {
    border-color: var(--trcv-primary);
    color: var(--trcv-primary);
    background: #fff;
}
.trcv-expanded .trcv-lire-suite {
    background: var(--trcv-primary);
    border-color: var(--trcv-primary);
    color: #fff;
}
.trcv-lire-suite svg { transition: transform .2s; }
.trcv-expanded .trcv-lire-suite svg { transform: rotate(180deg); }

/* ─── Vidéo ──────────────────────────────────────────────────────────────── */

.trcv-video-responsive {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.trcv-video-description {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* ─── Photo / Galerie ────────────────────────────────────────────────────── */

.trcv-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
}
.trcv-gallery[data-count="1"] {
    grid-template-columns: 1fr;
}
.trcv-photo-featured {
    cursor: pointer;
}
.trcv-gallery-cell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f0f0f0;
}
.trcv-gallery-cell img,
.trcv-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.trcv-gallery-cell:hover img { transform: scale(1.03); }
.trcv-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    letter-spacing: .02em;
}
.trcv-photo-featured .trcv-gallery-cell { aspect-ratio: 16/9; }
.trcv-photo-description {
    margin-top: 10px;
    font-size: 14px;
    font-style: italic;
    color: #555;
}

/* ─── Audio ──────────────────────────────────────────────────────────────── */
.trcv-audio-playlist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trcv-audio-track {
    background: #f7f7f7;
    border-radius: 6px;
    padding: 10px 14px;
    border: 1px solid #eee;
}
.trcv-audio-track-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--trcv-text);
}
.trcv-audio-icon { color: var(--trcv-primary); flex-shrink: 0; }
.trcv-player {
    width: 100%;
    height: 36px;
    accent-color: var(--trcv-primary);
}
.trcv-audio-description {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* ─── Barre de partage ───────────────────────────────────────────────────── */

.trcv-share-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    flex-wrap: wrap;
}
.trcv-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--trcv-border);
    background: #fff;
    color: #555;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
    text-decoration: none;
    padding: 0;
    font-family: inherit;
}
.trcv-share-btn:hover {
    background: var(--trcv-primary);
    border-color: var(--trcv-primary);
    color: #fff;
}
.trcv-copy-feedback {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.trcv-copy-feedback.visible { opacity: 1; }


/* ─── Loader ─────────────────────────────────────────────────────────────── */

#trcv-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 14px;
}
#trcv-loader.visible { display: flex; }

.trcv-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--trcv-border);
    border-top-color: var(--trcv-primary);
    border-radius: 50%;
    animation: trcv-spin .7s linear infinite;
}
@keyframes trcv-spin {
    to { transform: rotate(360deg); }
}
.trcv-loader-text {
    font-size: 13px;
    color: var(--trcv-muted);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Message vide / erreur */
.trcv-empty {
    padding: 40px 0;
    color: var(--trcv-muted);
    font-style: italic;
    font-size: 15px;
}


/* ─── Sidebar ────────────────────────────────────────────────────────────── */

#trcv-sidebar .trcv-sidebar-block {
    margin-bottom: 24px;
    background-color:#fff;
}

/* Bloc classement */
.trcv-classement-card {
    display: block;
    background: var(--trcv-primary);
    color: #fff;
    border-radius: 8px;
    padding: 18px 20px;
    text-decoration: none;
    transition: background .15s;
    position: relative;
    overflow: hidden;
}
.trcv-classement-card:hover {
    background: var(--trcv-primary-dk);
    color: #fff;
}
.trcv-classement-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.trcv-classement-card svg { flex-shrink: 0; }
.trcv-classement-card-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    flex: 1;
}
.trcv-classement-card-sub {
    font-size: 12px;
    opacity: .85;
    letter-spacing: .04em;
}
.trcv-classement-ext-icon {
    position: absolute;
    top: 12px;
    right: 14px;
    opacity: .7;
}

/* Icônes réseaux sociaux */
.trcv-social-icons {
    display: flex;
    gap: 12px;
    padding: 4px 0;
    flex-wrap: wrap;
}
.trcv-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--trcv-border);
    color: #555;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.trcv-social-icon:hover {
    background: var(--trcv-primary);
    border-color: var(--trcv-primary);
    color: #fff;
}

/* En-tête des blocs sociaux (icône + lien) */
.trcv-sidebar-social-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--trcv-text);
}
.trcv-sidebar-social-header a {
    color: var(--trcv-text);
    text-decoration: none;
}
.trcv-sidebar-social-header a:hover {
    color: var(--trcv-primary);
}

/* Iframe Facebook page — pleine largeur, ratio preservé */
.trcv-fb-page-wrap {
    overflow: hidden;
    border-radius: 6px;
    line-height: 0;
}
.trcv-fb-page-wrap iframe {
    width: 100% !important;
    min-height: 500px;
    border-radius: 6px;
}

/* Titres sections sidebar */
.trcv-sidebar-section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--trcv-muted);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--trcv-border);
}

/* Zone de widgets */
.trcv-sidebar-widgets { font-size: 14px; }
.trcv-sidebar-widgets > * + * { margin-top: 16px; }

/* Liens réseaux sociaux — une ligne, icônes uniquement */
.trcv-social-links {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.trcv-social-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: opacity .15s;
}
.trcv-social-link span { display: none; }
.trcv-social-link:hover { opacity: .85; color: #fff; text-decoration: none; }
.trcv-social-link--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.trcv-social-link--fb { background: #1877f2; }
.trcv-social-link--yt { background: #ff0000; }
.trcv-social-link--li { background: #0a66c2; }


/* ─── Lightbox ───────────────────────────────────────────────────────────── */

#trcv-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.92);
    align-items: center;
    justify-content: center;
    animation: trcv-lb-in .2s ease;
}
#trcv-lightbox.open { display: flex; }
@keyframes trcv-lb-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
#trcv-lb-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 2px;
    display: block;
    animation: trcv-lb-img-in .2s ease;
}
@keyframes trcv-lb-img-in {
    from { opacity: 0; transform: scale(.97); }
    to   { opacity: 1; transform: scale(1); }
}
.trcv-lb-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .15s;
    font-size: 20px;
    padding: 0;
}
.trcv-lb-btn:hover { background: rgba(255,255,255,.28); }
#trcv-lb-prev { left: 16px; }
#trcv-lb-next { right: 16px; }
#trcv-lb-close {
    position: fixed;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    transition: background .15s;
}
#trcv-lb-close:hover { background: rgba(255,255,255,.28); }
#trcv-lb-counter {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 13px;
    font-family: var(--font-main);
}


/* ─── Compte-à-rebours ───────────────────────────────────────────────────── */

#trcv-countdown-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 48px 20px 60px;
}

#trcv-countdown-title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: var(--trcv-text);
}

.trcv-countdown-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--trcv-primary);
    font-weight: 700;
    margin: 0 0 6px;
}

.trcv-countdown-soon {
    font-size: 15px;
    color: var(--trcv-muted);
    margin: 0 0 48px;
    letter-spacing: .06em;
}

#trcv-countdown-timer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    justify-content: center;
}

.trcv-cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--trcv-text);
    color: #fff;
    border-radius: 8px;
    padding: 18px 22px;
    min-width: 80px;
}

.trcv-cd-value {
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.02em;
    font-variant-numeric: tabular-nums;
}

.trcv-cd-label {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .65;
    font-weight: 600;
}

.trcv-cd-sep {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--trcv-text);
    opacity: .3;
    line-height: 1;
    margin-bottom: 20px; /* aligner avec les valeurs */
}

.trcv-countdown-date-label {
    font-size: 14px;
    color: var(--trcv-muted);
    letter-spacing: .04em;
    margin: 0;
}
.trcv-countdown-date-label strong {
    color: var(--trcv-text);
}

/* Bannière admin en mode preview */
.trcv-admin-preview-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-left: 4px solid #ffc107;
    padding: 10px 16px;
    font-size: 13px;
    color: #856404;
    max-width: 1240px;
    margin: 0 auto 0;
}


/* Classement mobile : masqué sur desktop, pleine largeur */
.trcv-classement-mobile {
    display: none;
    width: 100%;
}

/* ─── Partenaires — slider infini horizontal (sidebar) ──────────────────── */

@keyframes trcv-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.trcv-partners-sidebar {
    overflow: hidden;
    padding: 0 !important;
}

.trcv-partners-sidebar .trcv-partners-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
    animation: trcv-scroll 18s linear infinite;
}
.trcv-partners-sidebar .trcv-partners-track:hover { animation-play-state: paused; }

.trcv-partner-item {
    flex-shrink: 0;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trcv-partner-item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: grayscale(40%);
    opacity: .75;
    transition: filter .2s, opacity .2s;
    display: block;
}
.trcv-partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.trcv-partner-item a {
    display: flex;
    align-items: center;
}


/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
    #trcv-layout {
        flex-direction: column;
        gap: 32px;
    }
    #trcv-sidebar {
        width: 100%;
        position: static;
    }
    /* Classement : afficher la version mobile, masquer celle de la sidebar */
    .trcv-classement-mobile { display: block; }
    #trcv-sidebar .trcv-sidebar-block:has(.trcv-classement-card) { display: none; }
    .trcv-sidebar-widgets { columns: 2; column-gap: 20px; }
    .trcv-sidebar-widgets > * { break-inside: avoid; margin-bottom: 16px; }
}

@media (max-width: 600px) {
    #trcv-page-title { padding: 20px 16px 16px; }
    #trcv-layout { padding: 0 16px 40px; }
    .trcv-article-time { font-size: 18px; }
    .trcv-gallery { gap: 2px; }
    .trcv-sidebar-widgets { columns: 1; }
    .trcv-lb-btn { display: none; }
    .trcv-cd-unit { min-width: 64px; padding: 14px 16px; }
    #trcv-countdown-timer { gap: 8px; }
    .trcv-cd-sep { margin-bottom: 16px; }
}
