/* --- Загальні налаштування --- */
.vol-header {
    text-align: center;
    margin-bottom: 40px;
}

.vol-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: -10px;
}

.highlight-ua {
    color: #0057b8; /* Синій */
    position: relative;
    display: inline-block;
}

/* --- Grid сітка --- */
.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

/* --- Картка --- */
.vol-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.vol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* --- Зображення --- */
.vol-img-wrapper {
    position: relative;
    height: 190px;
    background: #eee;
    overflow: hidden;
}

.vol-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vol-card:hover .vol-img-wrapper img {
    transform: scale(1.05);
}

/* --- Дата --- */
.vol-date-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-hover);
    padding: 6px 10px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    line-height: 1.1;
    color: #333;
}

.vol-date-badge .d { display: block; font-size: 1.4rem; font-weight: 800; color: var(--bg-light); }
.vol-date-badge .m { display: block; font-size: 1.25rem; text-transform: uppercase; font-weight: 700; color: var(--bg-light); }
.vol-date-badge .y { display: block; font-size: 0.85rem; color: var(--bg-light); }

/* --- Контент --- */
.vol-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vol-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #222;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vol-loc {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

/* --- Кнопки дій --- */
.vol-actions {
    margin-top: auto; /* Притискає кнопки до низу */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Дві кнопки поруч */
    gap: 10px;
}

.btn-vol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    text-align: center;
}

/* Кнопка YouTube */
.btn-video {
    background-color: #fef2f2;
    color: #dc2626; /* YouTube Red */
    border: 1px solid #fee2e2;
}
.btn-video:hover {
    background-color: #dc2626;
    color: #fff;
}

/* Кнопка Програма */
.btn-prog {
    background-color: #f0f9ff;
    color: #0284c7; /* Blue */
    border: 1px solid #e0f2fe;
}
.btn-prog:hover {
    background-color: #0284c7;
    color: #fff;
}

.btn-disabled {
    background-color: #f5f5f5;
    color: #aaa;
    border: 1px solid #eee;
    cursor: default;
    grid-column: span 2; /* Якщо тільки одна кнопка неактивна */
}

/* --- Патріотична лінія --- */
.ua-line {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #0057B8 50%, #FFD700 50%);
    opacity: 0.8;
}

/* Мобільна адаптація */
@media (max-width: 576px) {
    .volunteer-grid {
        grid-template-columns: 1fr;
    }
    .vol-img-wrapper {
        height: 220px; /* Трохи вище на мобільному */
    }
}
/* --- Фільтр років --- */
.year-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    background-color: #f8f9fa;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.filter-btn:hover {
    background-color: #e9ecef;
    border-color: #ccc;
    color: #333;
    transform: translateY(-2px);
}

.filter-btn.active {
    background-color: #0057b8; /* Синій (колір бренду) */
    color: #fff;
    border-color: #0057b8;
    box-shadow: 0 4px 10px rgba(0, 87, 184, 0.3);
}

/* --- Пагінація --- */
.pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px; /* Квадратні з округленням */
    background-color: #fff;
    border: 1px solid #e0e0e0;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 600;
}

.pagination a:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.pagination a.active {
    background-color: #333; /* Темний акцент */
    color: #fff;
    border-color: #333;
}

/* Стиль для кнопки скидання, якщо нічого не знайдено */
.btn-reset {
    display: inline-block;
    margin-top: 15px;
    color: #0057b8;
    text-decoration: underline;
}