﻿.activity-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.activity-card {
    background: #fee25f;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    font-size:18px;
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

    .activity-card:hover {
        transform: translateY(-6px);
        background: #49887b;
        color: #fff;
    }

    .activity-card i {
        font-size: 30px;
        margin-bottom: 10px;
        color: #fff;
    }

.sub-title {
    text-transform: uppercase;
}

.intro-text {
    font-size: 16px;
    color: #555;
    text-align: justify;
    line-height: 1.8;
}

.video-frame {
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .video-frame:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

.activity-list {
    background: #fff;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .activity-list:hover {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    }

    .activity-list ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .activity-list li {
        padding: 6px 0;
        font-size: 15px;
        color: #333;
        border-bottom: 1px dashed #ddd;
        text-align:left;
    }

        .activity-list li i {
            color: #54c1e5;
            margin-right: 8px;
        }

.bg-light-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.img-side {
    max-width: 360px;
    border-radius: 6px;
    display: block;
}

.video-box iframe {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.club-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .club-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .club-card img {
        width: 100%;
        transition: all 0.3s ease;
    }

    .club-card:hover img {
        transform: scale(1.05);
    }

.club-body {
    padding: 20px;
}

    .club-body h5 {
        text-align: left !important;
        color:#555
    }

    .club-body p {
        color: #666;
        text-align: left !important;
    }

.text-accent {
    color: #f39c12;
}