/* Aligner la div-separator à droite */
.div-separator {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
/*
 * Stylesheet for Communiqués de Presse Audio
 * Version: 2.0.3
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.cdp-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.cdp-item {
    padding: 30px 0;
    border-bottom: 1px solid #e9e9e9;
}

.cdp-item:first-child {
    padding-top: 0;
}

.cdp-item:last-child {
    border-bottom: none;
}

.cdp-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cdp-province {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.cdp-date {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 500;
}

/* --- Custom Audio Player Styles --- */
.cdp-audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f8f9fa;
    border-radius: 50px;
    padding: 8px 20px 8px 10px;
    margin-bottom: 20px;
}

.cdp-play-pause-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.cdp-play-pause-btn:hover {
    background-color: #f1f3f4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cdp-play-pause-btn svg {
    width: 24px;
    height: 24px;
    fill: #bda063;
    /* Gold-like color from image */
}

.cdp-waveform {
    flex-grow: 1;
    height: 30px;
    display: flex;
    align-items: center;
}

.cdp-waveform img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: opacity(0.7);
}

.cdp-duration {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    min-width: 40px;
    text-align: right;
}

.cdp-audio-element {
    display: none;
    /* Hide the default audio player */
}

/* --- Content Body Styles --- */
.cdp-item-body {
    padding: 0;
}

.cdp-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.cdp-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.cdp-item-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #666;
}

.cdp-province {
    font-weight: 600;
    color: #333;
}

.cdp-separator {
   font-size: 0.9rem;
    color: #0066cc;
    font-weight: 500;
   
}

.cdp-source {
  color: #0066cc;
    font-size: 0.9rem;
    font-weight: 500;
}

.cdp-date {
    color: #0066cc;
    margin-left: auto; 
}
.div-separator {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}