/* Weekly Reports - White card theme */

/* Header */
.reports-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.reports-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.reports-header__sub {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.reports-feed-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #f59e0b;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.reports-feed-btn:visited {
    color: #f59e0b;
}

.reports-feed-btn:hover {
    background: #fffbeb;
    border-color: #f59e0b;
    color: #d97706;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

/* Report Cards Grid */
.reports-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.reports-grid a {
    color: inherit;
    text-decoration: none;
}

.reports-grid a:visited {
    color: inherit;
}

.report-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.report-card:visited,
.report-card:active {
    color: inherit;
    text-decoration: none;
}

.report-card:hover {
    border-color: #6366f1;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
    color: inherit;
    text-decoration: none;
}

.report-card--current {
    border-color: #6366f1;
    background: linear-gradient(135deg, #faf5ff 0%, #fff 100%);
}

.report-card__week {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 50px;
}

.report-card__week-num {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6366f1;
}

.report-card__badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #6366f1;
    padding: 2px 6px;
    border-radius: 4px;
}

.report-card__dates {
    flex: 1;
    color: #333;
    font-size: 0.95rem;
    font-weight: 500;
}

.report-card__stats {
    display: flex;
    gap: 12px;
    align-items: center;
}

.report-card__stat {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #6366f1;
    font-weight: 600;
}

.report-card__stat--deals {
    color: #10b981;
}

.report-card__stat--blogs {
    color: #8b5cf6;
}

.report-card__stat--quiet {
    color: #9ca3af;
    font-weight: 400;
    font-style: italic;
}

.report-card__arrow {
    color: #d1d5db;
    transition: color 0.2s ease;
}

.report-card:hover .report-card__arrow {
    color: #6366f1;
}

/* CTA Section */
.reports-cta {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.reports-cta__text {
    color: #666;
    margin: 0 0 1rem;
}

.reports-cta__links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.reports-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.reports-btn--primary {
    background: #6366f1;
    color: #fff;
}

.reports-btn--primary:visited {
    color: #fff;
}

.reports-btn--primary:hover {
    background: #4f46e5;
    color: #fff;
    transform: translateY(-1px);
}

.reports-btn--outline {
    background: #fff;
    border: 1px solid #e5e7eb;
    color: #333;
}

.reports-btn--outline:visited {
    color: #333;
}

.reports-btn--outline:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-1px);
}

/* ============ SHOW PAGE ============ */

/* Show Header */
.report-show-header {
    margin-bottom: 2rem;
}

.report-show-header__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.report-show-header__badge {
    background: #f3f4f6;
    color: #6366f1;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.report-show-header__live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #10b981;
}

.report-show-header__live i {
    animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.report-show-header__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.report-show-header__sub {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Stats Row */
.report-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 2rem;
}

.report-stat {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
}

.report-stat__value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.report-stat__label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

/* Sections */
.report-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
}

.report-section__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-section__title i {
    font-size: 1.25rem;
}

/* Events List */
.report-events-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.report-event {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
    transition: background 0.15s ease;
}

.report-event:hover {
    background: #f3f4f6;
}

.report-event__firm {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
    flex-shrink: 0;
}

.report-event__logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.report-event__name {
    color: #6366f1;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.report-event__name:visited {
    color: #6366f1;
}

.report-event__name:hover {
    text-decoration: underline;
    color: #4f46e5;
}

.report-event__name--deactivated {
    color: #ef4444;
    text-decoration: line-through;
}

.report-event__detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.report-event__title {
    font-size: 0.875rem;
    color: #333;
}

.report-event__desc {
    font-size: 0.8rem;
    color: #666;
}

.report-event__change {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.report-event__old {
    color: #9ca3af;
    text-decoration: line-through;
}

.report-event__new {
    color: #10b981;
    font-weight: 600;
}

.report-event__date {
    font-size: 0.8rem;
    color: #9ca3af;
    white-space: nowrap;
}

.report-more {
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
    font-style: italic;
    margin: 8px 0 0;
}

/* Blog Posts in Report */
.report-blog-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.report-blog-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 16px;
    background: #f9fafb;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.report-blog-item:visited {
    color: inherit;
    text-decoration: none;
}

.report-blog-item:hover {
    background: #f3f4f6;
    transform: translateX(4px);
}

.report-blog-item__cat {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #8b5cf6;
}

.report-blog-item__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a2e;
}

.report-blog-item__excerpt {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* Empty State */
.report-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.report-empty i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.report-empty h3 {
    font-size: 1.25rem;
    color: #1a1a2e;
    margin: 0 0 0.5rem;
}

.report-empty p {
    color: #666;
    margin: 0;
}

.report-empty a {
    color: #6366f1;
}

.report-empty a:visited {
    color: #6366f1;
}

/* Navigation */
.report-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.report-nav__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.report-nav__btn:visited {
    color: #333;
    text-decoration: none;
}

.report-nav__btn:hover {
    border-color: #6366f1;
    color: #6366f1;
    transform: translateY(-1px);
}

.report-nav__btn--center {
    font-weight: 600;
}

.report-nav__btn--disabled {
    color: #d1d5db;
    cursor: not-allowed;
}

.report-nav__btn--disabled:hover {
    border-color: #e5e7eb;
    color: #d1d5db;
    transform: none;
}

/* Mobile */
@media (max-width: 768px) {
    .reports-header {
        flex-direction: column;
    }

    .reports-header__title {
        font-size: 1.5rem;
    }

    .report-card {
        flex-wrap: wrap;
        gap: 8px;
    }

    .report-card__stats {
        width: 100%;
        justify-content: flex-start;
    }

    .report-card__arrow {
        display: none;
    }

    .report-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .report-event {
        flex-wrap: wrap;
    }

    .report-event__firm {
        min-width: auto;
        width: 100%;
    }

    .report-nav {
        flex-direction: column;
    }

    .report-nav__btn {
        width: 100%;
        justify-content: center;
    }
}
