﻿.club-details-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.club-details-card {
    width: 100%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
}

.club-details-header {
    margin-bottom: 30px;
}

.btn-back {
    display: inline-block;
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: 0.2s ease;
}

    .btn-back:hover {
        color: #111;
    }

.club-details-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.club-image-section {
    flex: 0 0 250px;
}

.club-image {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.club-info-section {
    flex: 1;
}

.club-title {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.club-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.club-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.2s ease;
}

    .contact-item:hover {
        color: #0077ff;
    }

.social {
    font-weight: 600;
}

@media (max-width: 768px) {
    .club-details-content {
        flex-direction: column;
    }

    .club-image-section {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
}
