.vid-strip {
    padding: 12px;
}

.vid-strip__inner {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 12px;
}

.vid-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

/* Dimensions par ratio (évite les vidéos “étirées”) */
.vid-card--portrait {
    width: clamp(220px, 30vw, 320px);
    aspect-ratio: 9/16;
}

.vid-card--landscape {
    width: clamp(320px, 55vw, 560px);
    aspect-ratio: 16/9;
}

.vid-card__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.vid-card__cap {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    padding: 10px 12px;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, 0));
    border-top: 1px solid var(--line);
}

.article-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-content {
    padding: 30px;
}

.article-date {
    color: #6c757d;
    font-size: 0.85rem;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.article-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0;
    line-height: 1.3;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.article-excerpt {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.read-more-btn {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Proxima Nova', Arial, sans-serif;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn:hover {
    color: #c2185b;
}

.recent-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.recent-article:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.recent-article .article-image {
    height: 280px;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff !important;
    font-family: 'Proxima Nova', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    background: #f8f9fa;
    /* color: #6c757d; */
}

.article-category.health {
    background: #28a745;
}

.article-category.education {
    background: #6f42c1;
}

.article-category.security {
    background: #fd7e14;
}

.article-category.campaign {
    background: #e91e63;
}

.recent-article .article-content {
    padding: 25px;
}

.recent-article .article-title {
    font-size: 1.2rem;
    margin: 10px 0 15px 0;
}

.recent-article .article-excerpt {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Documents Page Styles */
.documents-content {
    min-height: calc(100vh - 48px);
    background: #f5f6fa;
    padding-bottom: 0;
}

/* Videos Section */
.videos-section {
    background: white;
    padding: 80px 40px;
}

.videos-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.videos-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.videos-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 60px;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
}

.video-article {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-article:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 99, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 20px;
    transition: all 0.3s ease;
}

.video-article:hover .play-button {
    background: #e91e63;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.video-content {
    padding: 30px;
    position: relative;
}

.video-category {
    position: absolute;
    top: -15px;
    left: 30px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff !important;
    font-family: 'Proxima Nova', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-category.story {
    background: #020a54;
}

.video-category.live {
    background: #dc3545;
}

.video-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-family: 'Proxima Nova', Arial, sans-serif;
    margin-top: 15px;
    display: block;
}

.video-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0;
    line-height: 1.3;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.video-excerpt {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Proxima Nova', Arial, sans-serif;
}

.video-link {
    color: #e91e63;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Proxima Nova', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.video-link:hover {
    color: #c2185b;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}