.mdv-club-page {
    width: 100%;
}

.mdv-club-page-hero {
    background: var(--mdv-primary);
    color: #ffffff;
    padding: 56px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.mdv-club-page-hero-inner {
    display: flex;
    align-items: center;
    gap: 28px;
}

.mdv-club-page-logo {
    width: 132px;
    height: 132px;
    flex: 0 0 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
}

.mdv-club-page-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mdv-club-page-heading h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1.08;
    color: #ffffff;
}

.mdv-club-page-heading p {
    margin: 14px 0 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.82);
}

.mdv-club-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.mdv-club-info-panel {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.mdv-club-info-panel h2,
.mdv-club-section-header h2 {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
    color: #111827;
}

.mdv-club-data-list {
    display: grid;
    gap: 16px;
    margin: 0;
}

.mdv-club-data-list div {
    display: grid;
    gap: 4px;
}

.mdv-club-data-list dt {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
}

.mdv-club-data-list dd {
    margin: 0;
    color: #111827;
}

.mdv-club-data-list a,
.mdv-club-socials a {
    color: var(--mdv-primary);
    text-decoration: none;
}

.mdv-club-data-list a:hover,
.mdv-club-socials a:hover {
    text-decoration: underline;
}

.mdv-club-socials {
    display: grid;
    gap: 10px;
}

.mdv-club-socials a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.mdv-club-socials i {
    width: 22px;
    text-align: center;
}

.mdv-club-teams-section {
    margin-top: 16px;
}

.mdv-team-overview {
    display: grid;
    gap: 24px;
}

.mdv-team-overview-group {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.mdv-team-overview-group h3 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.2;
    color: #111827;
}

.mdv-team-overview-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.mdv-team-overview-item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 12px;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mdv-team-overview-item:hover {
    border-color: var(--mdv-primary);
    transform: translateY(-1px);
    text-decoration: none;
}

.mdv-team-overview-logo {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 8px;
    font-weight: 800;
    color: #111827;
}

.mdv-team-overview-logo img {
    max-width: 42px;
    max-height: 42px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mdv-team-overview-content {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.mdv-team-overview-content strong {
    color: #111827;
    line-height: 1.2;
}

.mdv-team-overview-content span {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.35;
}

.mdv-team-overview-empty {
    margin: 0;
}

@media (max-width: 980px) {
    .mdv-club-page-grid {
        grid-template-columns: 1fr;
    }

    .mdv-club-page-hero {
        padding: 36px;
    }

    .mdv-club-page-heading h1 {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .mdv-club-page-hero-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .mdv-club-page-logo {
        width: 104px;
        height: 104px;
        flex-basis: 104px;
    }

    .mdv-club-page-heading h1 {
        font-size: 32px;
    }

    .mdv-club-page-hero,
    .mdv-club-info-panel,
    .mdv-team-overview-group {
        padding: 22px;
    }
}
