/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 50px 0 40px;
}
.page-header h1 { font-size: 2.2rem; font-weight: 700; color: white; }
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 14px;
}
.page-header .breadcrumb-item.active { color: white; }

/* ── Section ── */
.section-pad { padding: 80px 0; }
.title-line {
    width: 60px; height: 4px;
    background: var(--primary);
    border-radius: 2px; margin-bottom: 12px;
}
.section-title {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 700; color: var(--text-dark); margin-bottom: 8px;
}
.section-subtitle { color: var(--text-muted); font-size: 15px; }

/* ── Club Cards ── */
.club-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    text-decoration: none;
    transition: all 0.3s;
    padding: 24px;
    gap: 20px;
    border-left: 5px solid transparent;
}
.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.club-card.purple { border-left-color: #7F77DD; }
.club-card.blue   { border-left-color: #378ADD; }
.club-card.orange { border-left-color: var(--primary); }
.club-card.green  { border-left-color: #639922; }
.club-card.teal   { border-left-color: #1D9E75; }
.club-card.red    { border-left-color: #E24B4A; }

.club-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}
.club-card.purple .club-icon-wrap { background: #EEEDFE; color: #534AB7; }
.club-card.blue   .club-icon-wrap { background: #E6F1FB; color: #185FA5; }
.club-card.orange .club-icon-wrap { background: #FFF0E6; color: var(--primary); }
.club-card.green  .club-icon-wrap { background: #EAF3DE; color: #3B6D11; }
.club-card.teal   .club-icon-wrap { background: #E1F5EE; color: #0F6E56; }
.club-card.red    .club-icon-wrap { background: #FCEBEB; color: #A32D2D; }

.club-body { flex: 1; }
.club-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.club-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}
.club-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: var(--text-muted);
}
.club-arrow {
    font-size: 24px;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity 0.2s;
}
.club-card:hover .club-arrow { opacity: 1; color: var(--primary); }

/* ── Club Detail Info Card ── */
.club-info-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    text-align: center;
    border-top: 5px solid transparent;
}
.club-info-card.purple { border-top-color: #7F77DD; }
.club-info-card.blue   { border-top-color: #378ADD; }
.club-info-card.orange { border-top-color: var(--primary); }
.club-info-card.green  { border-top-color: #639922; }
.club-info-card.teal   { border-top-color: #1D9E75; }
.club-info-card.red    { border-top-color: #E24B4A; }

.club-info-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    background: #FFF0E6;
    color: var(--primary);
}
.club-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.club-info-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}
.club-info-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 10px;
}
.meta-item i {
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
}
.meta-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.meta-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ── Activity Cards ── */
.activity-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.activity-card:hover { transform: translateY(-4px); }
.activity-img {
    height: 140px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}
.activity-body { padding: 16px; }
.activity-badge {
    display: inline-block;
    background: #FFF0E6;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.activity-body h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.activity-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}
.activity-date {
    font-size: 12px;
    color: var(--text-muted);
}
.posted-note {
    font-size: 13px;
    color: var(--text-muted);
    background: #F5EDE3;
    padding: 12px 16px;
    border-radius: 8px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .section-pad { padding: 50px 0; }
    .club-card { flex-direction: column; text-align: center; }
    .club-meta { align-items: center; }
    .club-arrow { display: none; }
}