.clubs-title {
    text-align: center;
    color: #003366;
    font-size: 28px;
    margin: 40px 0 10px;
}

.section-line {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px auto 20px;
    width: 90%;
}

.clubs-section {
    background: linear-gradient(135deg, #eaf8ff 0%, #ffffff 100%);
    padding: 60px 0;
}

.clubs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.club-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fcff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 220px;
    text-decoration: none;
    color: inherit;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.club-icon img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .clubs-list {
        grid-template-columns: 1fr;
    }

    .club-card {
        height: 200px;
    }

    .club-icon img {
        width: 120px;
        height: 120px;
    }
}
