/* ═══════════════════════════════════════════════════════════════════
   GWC Dashboard — Public Styles
   Colors: Pink #E91E63 · Black #1a1a2e · White · Elegant Feminine
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ───── Variables ───── */
:root {
    --gwc-pink: #E91E63;
    --gwc-pink-light: #FCE4EC;
    --gwc-pink-dark: #C2185B;
    --gwc-pink-hover: #D81B60;
    --gwc-black: #1a1a2e;
    --gwc-dark: #16213e;
    --gwc-gray-900: #212121;
    --gwc-gray-700: #616161;
    --gwc-gray-500: #9E9E9E;
    --gwc-gray-300: #E0E0E0;
    --gwc-gray-100: #F5F5F5;
    --gwc-white: #FFFFFF;
    --gwc-success: #4CAF50;
    --gwc-warning: #FF9800;
    --gwc-danger: #F44336;
    --gwc-info: #2196F3;
    --gwc-radius: 12px;
    --gwc-radius-sm: 8px;
    --gwc-radius-lg: 16px;
    --gwc-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --gwc-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --gwc-shadow-pink: 0 4px 20px rgba(233, 30, 99, 0.2);
    --gwc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gwc-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ───── Reset & Base ───── */
.gwc-dashboard *,
.gwc-registration-wrap *,
.gwc-login-wrap *,
.gwc-leaders-directory * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gwc-dashboard,
.gwc-registration-wrap,
.gwc-login-wrap,
.gwc-leaders-directory {
    font-family: var(--gwc-font);
    color: var(--gwc-gray-900);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.gwc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--gwc-radius);
    font-family: var(--gwc-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gwc-transition);
    text-decoration: none;
    line-height: 1;
}

.gwc-btn-primary {
    background: linear-gradient(135deg, var(--gwc-pink), var(--gwc-pink-dark));
    color: var(--gwc-white);
    box-shadow: var(--gwc-shadow-pink);
}

.gwc-btn-primary:hover {
    background: linear-gradient(135deg, var(--gwc-pink-hover), var(--gwc-pink));
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(233, 30, 99, 0.35);
}

.gwc-btn-secondary {
    background: var(--gwc-gray-100);
    color: var(--gwc-gray-900);
    border: 1px solid var(--gwc-gray-300);
}

.gwc-btn-secondary:hover {
    background: var(--gwc-gray-300);
}

.gwc-btn-danger {
    background: var(--gwc-danger);
    color: var(--gwc-white);
}

.gwc-btn-danger:hover {
    background: #D32F2F;
}

.gwc-btn-outline {
    background: transparent;
    border: 2px solid var(--gwc-pink);
    color: var(--gwc-pink);
}

.gwc-btn-full {
    width: 100%;
}

.gwc-btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.gwc-btn-disabled {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}/* ══════════════════════════════════════════════════════════════════════════
   PRO DASHBOARD LAYOUT
   ══════════════════════════════════════════════════════════════════════════ */

.gwc-dashboard {
    display: flex;
    min-height: 800px;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* ──── Sidebar ──── */
.gwc-sidebar {
    width: 280px;
    background: #1e1b4b; /* Deep Indigo */
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    flex-shrink: 0;
}

.gwc-sidebar-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gwc-sidebar .gwc-avatar, 
.gwc-sidebar .gwc-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 1rem;
    border: 3px solid rgba(255,255,255,0.1);
}

.gwc-sidebar .gwc-avatar-placeholder {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.gwc-user-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #fff;
}

.gwc-sidebar .gwc-plan-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    text-transform: uppercase;
}
.gwc-sidebar .gwc-plan-gold { background: #fbbf24; color: #78350f; }

.gwc-sidebar-nav {
    flex: 1;
}

.gwc-sidebar-nav .gwc-tab-link {
    display: flex;
    align-items: center;
    padding: 0.875rem 1rem;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.gwc-sidebar-nav .gwc-tab-link:hover,
.gwc-sidebar-nav .gwc-tab-link.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.gwc-sidebar-nav .gwc-tab-link.active {
    background: rgba(99, 102, 241, 0.2);
    color: #fff;
    box-shadow: inset 4px 0 0 #6366f1;
}

.gwc-tab-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.gwc-sidebar-promo {
    margin: 2rem 0;
}

.gwc-promo-card {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
}

.gwc-promo-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.gwc-promo-card h4 { color: #fff; margin: 0 0 0.5rem; }
.gwc-promo-card p { font-size: 0.8rem; color: rgba(255,255,255,0.8); margin-bottom: 1rem; line-height: 1.4; }

.gwc-sidebar-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.gwc-logout-link {
    color: #ef4444;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
}

/* ──── Main Content Area ──── */
.gwc-main {
    flex: 1;
    padding: 2.5rem;
    overflow-y: auto;
}

.gwc-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.gwc-tab-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.gwc-date-display {
    color: #64748b;
    font-weight: 500;
}

/* ──── Overview Layout ──── */
.gwc-overview-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

/* ──── Stats Grid ──── */
.gwc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gwc-stat-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}
.gwc-stat-card:hover { transform: translateY(-5px); }

.gwc-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.gwc-stat-label { font-size: 0.875rem; color: #64748b; display: block; margin-bottom: 0.25rem; }
.gwc-stat-value { font-size: 1.5rem; font-weight: 700; margin: 0 0 0.25rem; }
.gwc-stat-delta { font-size: 0.75rem; font-weight: 600; }
.gwc-stat-delta.positive { color: #10b981; }
.gwc-stat-subtext { font-size: 0.75rem; color: #94a3b8; }

/* ──── Cards ──── */
.gwc-card {
    background: #fff;
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* ═══════════════════ RELATED SECTIONS ═══════════════════ */
.gwc-related-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #f3f4f6;
    clear: both;
}
.gwc-related-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}
.gwc-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.gwc-related-card {
    display: flex;
    gap: 16px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
    text-decoration: none;
    transition: all 0.3s ease;
}
.gwc-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    border-color: #8B5CF6;
}
.gwc-related-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}
.gwc-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.gwc-related-info h4 {
    font-size: 0.95rem;
    margin: 0 0 4px 0;
    color: #111827;
    line-height: 1.4;
}
.gwc-related-info span {
    font-size: 0.8rem;
    color: #6b7280;
}

.gwc-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.gwc-card-header h3 { font-size: 1.1rem; font-weight: 700; margin: 0; }
.gwc-card-subtitle { font-size: 0.8rem; color: #94a3b8; }

.gwc-chart-container { height: 300px; position: relative; }
.gwc-donut-container { height: 200px; position: relative; margin: 1rem 0; }
.gwc-donut-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}
.gwc-donut-total { font-size: 1.5rem; font-weight: 800; display: block; }
.gwc-donut-label { font-size: 0.7rem; color: #94a3b8; text-transform: uppercase; }

/* ──── Lists ──── */
.gwc-activity-list, .gwc-upcoming-list, .gwc-action-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gwc-activity-item, .gwc-upcoming-item, .gwc-action-item {
    display: flex;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.gwc-activity-item:last-child { border: 0; }

.gwc-activity-icon-wrap {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-right: 1rem; font-size: 1.1rem;
}
.gwc_news { background: rgba(255, 27, 107, 0.1); color: #FF1B6B; }
.gwc_events { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }

.gwc-activity-info h4, .gwc-upcoming-info h4, .gwc-action-content h4 {
    font-size: 0.95rem; font-weight: 600; margin: 0 0 0.25rem;
}

.gwc-activity-meta, .gwc-upcoming-meta, .gwc-action-content span {
    font-size: 0.8rem; color: #94a3b8; display: block;
}

.gwc-status {
    padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-weight: 600;
}
.gwc-status-publish { background: #dcfce7; color: #166534; }
.gwc-status-pending { background: #fef9c3; color: #854d0e; }

/* ──── Legend ──── */
.gwc-donut-legend { margin-top: 1.5rem; }
.gwc-legend-item { display: flex; align-items: center; margin-bottom: 0.5rem; font-size: 0.85rem; }
.gwc-dot { width: 8px; height: 8px; border-radius: 50%; margin-right: 0.75rem; }
.gwc-dot.news { background: #FF1B6B; }
.gwc-dot.events { background: #8B5CF6; }
.gwc-dot.profile { background: #FBBF24; }
.gwc-legend-label { flex: 1; color: #64748b; }
.gwc-legend-value { font-weight: 600; }

/* ──── Network Tab (Inline) ──── */
.gwc-leaders-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.gwc-search-input {
    flex: 1;
    position: relative;
}

.gwc-search-input input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s;
}

.gwc-search-input input:focus { border-color: #6366f1; box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }

.gwc-search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.gwc-grid-loader {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: #94a3b8;
    font-size: 1.1rem;
}

/* ──── Responsive ──── */
@media (max-width: 1200px) {
    .gwc-overview-layout { grid-template-columns: 1fr; }
    .gwc-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .gwc-dashboard { flex-direction: column; }
    .gwc-sidebar { width: 100%; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .gwc-stats-grid { grid-template-columns: 1fr; }
}

/* ──── General Buttons ──── */
.gwc-btn-white {
    background: #fff;
    color: #6366f1;
    border: none;
    font-weight: 700;
}
.gwc-btn-white:hover { background: #f8fafc; color: #4f46e5; }

.gwc-link-all {
    font-size: 0.85rem;
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.gwc-action-btn {
    background: #f1f5f9;
    border: none;
    width: 32px; height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

/* ──── Pagination ──── */
.gwc-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.gwc-page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.gwc-page-btn.active { background: #6366f1; color: #fff; border-color: #6366f1; }

/* ═══════════════════ FORMS ═══════════════════ */
.gwc-form-card {
    max-width: 680px;
    margin: 40px auto;
    background: var(--gwc-white);
    border-radius: var(--gwc-radius-lg);
    box-shadow: var(--gwc-shadow-lg);
    overflow: hidden;
}

.gwc-form-header {
    background: linear-gradient(135deg, var(--gwc-black), var(--gwc-dark));
    color: var(--gwc-white);
    padding: 32px 40px;
    text-align: center;
}

.gwc-form-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gwc-form-header p {
    font-size: 14px;
    opacity: 0.8;
}

.gwc-form {
    padding: 32px 40px;
}

.gwc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gwc-form-group {
    margin-bottom: 20px;
}

.gwc-full-width {
    grid-column: 1 / -1;
}

.gwc-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gwc-gray-700);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gwc-form-group label .required {
    color: var(--gwc-pink);
}

.gwc-form-group input[type="text"],
.gwc-form-group input[type="email"],
.gwc-form-group input[type="password"],
.gwc-form-group input[type="number"],
.gwc-form-group input[type="url"],
.gwc-form-group input[type="date"],
.gwc-form-group input[type="time"],
.gwc-form-group select,
.gwc-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gwc-gray-300);
    border-radius: var(--gwc-radius-sm);
    font-family: var(--gwc-font);
    font-size: 14px;
    color: var(--gwc-gray-900);
    background: var(--gwc-white);
    transition: var(--gwc-transition);
    outline: none;
}

.gwc-form-group input:focus,
.gwc-form-group select:focus,
.gwc-form-group textarea:focus {
    border-color: var(--gwc-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.gwc-input-disabled {
    background: var(--gwc-gray-100) !important;
    cursor: not-allowed;
}

.gwc-form-footer {
    padding: 20px 40px;
    text-align: center;
    border-top: 1px solid var(--gwc-gray-100);
}

.gwc-form-footer a {
    color: var(--gwc-pink);
    font-weight: 600;
    text-decoration: none;
}

.gwc-form-footer a:hover {
    text-decoration: underline;
}

.gwc-form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--gwc-radius-sm);
    font-size: 14px;
    text-align: center;
}

.gwc-form-message.gwc-msg-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.gwc-form-message.gwc-msg-error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.gwc-file-upload {
    position: relative;
}

.gwc-file-upload input[type="file"] {
    padding: 10px;
    border: 2px dashed var(--gwc-gray-300);
    border-radius: var(--gwc-radius-sm);
    width: 100%;
    cursor: pointer;
    background: var(--gwc-gray-100);
}

/* ═══════════════════ DASHBOARD LAYOUT ═══════════════════ */
.gwc-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 600px;
    background: var(--gwc-gray-100);
    border-radius: var(--gwc-radius-lg);
    overflow: hidden;
    box-shadow: var(--gwc-shadow-lg);
}

/* ───── Sidebar ───── */
.gwc-sidebar {
    background: linear-gradient(180deg, var(--gwc-black) 0%, var(--gwc-dark) 100%);
    color: var(--gwc-white);
    display: flex;
    flex-direction: column;
    padding: 0;
}

.gwc-sidebar-header {
    padding: 32px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.gwc-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gwc-pink);
    margin-bottom: 12px;
}

.gwc-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gwc-pink), var(--gwc-pink-dark));
    color: var(--gwc-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.gwc-avatar-large {
    width: 100px;
    height: 100px;
    font-size: 36px;
}

.gwc-user-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gwc-plan-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gwc-plan-free {
    background: var(--gwc-gray-300);
    color: var(--gwc-gray-700);
}

.gwc-plan-premium {
    background: linear-gradient(135deg, #7C4DFF, #651FFF);
    color: var(--gwc-white);
}

.gwc-plan-gold {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: var(--gwc-black);
}

/* ───── Sidebar Nav ───── */
.gwc-sidebar-nav {
    flex: 1;
    padding: 16px 0;
}

.gwc-tab-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--gwc-transition);
    border-left: 3px solid transparent;
}

.gwc-tab-link:hover {
    color: var(--gwc-white);
    background: rgba(255, 255, 255, 0.05);
}

.gwc-tab-link.active {
    color: var(--gwc-white);
    background: rgba(233, 30, 99, 0.15);
    border-left-color: var(--gwc-pink);
}

.gwc-tab-icon {
    font-size: 18px;
}

.gwc-icon-overview::before {
    content: '📊';
}

.gwc-icon-profile::before {
    content: '👤';
}

.gwc-icon-news::before {
    content: '📰';
}

.gwc-icon-events::before {
    content: '📅';
}

.gwc-icon-subscription::before {
    content: '💎';
}

.gwc-sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gwc-logout-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: var(--gwc-transition);
}

.gwc-logout-link:hover {
    color: var(--gwc-pink);
}

/* ───── Main Content ───── */
.gwc-main {
    padding: 32px;
    overflow-y: auto;
}

.gwc-tab-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gwc-black);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gwc-pink-light);
}

.gwc-tab-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.gwc-tab-header .gwc-tab-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* ═══════════════════ OVERVIEW CARDS ═══════════════════ */
.gwc-overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.gwc-overview-card {
    background: var(--gwc-white);
    border-radius: var(--gwc-radius);
    padding: 24px;
    box-shadow: var(--gwc-shadow);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--gwc-transition);
    border: 1px solid transparent;
}

.gwc-overview-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--gwc-shadow-lg);
    border-color: var(--gwc-pink-light);
}

.gwc-overview-icon {
    font-size: 32px;
    line-height: 1;
}

.gwc-overview-body h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--gwc-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.gwc-overview-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--gwc-gray-900);
}

/* Progress bar */
.gwc-progress-bar {
    width: 100%;
    height: 10px;
    background: var(--gwc-gray-100);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 4px;
}

.gwc-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gwc-pink), var(--gwc-pink-dark));
    border-radius: 10px;
    font-size: 0;
    transition: width 1s ease;
}

/* Chart */
.gwc-chart-section {
    background: var(--gwc-white);
    border-radius: var(--gwc-radius);
    padding: 24px;
    box-shadow: var(--gwc-shadow);
}

.gwc-chart-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--gwc-gray-900);
}

/* ═══════════════════ CONTENT LIST ═══════════════════ */
.gwc-content-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gwc-content-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gwc-white);
    border-radius: var(--gwc-radius);
    padding: 16px 20px;
    box-shadow: var(--gwc-shadow);
    transition: var(--gwc-transition);
}

.gwc-content-item:hover {
    box-shadow: var(--gwc-shadow-lg);
    transform: translateX(4px);
}

.gwc-content-thumb img {
    width: 56px;
    height: 56px;
    border-radius: var(--gwc-radius-sm);
    object-fit: cover;
}

.gwc-thumb-placeholder {
    width: 56px;
    height: 56px;
    border-radius: var(--gwc-radius-sm);
    background: var(--gwc-pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.gwc-content-info {
    flex: 1;
}

.gwc-content-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gwc-content-date {
    font-size: 12px;
    color: var(--gwc-gray-500);
    margin-left: 8px;
}

.gwc-event-meta {
    font-size: 12px;
    color: var(--gwc-gray-500);
    margin-left: 8px;
}

.gwc-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.gwc-status-publish {
    background: #E8F5E9;
    color: #2E7D32;
}

.gwc-status-pending {
    background: #FFF3E0;
    color: #E65100;
}

.gwc-status-draft {
    background: var(--gwc-gray-100);
    color: var(--gwc-gray-700);
}

.gwc-content-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.gwc-no-items {
    text-align: center;
    color: var(--gwc-gray-500);
    padding: 40px 20px;
    font-size: 15px;
}

.gwc-upgrade-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gwc-pink-light);
    color: var(--gwc-pink-dark);
    border-radius: var(--gwc-radius);
    font-size: 13px;
    font-weight: 600;
}

/* ═══════════════════ MODALS ═══════════════════ */
.gwc-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gwc-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.gwc-modal-content {
    position: relative;
    background: var(--gwc-white);
    border-radius: var(--gwc-radius-lg);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--gwc-shadow-lg);
    animation: gwcSlideUp 0.3s ease;
}

@keyframes gwcSlideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.gwc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gwc-gray-100);
}

.gwc-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
}

.gwc-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gwc-gray-500);
    transition: var(--gwc-transition);
}

.gwc-modal-close:hover {
    color: var(--gwc-danger);
}

.gwc-modal-content .gwc-form {
    padding: 24px;
}

.gwc-modal-footer {
    padding-top: 12px;
}

/* ═══════════════════ SUBSCRIPTION PLANS ═══════════════════ */
.gwc-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gwc-plan-card {
    background: var(--gwc-white);
    border-radius: var(--gwc-radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--gwc-shadow);
    transition: var(--gwc-transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.gwc-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gwc-shadow-lg);
}

.gwc-plan-current {
    border-color: var(--gwc-pink);
}

.gwc-plan-featured {
    background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
    border-color: #FFD700;
}

.gwc-plan-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--gwc-pink);
    color: var(--gwc-white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 36px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.gwc-plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--gwc-black);
}

.gwc-plan-price {
    margin-bottom: 24px;
}

.gwc-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--gwc-pink);
}

.gwc-period {
    font-size: 14px;
    color: var(--gwc-gray-500);
}

.gwc-plan-features {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.gwc-plan-features li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gwc-gray-100);
}

.gwc-feature-yes {
    color: var(--gwc-gray-900);
}

.gwc-feature-no {
    color: var(--gwc-gray-500);
    text-decoration: line-through;
}

/* ═══════════════════ LEADERS DIRECTORY ═══════════════════ */
.gwc-leaders-directory {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gwc-leaders-header {
    text-align: center;
    margin-bottom: 32px;
}

.gwc-leaders-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--gwc-black);
    margin-bottom: 8px;
}

.gwc-leaders-count {
    color: var(--gwc-gray-500);
    font-size: 14px;
}

.gwc-leaders-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
}

.gwc-search-box input {
    padding: 12px 20px;
    border: 1.5px solid var(--gwc-gray-300);
    border-radius: 30px;
    font-family: var(--gwc-font);
    font-size: 14px;
    width: 300px;
    outline: none;
    transition: var(--gwc-transition);
}

.gwc-search-box input:focus {
    border-color: var(--gwc-pink);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.gwc-filter-box select {
    padding: 12px 20px;
    border: 1.5px solid var(--gwc-gray-300);
    border-radius: 30px;
    font-family: var(--gwc-font);
    font-size: 14px;
    background: var(--gwc-white);
    outline: none;
    cursor: pointer;
    transition: var(--gwc-transition);
}

.gwc-filter-box select:focus {
    border-color: var(--gwc-pink);
}

.gwc-leaders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.gwc-leader-card {
    background: var(--gwc-white);
    border-radius: var(--gwc-radius);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--gwc-shadow);
    transition: var(--gwc-transition);
    border: 1px solid transparent;
}

.gwc-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gwc-shadow-lg);
    border-color: var(--gwc-pink-light);
}

.gwc-leader-avatar {
    margin-bottom: 16px;
}

.gwc-leader-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gwc-pink-light);
}

.gwc-leader-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--gwc-black);
    margin-bottom: 6px;
}

.gwc-leader-sector {
    display: inline-block;
    font-size: 12px;
    color: var(--gwc-pink);
    font-weight: 600;
    background: var(--gwc-pink-light);
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.gwc-leader-bio {
    font-size: 13px;
    color: var(--gwc-gray-700);
    line-height: 1.5;
}

.gwc-upgrade-notice {
    font-size: 13px;
    color: var(--gwc-gray-500);
    font-style: italic;
    padding: 8px 0;
}

.gwc-no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gwc-gray-500);
    padding: 40px;
}

/* Leaders Pagination */
.gwc-leaders-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.gwc-page-btn {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gwc-gray-300);
    border-radius: 50%;
    background: var(--gwc-white);
    font-family: var(--gwc-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--gwc-transition);
    color: var(--gwc-gray-700);
}

.gwc-page-btn:hover,
.gwc-page-btn.active {
    background: var(--gwc-pink);
    color: var(--gwc-white);
    border-color: var(--gwc-pink);
}

/* ═══════════════════ PROFILE ═══════════════════ */
.gwc-profile-image-section {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.gwc-profile-preview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gwc-pink);
}

.gwc-divider {
    border: none;
    height: 1px;
    background: var(--gwc-gray-300);
    margin: 32px 0;
}

/* ═══════════════════ LOGIN PROMPT ═══════════════════ */
.gwc-login-prompt {
    text-align: center;
    padding: 60px 20px;
    background: var(--gwc-white);
    border-radius: var(--gwc-radius-lg);
    box-shadow: var(--gwc-shadow);
    max-width: 480px;
    margin: 40px auto;
}

.gwc-login-prompt p {
    font-size: 16px;
    color: var(--gwc-gray-700);
    margin-bottom: 20px;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 992px) {
    .gwc-dashboard {
        grid-template-columns: 1fr;
    }

    .gwc-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 16px;
    }

    .gwc-sidebar-header {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0;
        border-bottom: none;
        flex: 1;
    }

    .gwc-sidebar-header .gwc-avatar,
    .gwc-sidebar-header .gwc-avatar-placeholder {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 0;
    }

    .gwc-sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 8px 0 0;
        width: 100%;
    }

    .gwc-tab-link {
        padding: 10px 16px;
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
        font-size: 13px;
    }

    .gwc-tab-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--gwc-pink);
    }

    .gwc-sidebar-footer {
        padding: 8px 16px;
        border-top: none;
    }

    .gwc-plans-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .gwc-form-row {
        grid-template-columns: 1fr;
    }

    .gwc-form {
        padding: 24px 20px;
    }

    .gwc-form-header {
        padding: 24px 20px;
    }

    .gwc-main {
        padding: 20px;
    }

    .gwc-leaders-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .gwc-search-box input {
        width: 100%;
    }

    .gwc-content-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .gwc-content-actions {
        width: 100%;
    }

    .gwc-overview-cards {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════ NETWORK ICON ═══════════════════ */
.gwc-icon-network::before {
    content: '🌐';
}

/* ═══════════════════ MY CONTENT SECTIONS ═══════════════════ */
.gwc-my-content-section {
    margin-bottom: 8px;
}

.gwc-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gwc-black);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gwc-pink-light);
}

.gwc-upgrade-badge {
    background: linear-gradient(135deg, var(--gwc-pink-light), #f5e6ee);
    color: var(--gwc-pink);
    font-weight: 600;
    font-size: 14px;
    padding: 16px 24px;
    border-radius: var(--gwc-radius);
    text-align: center;
    border: 1px solid rgba(233, 30, 99, 0.15);
}

.gwc-content-date {
    font-size: 12px;
    color: var(--gwc-gray-500);
    margin-left: 8px;
}

/* ═══════════════════ NEWS FEED — MAGAZINE LAYOUT ═══════════════════ */

/* ───── Hero Section: Featured + Side ───── */
.gwc-news-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

/* Featured (Large) Article */
.gwc-news-featured {
    display: flex;
    flex-direction: column;
}

.gwc-news-featured-image {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gwc-gray-100);
}

.gwc-news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gwc-news-featured:hover .gwc-news-featured-image img {
    transform: scale(1.04);
}

.gwc-news-featured-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gwc-pink-light), #f5e6ee);
    font-size: 64px;
}

/* Overlay: Tag + Reading Time */
.gwc-news-featured-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gwc-news-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(26, 26, 46, 0.85);
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    letter-spacing: 0.3px;
}

.gwc-news-reading-time {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.gwc-news-featured-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--gwc-black);
    line-height: 1.35;
    margin-top: 18px;
    margin-bottom: 8px;
}

/* ───── Side Articles (3 stacked) ───── */
.gwc-news-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gwc-news-side-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--gwc-transition);
    padding: 4px;
    border-radius: var(--gwc-radius);
}

.gwc-news-side-item:hover {
    background: var(--gwc-gray-100);
}

.gwc-news-side-thumb {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--gwc-gray-100);
}

.gwc-news-side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gwc-news-side-item:hover .gwc-news-side-thumb img {
    transform: scale(1.06);
}

.gwc-news-side-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gwc-pink-light), #f5e6ee);
    font-size: 28px;
}

.gwc-news-side-info {
    flex: 1;
    min-width: 0;
}

.gwc-news-side-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gwc-black);
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gwc-news-side-excerpt {
    font-size: 13px;
    color: var(--gwc-gray-700);
    line-height: 1.5;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gwc-news-side-time {
    font-size: 12px;
    color: var(--gwc-gray-500);
    display: flex;
    align-items: center;
    gap: 4px;
}

.gwc-news-side-actions {
    margin-top: 6px;
}

/* ───── Trending News Section ───── */
.gwc-news-trending-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-top: 8px;
    border-top: 1px solid var(--gwc-gray-300);
}

.gwc-news-trending-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--gwc-black);
}

.gwc-news-trending-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gwc-news-trending-card {
    display: flex;
    flex-direction: column;
    transition: var(--gwc-transition);
}

.gwc-news-trending-card:hover {
    transform: translateY(-3px);
}

.gwc-news-trending-image {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--gwc-gray-100);
    margin-bottom: 14px;
}

.gwc-news-trending-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gwc-news-trending-card:hover .gwc-news-trending-image img {
    transform: scale(1.06);
}

.gwc-news-trending-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gwc-pink-light), #f5e6ee);
    font-size: 36px;
}

.gwc-news-trending-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gwc-black);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Actions (shared) */
.gwc-news-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

/* ───── Responsive ───── */
@media (max-width: 900px) {
    .gwc-news-hero {
        grid-template-columns: 1fr;
    }

    .gwc-news-featured-image {
        height: 260px;
    }

    .gwc-news-trending-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gwc-news-featured-image {
        height: 200px;
    }

    .gwc-news-featured-title {
        font-size: 18px;
    }

    .gwc-news-side-thumb {
        width: 100px;
        height: 75px;
    }

    .gwc-news-trending-grid {
        grid-template-columns: 1fr;
    }

    .gwc-news-trending-image {
        height: 160px;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   SINGLE CONTENT PAGES (NEWS / EVENTS)
   ══════════════════════════════════════════════════════════════════════════ */

.gwc-single-content {
    background: #f8fafc;
    padding: 4rem 0;
    min-height: 100vh;
}

.gwc-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gwc-back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}
.gwc-back-link:hover { transform: translateX(-5px); }

.gwc-content-header { margin-bottom: 3rem; }
.gwc-content-title { font-size: 3rem; font-weight: 800; margin: 1rem 0 2rem; line-height: 1.1; color: #1e1b4b; }

.gwc-content-badges { display: flex; gap: 1rem; align-items: center; }
.gwc-badge { padding: 0.4rem 1rem; border-radius: 99px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; }
.badge-event { background: #e0e7ff; color: #4338ca; }
.badge-news { background: #fce7f3; color: #9d174d; }
.gwc-reading-time { color: #64748b; font-size: 0.9rem; font-weight: 500; }

/* ──── Meta Box ──── */
.gwc-event-meta-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gwc-meta-item { display: flex; align-items: center; gap: 1rem; }
.gwc-meta-item .icon { font-size: 2rem; }
.gwc-meta-item label { display: block; font-size: 0.75rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; margin-bottom: 0.25rem; }
.gwc-meta-item span { font-size: 1.1rem; font-weight: 600; color: #1e293b; }

/* ──── Layout ──── */
.gwc-content-layout { display: grid; grid-template-columns: 1fr 350px; gap: 3rem; align-items: start; }

.gwc-content-featured { margin-bottom: 2.5rem; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.gwc-content-featured img { width: 100%; height: auto; display: block; }

.gwc-entry-content { font-size: 1.15rem; line-height: 1.8; color: #334155; }
.gwc-entry-content p { margin-bottom: 1.5rem; }

/* ──── Sidebar Cards ──── */
.gwc-registration-card { background: #1e1b4b; color: #fff; border: 0; }
.gwc-registration-card h3 { color: #fff; margin-bottom: 1rem; }
.gwc-registration-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 1.5rem; }

.gwc-form-group { margin-bottom: 1.25rem; }
.gwc-form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.gwc-form-group input { 
    width: 100%; padding: 0.875rem 1rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); 
    background: rgba(255,255,255,0.05); color: #fff; outline: none; transition: 0.3s;
}
.gwc-form-group input:focus { background: rgba(255,255,255,0.1); border-color: #6366f1; }

.gwc-btn-block { width: 100%; padding: 1rem; font-size: 1rem; }

.gwc-form-message { margin-top: 1rem; font-size: 0.9rem; border-radius: 8px; }
.gwc-form-message.success { color: #4ade80; }
.gwc-form-message.error { color: #f87171; }

/* ──── Author Box ──── */
.gwc-author-box { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.gwc-author-avatar, .gwc-author-avatar-placeholder { width: 50px; height: 50px; border-radius: 12px; }
.gwc-author-avatar-placeholder { background: #6366f1; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.gwc-author-info strong { display: block; font-size: 1rem; color: #1e293b; }
.gwc-author-info span { font-size: 0.85rem; color: #64748b; }

@media (max-width: 992px) {
    .gwc-content-layout { grid-template-columns: 1fr; }
    .gwc-content-title { font-size: 2.25rem; }
    .gwc-event-meta-box { grid-template-columns: 1fr; }
}
