﻿.activities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

/* Each activity card */
.activity-card {
    width: 48%;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    overflow: hidden;
}
.activity-content {
    padding: 20px;
    border-left: 4px solid #0b3c6f;
}

.activity-title {
    font-size: 18px;
    font-weight: 600;
    color: #0b3c6f;
    margin-bottom: 5px;
}

.activity-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.activity-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.activity-photos {
    display: flex;
    gap: 10px;
    padding: 12px 15px 18px;
    background: #f5f5f5;
    justify-content: flex-start;
}

/* Thumbnail box */
.photo-box {
    width: 110px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
}

    /* Thumbnail image */
    .photo-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

        .photo-box img:hover {
            transform: scale(1.08);
        }
.photo-label {
    display: inline-block;
    margin: 0 0 8px 15px;
    padding: 4px 12px;
    background: #0b3c6f;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
}
.activities-wrapper {
    width: 80%;
    max-width: 1200px; /* optional but professional */
    margin: 40px auto; /* centers the section */
}
.activities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

.activity-card {
    width: 48%;
}




@media (max-width: 768px) {
    .activities-wrapper {
        width: 95%;
    }

    .activity-photos {
        flex-wrap: wrap;
    }

    .photo-box {
        width: 90%;
        height: 90px;
    }
    .activity-card {
        width: 90%;
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 6px 16px rgba(0,0,0,0.08);
        overflow: hidden;
    }
}
