.reports-section {
    width: 100vw;
    max-width: 100% !important;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 60px 0;
}

/* Editor Styles - Reset full-width styles in admin */
.editor-styles-wrapper .reports-section,
.block-editor-block-list__layout .reports-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

body.wp-admin .editor-styles-wrapper .reports-section,
body.wp-admin .block-editor-block-list__layout .reports-section {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.reports-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Title with green accent line */
.reports-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.reports-title {
    font-family: Lexend, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    margin: 0;
    margin-right: 20px;
    white-space: nowrap;
}

.reports-title-accent {
    flex: 1;
    height: 2px;
    background: rgba(46, 204, 113, 0.7);
    border-radius: 1px;
}

.reports-title-accent::after {
    content: '';
    position: absolute;
    left: 100%;
    right: calc(-50vw + 50% - 60px);
    top: 0;
    height: 2px;
    background: rgba(46, 204, 113, 0.7);
    pointer-events: none;
}

/* Editor Styles - Reset accent line extension in admin */
.editor-styles-wrapper .reports-title-accent::after,
.block-editor-block-list__layout .reports-title-accent::after {
    display: none;
}

body.wp-admin .editor-styles-wrapper .reports-title-accent::after,
body.wp-admin .block-editor-block-list__layout .reports-title-accent::after {
    display: none;
}

/* Reports list */
.reports-list {
    display: grid;
    gap: 32px;
}

.reports-list--columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.reports-list--columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.reports-list--columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.report-card {
    max-width: 100%;
}

.report-card__link {
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.report-card__link--static {
    cursor: default;
}

.report-card__image {
    display: block;
    width: 100%;
    height: auto;
}

.reports-placeholder {
    font-family: Lexend, sans-serif;
    font-size: 14px;
    color: #666;
}

@media (max-width: 1024px) {
    .reports-container {
        padding: 0 30px;
    }

    .reports-list {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .reports-section {
        padding: 40px 0;
    }

    .reports-container {
        padding: 0 20px;
    }

    .reports-title-wrapper {
        flex-wrap: wrap;
    }

    .reports-title {
        font-size: 26px;
        margin-bottom: 8px;
        white-space: normal;
    }

    .reports-list {
        flex-direction: column;
        gap: 20px;
    }
}


