/* Members Network Page Specific Styles */

/* Layout */
.members-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
    margin-bottom: 3rem;
}
@media (max-width: 1200px) {
    .members-layout {
        grid-template-columns: 1fr 300px;
    }
}
@media (max-width: 991px) {
    .members-layout {
        grid-template-columns: 1fr;
    }
}

/* Header & Search */
.members-header {
    margin: 2rem 0;
}
.members-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}
.members-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}
.members-search-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.m-search-input {
    border: none;
    outline: none;
    flex: 1;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    background: transparent;
}
.m-search-btn {
    border-radius: var(--radius-md);
    padding: 0.6rem 3rem;
}

/* Filters Row */
.m-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}
.m-filter-group {
    flex: 1;
    min-width: 150px;
}
.m-filter-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.3rem;
    display: block;
}
.m-filter-select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    background: var(--bg-surface);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1em;
}
.m-filters-bottom {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}
.reset-filters-link {
    font-size: 0.8rem;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 500;
}

/* Results Header */
.m-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.m-results-title {
    font-size: 1.1rem;
    font-weight: 700;
}
.m-results-count {
    font-weight: 400;
    color: var(--text-muted);
}
.m-sort-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Member Cards Grid */
.m-cards-grid.m-cards-grid--list {
    grid-template-columns: 1fr;
}
.m-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 1400px) {
    .m-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .m-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Card with large cover photo at top + content below.
 * The photo is the visual anchor — much bigger than the old 48px chip. */
.m-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    position: relative;
}
.m-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-primary);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.10);
}

/* Cover region: a tall, prominent header that displays the member photo
 * (or a generated initials fallback) with badges floated on top. */
.m-card-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #60a5fa 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.m-card-cover-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 360ms ease;
}
.m-card:hover .m-card-cover-img {
    transform: scale(1.04);
}
.m-card-cover-initials {
    font-size: clamp(2.75rem, 4vw, 3.5rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.04em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}
.m-card-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(15, 23, 42, 0.0) 0%,
        rgba(15, 23, 42, 0.0) 40%,
        rgba(15, 23, 42, 0.55) 100%);
    pointer-events: none;
}

/* Badges anchored to top-left of the cover */
.m-card-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    z-index: 2;
}
.m-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text-main);
    font-weight: 700;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.m-badge.top-match {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    border-color: transparent;
}
.m-badge.verified {
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
}
.m-badge.bni {
    background: #0f172a;
    color: #fff;
    border-color: transparent;
}

/* Content below the cover */
.m-card-body {
    padding: 1.1rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.m-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: var(--text-main);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.m-card-sector {
    font-size: 0.78rem;
    color: var(--brand-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.m-card-loc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.m-card-desc {
    font-size: 0.82rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.m-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.1rem;
}
.m-tag {
    font-size: 0.68rem;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    color: var(--text-muted);
    font-weight: 600;
}
.m-card-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}
.m-card-btn {
    flex: 1;
    text-align: center;
    padding: 0.55rem 0;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color 140ms ease, color 140ms ease,
                border-color 140ms ease, transform 140ms ease;
}
.m-card-btn.outline {
    border: 1px solid var(--border-color);
    color: var(--brand-primary);
    background: var(--bg-surface);
}
.m-card-btn.outline:hover {
    border-color: var(--brand-primary);
    background: rgba(37, 99, 235, 0.06);
}
.m-card-btn.fill {
    background: var(--brand-primary);
    color: #fff;
    border: 1px solid var(--brand-primary);
}
.m-card-btn.fill:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* Legacy support: keep `.m-card-logo` working in case other widgets still
 * use it (recent/featured share styles). It's no longer used inside cards. */
.m-card-logo {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Featured & Recent Layout */
.m-bottom-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
@media (max-width: 991px) {
    .m-bottom-sections {
        grid-template-columns: 1fr;
    }
}
.m-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.m-section-title {
    font-size: 1rem;
    font-weight: 700;
}
.m-section-link {
    font-size: 0.75rem;
    color: var(--brand-primary);
    text-decoration: none;
}
.featured-slider-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
@media (max-width: 576px) {
    .featured-slider-card {
        grid-template-columns: repeat(2, 1fr);
    }
}
.f-slider-item {
    text-align: center;
    font-size: 0.72rem;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 160ms ease;
}
.f-slider-item:hover {
    transform: translateY(-3px);
    color: var(--brand-primary);
}
.f-slider-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    color: #fff;
    border-radius: 50%;
    margin: 0 auto 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.4rem;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
    border: 3px solid #fff;
    outline: 1px solid var(--border-color);
}
.f-slider-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.recent-conn-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
}
.recent-conn-item:last-child {
    border-bottom: none;
}
.rc-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid #fff;
    outline: 1px solid var(--border-color);
}
.rc-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rc-info {
    flex: 1;
}
.rc-name {
    font-size: 0.85rem;
    font-weight: 700;
}
.rc-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.rc-time {
    font-size: 0.7rem;
    color: var(--text-light);
}

/* Sidebar Profile Preview ─────────────────────────────
 * The sidebar now opens with a banner + large round photo, similar
 * to a LinkedIn-style profile preview. The photo is 120px which
 * makes it the visual anchor of the right column. */
.profile-preview-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 2rem;
    overflow: hidden;
}
.pp-banner {
    position: relative;
    height: 110px;
    background:
        radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.2) 0%, transparent 45%),
        linear-gradient(135deg, #0b1f4d 0%, #1d3b8b 50%, #2563eb 100%);
}
.pp-top-bar {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}
.pp-top-bar .m-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #2563eb;
}
.pp-top-bar .btn-link {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.pp-content {
    padding: 0 1.5rem 1.5rem;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}
.pp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}
.pp-logo {
    width: 120px;
    height: 120px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    border: 4px solid #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    flex-shrink: 0;
}
.pp-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pp-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.3rem;
    color: var(--text-main);
    line-height: 1.3;
}
.pp-info-line {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
}
.pp-link {
    font-size: 0.78rem;
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.pp-link:hover {
    text-decoration: underline;
}
.pp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.pp-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.pp-desc {
    font-size: 0.8rem;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.pp-scores {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pp-score-box {
    flex: 1;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem;
}
.pp-score-title {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.pp-score-val {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.pp-score-sub {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.pp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5rem 0;
}
.pp-list li {
    font-size: 0.75rem;
    color: var(--text-main);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.pp-list li i {
    color: var(--text-muted);
    margin-top: 2px;
}
.pp-contact-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.pp-contact-btn {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    font-size: 0.75rem;
    color: var(--text-main);
    text-align: center;
    cursor: pointer;
}
.pp-main-actions {
    display: flex;
    gap: 0.5rem;
}
.pp-main-btn {
    flex: 1;
    padding: 0.6rem 0;
}

/* Bottom Stats */
.m-bottom-stats-container {
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    margin-top: 2rem;
}
.m-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 991px) {
    .m-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.m-stat-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.m-stat-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    flex-shrink: 0;
}
.m-stat-info {
    flex: 1;
}
.m-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}
.m-stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.m-stat-trend {
    font-size: 0.7rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.m-stat-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Company detail page parity with legacy `company.php` */
.zangia-page { background: #f8f9fa; }
.zangia-wrap { padding-top: 1.5rem; padding-bottom: 3rem; }
.zangia-shell { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.zangia-cover { height: 280px; border-radius: 12px 12px 0 0; overflow: hidden; position: relative; background: #eef2f6; }
.zangia-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.zangia-cover-fallback { width: 100%; height: 100%; background: linear-gradient(135deg, #eef2f6 0%, #dbeafe 100%); }
.zangia-brand { background: #fff; padding: 24px; border-radius: 0 0 12px 12px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: relative; display: flex; gap: 24px; align-items: flex-start; }
.zangia-avatar { width: 110px; height: 110px; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.1); margin-top: -60px; background: #fff; position: relative; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: visible; }
.zangia-avatar img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }
.zangia-verified-badge { position: absolute; right: 0; bottom: 0; width: 28px; height: 28px; background: #0d6efd; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; font-size: 12px; }
.brand-details { flex-grow: 1; }
.brand-name { font-size: 1.75rem; font-weight: 800; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; color: #111827; }
.brand-name .fa-circle-check { color: #0d6efd; font-size: 1.25rem; }
.brand-meta { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 20px; color: #4b5563; font-size: 0.9rem; }
.brand-meta-item { display: flex; align-items: center; gap: 8px; }
.brand-meta-item i { color: #9ca3af; font-size: 1.1rem; }
.brand-member-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid #e5e7eb; background: #f9fafb; }
#company-contact { scroll-margin-top: 6rem; }
.brand-meta-item a { color: #0d6efd; text-decoration: none; }
.brand-meta-item a:hover { text-decoration: underline; }
.brand-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-brand-primary, .btn-brand-outline, .btn-brand-outline-secondary { border-radius: 8px; padding: 10px 24px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-brand-primary { background: #0d6efd; color: #fff; border: none; }
.btn-brand-primary:hover { background: #0b5ed7; color: #fff; }
.btn-brand-outline { background: #fff; color: #0d6efd; border: 1px solid #0d6efd; }
.btn-brand-outline:hover { background: #eff6ff; color: #0d6efd; }
.btn-brand-outline-secondary { background: #fff; color: #4b5563; border: 1px solid #d1d5db; }
.btn-brand-outline-secondary:hover { background: #f3f4f6; }
.zangia-tabs { display: flex; gap: 32px; margin-bottom: 24px; border-bottom: 1px solid #e5e7eb; overflow-x: auto; white-space: nowrap; }
.zangia-tabs a { padding: 12px 16px; color: #6b7280; text-decoration: none; font-weight: 600; border-bottom: 3px solid transparent; margin-bottom: -1px; font-size: 0.95rem; }
.zangia-tabs a:hover { color: #111827; }
.zangia-tabs a.active { color: #0d6efd; border-bottom-color: #0d6efd; }
.zangia-tabs .cart-pill { background: #0d6efd; color: #fff; border-radius: 99px; padding: 2px 8px; font-size: 0.75rem; margin-left: 4px; vertical-align: middle; }
.layout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; }
@media (max-width: 991px) { .layout-grid { grid-template-columns: 1fr; } }
.z-card, .zangia-pane { background: #fff; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid #e5e7eb; padding: 24px; }
.z-card { margin-bottom: 24px; }
.z-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.z-card-header i { color: #0d6efd; font-size: 1.1rem; background: #eff6ff; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px; }
.z-card-title { font-size: 1.1rem; font-weight: 700; margin: 0; color: #111827; }
.z-card-link { color: #0d6efd; text-decoration: none; font-weight: 600; font-size: 0.9rem; margin-left: auto; display: flex; align-items: center; gap: 4px; }
.z-card-link:hover { text-decoration: underline; }
.z-text { color: #4b5563; line-height: 1.6; font-size: 0.95rem; margin-bottom: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } }
.mini-card { display: flex; gap: 12px; align-items: flex-start; border: 1px solid #e5e7eb; border-radius: 10px; padding: 16px; background: #fff; }
.mini-card-icon { width: 38px; height: 38px; border-radius: 10px; background: #f3f4f6; color: #4b5563; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mini-card-icon.blue { background: #eff6ff; color: #0d6efd; }
.mini-card-title { font-weight: 700; color: #111827; font-size: 0.95rem; margin-bottom: 4px; }
.mini-card-desc { color: #4b5563; margin: 0; font-size: 0.9rem; line-height: 1.45; }
.empty-state { border: 1px dashed #d1d5db; border-radius: 8px; padding: 32px; display: flex; flex-direction: column; align-items: center; text-align: center; color: #6b7280; }
.empty-state-icon { font-size: 2rem; color: #9ca3af; margin-bottom: 12px; }
.empty-state-title { font-weight: 600; color: #111827; margin-bottom: 4px; }
.news-card { display: flex; gap: 16px; border: 1px solid #e5e7eb; border-radius: 8px; overflow: hidden; background: #fff; height: 100%; }
.news-card-img { width: 140px; height: 100%; min-height: 120px; object-fit: cover; flex-shrink: 0; background: #f3f4f6; }
.news-card-body { padding: 16px 16px 16px 0; display: flex; flex-direction: column; flex-grow: 1; }
.news-card-title { font-weight: 700; color: #111827; font-size: 0.95rem; margin-bottom: 4px; line-height: 1.3; }
.news-card-desc { font-size: 0.85rem; color: #6b7280; line-height: 1.4; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; font-size: 0.85rem; }
.news-card-date { color: #9ca3af; }
.news-card-link { color: #0d6efd; text-decoration: none; font-weight: 600; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.sidebar-list li:last-child { margin-bottom: 0; }
.sidebar-list i { color: #6b7280; font-size: 1.1rem; width: 24px; text-align: center; }
.sidebar-list .meta-content { flex-grow: 1; }
.sidebar-list .meta-title { font-size: 0.85rem; color: #6b7280; margin-bottom: 2px; }
.sidebar-list .meta-value { font-size: 0.95rem; color: #111827; font-weight: 500; line-height: 1.4; }
.sidebar-list .meta-value a { color: #0d6efd; text-decoration: none; }
.metrics-list { display: grid; grid-template-columns: 1fr; gap: 16px; }
.metric-item { display: flex; gap: 12px; align-items: center; }
.metric-item-icon { width: 40px; height: 40px; background: #eff6ff; color: #0d6efd; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.metric-item-info { flex-grow: 1; }
.metric-item-label { font-size: 0.8rem; color: #6b7280; margin-bottom: 2px; }
.metric-item-value { font-size: 1rem; font-weight: 700; color: #111827; }
