header {
    background-color: var(--black);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.back-btn {
    background-color: var(--primary);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.back-btn:hover {
    background-color: #FFC500;
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    /* Added color for branding consistency */
}

/* Slider Wrapper */
.reports-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 3rem;
    overflow: visible;
}

/* Reports Grid - Changed from Grid to Flex for Sliding */
.reports-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 1rem 0;
}

.reports-grid::-webkit-scrollbar {
    display: none;
}

/* Report Card properties */
.report-card {
    flex: 0 0 calc(33.333% - 1.4rem);
    /* Shows 3 cards on desktop */
    min-width: 300px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.brand-tag {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.report-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.report-meta {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.report-description {
    margin-bottom: 1.5rem;
    color: #CCCCCC;
    line-height: 1.6;
}

.report-btn {
    background-color: var(--primary);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.report-btn:hover {
    background-color: #FFC500;
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #FFC500;
}

.slider-btn.prev {
    left: -20px;
}

.slider-btn.next {
    right: -20px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .report-card {
        flex: 0 0 calc(50% - 1rem);
        /* 2 cards */
    }
}

@media (max-width: 768px) {
    .report-card {
        flex: 0 0 100%;
        /* 1 card */
    }

    .slider-btn {
        display: none;
        /* Hide buttons on small mobile for touch swipe */
    }
}
