.clubs-portal {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.club-list-hero,
.club-detail-hero {
    margin-bottom: 2rem;
}

.club-list-label,
.club-detail-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #C8102E;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.35rem;
}

.club-list-hero h1,
.club-detail-head h1 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: #111827;
    margin: 0 0 0.5rem;
}

.club-list-desc,
.club-detail-sub {
    color: #6b7280;
    margin: 0;
}

.club-list-count {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A5C4A;
}

.club-search-form {
    margin-bottom: 1.5rem;
}

.club-search-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.club-search-input {
    flex: 1;
    min-width: 14rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.65rem;
    padding: 0.7rem 1rem;
}

.club-search-btn {
    background: #1A5C4A;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0.65rem;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
}

.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: 1rem;
}

.club-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.85rem;
    padding: 1.25rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: border-color 0.15s, transform 0.15s;
}

.club-card:hover {
    border-color: #C8102E;
    transform: translateY(-2px);
}

.club-card-head {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.club-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.65rem;
    background: #fff5f5;
    color: #C8102E;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.club-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0;
    color: #111827;
}

.club-card-acronym {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0.15rem 0 0;
}

.club-card-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: #4b5563;
}

.club-card-meta i {
    width: 1rem;
    color: #1A5C4A;
}

.club-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #C8102E;
}

.club-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.club-empty i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
}

.club-pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.club-page-link,
.club-page-active {
    min-width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.club-page-link {
    border: 1px solid #e5e7eb;
    color: #374151;
    text-decoration: none;
}

.club-page-active {
    background: #C8102E;
    color: #fff;
}

.club-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 1rem;
}

.club-detail-head {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.club-detail-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #C8102E, #1A5C4A);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.club-detail-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.85rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.club-detail-section h2 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.club-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
    gap: 0.75rem 1.5rem;
    margin: 0;
}

.club-info-row dt {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    margin: 0 0 0.15rem;
}

.club-info-row dd {
    margin: 0;
    font-weight: 600;
    color: #111827;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.club-info-row--email {
    grid-column: 1 / -1;
}

@media (min-width: 40rem) {
    .club-info-row--email {
        grid-column: span 2;
    }
}

.club-info-email {
    color: inherit;
    text-decoration: none;
}

.club-info-email:hover {
    color: #C8102E;
    text-decoration: underline;
}

.club-table-wrap {
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.65rem;
}

.club-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.club-table th,
.club-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}

.club-table thead th {
    background: #f9fafb;
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.club-member-link {
    color: #1A5C4A;
    font-weight: 600;
    text-decoration: none;
}

.club-member-link:hover {
    text-decoration: underline;
}

.club-member-status {
    display: inline-flex;
    padding: 0.15rem 0.55rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.club-member-status--on {
    background: #dcfce7;
    color: #166534;
}

.club-member-status--off {
    background: #f3f4f6;
    color: #6b7280;
}

.club-section-empty {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

.club-th-action,
.club-td-action {
    width: 3rem;
    text-align: center;
}

.club-row-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.45rem;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #1A5C4A;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.club-row-action:hover {
    background: #f0fdf4;
    border-color: #1A5C4A;
    color: #14532d;
}

.club-row-action--disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}
