/* =========================
ACTIVITIES GRID
========================== */
 .activities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding-bottom: 0px;
 }
 .activities-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-bottom: 0px;
 }
/* =========================
   ACTIVITY CARD
========================== */
 .activity-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
 }
 .activity-card:hover {
    transform: translateY(-5px);
 }
/* =========================
   IMAGE SLIDER
========================== */
 .activity-slider {
    position: relative;
    width: 100%;
    height: 350px;
    background: #e5e7eb;
    overflow: hidden;
 }
 #activityList .slider-track {
    display: flex;
    width: 100%;
    height: 350px;
    transition: transform 0.5s ease-in-out;
 }
 #activityList .slide {
    min-width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
 }
 #activityList .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px 10px 0 0;
 }
/* =========================
   SLIDER ARROWS
========================== */
 .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0);
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 36px;
    cursor: pointer;
    z-index: 5;
    transition: 0.2s;
    display: none;
 }
 .slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
 }
 .slider-prev {
    left: 10px;
 }
 .slider-next {
    right: 10px;
 }
/* =========================
   SLIDER DOTS
========================== */
 .slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 6;
 }
 .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    padding: 0;
 }
 .slider-dot.active {
    background: #ffffff;
    transform: scale(1.25);
 }
/* =========================
   ACTIVITY CONTENT
========================== */
 .activity-content {
    padding: 20px;
 }
 .badge {
    display: inline-block;
    padding: 5px 10px;
    background: #dcfce7;
    color: #166534;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
 }
 .activity-content h2 {
    font-size: 20px;
    margin-bottom: 0px;
    line-height: 1;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
 }
 .activity-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
 }
/* =========================
  ACTIVITY INFORMATION
========================== */
 .activity-info {
    border-top: 1px solid #eee;
    padding-top: 15px;
 }
 .activity-info div {
    margin-bottom: 7px;
    font-size: 14px;
 }
 .activity-info strong {
    color: #374151;
 }
/* =========================
   VIEW BUTTON
========================== */
 .view-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
 }
 .view-btn:hover {
    background: #1d4ed8;
 }
/* =========================
   TABLET
========================== */
 @media (max-width: 992px) {
    .stats {
       grid-template-columns: repeat(2, 1fr);
    }
    .activities {
       grid-template-columns: repeat(2, 1fr);
    }
    .activities-home {
       grid-template-columns: repeat(2, 1fr);
    }
 }
/* =========================
   MOBILE
========================== */
 @media (max-width: 600px) {
    .stats {
       grid-template-columns: 1fr;
    }
    .activities {
       grid-template-columns: 1fr;
    }
    .activities-home {
       grid-template-columns: 1fr;
    }
    .filter-box {
       flex-direction: column;
    }
    .filter-box input,
    .filter-box select,
    .filter-box button {
       width: 100%;
    }
   .activity-slider {
       height: 220px;
    }
    #activityList .slide {
       height: 220px;
    }
 }