.reports {
    text-align: center;
    margin-block: 3rem;

    .subtitle {
        color: var(--color-red);
        font-family: var(--roboto-medium);
        font-size: 18px;
        font-weight: 500;
        line-height: 21.09px;
        letter-spacing: 0.09em;
        text-transform: uppercase;
    }

    .title {
        font-family: var(--roboto-medium);
        font-size: 30px;
        line-height: 35.16px;
        text-align: center;
        color: #ffffff;
        text-transform: uppercase;
        margin-bottom: 2rem;
    }

    .description {
        font-family: var(--roboto-regular);
        font-size: 22px;
        line-height: 28px;
        text-align: center;
        color: var(--color-light-grey);
        max-width: 950px;
        margin: auto;
    }
}

.report-tabs {
    .tab {
        padding: 1rem;
        border: 1px solid #59595A;
        margin-bottom: 1rem;
        display: block;
        text-transform: uppercase;
        font-family: var(--roboto-medium);
        font-size: 16px;
        line-height: 32px;
        color: #FFFFFF;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        flex: 1;

        &.active,
        &:hover {
            background-color: var(--color-red);
            border: 1px solid var(--color-red);
        }
    }

    .report-list {
        background: #1A1A1A;
        border: 1px solid #262626;
        padding: 50px 32px;

        .report-item:first-child {
            padding-top: 0;
        }

        .report-item {
            padding-block: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            margin-bottom: 1rem;

            .title {
                font-family: var(--roboto-medium);
                font-size: 18px;
                font-weight: 400;
                line-height: 24px;
                margin: 0;
                color: #ffffff;
            }
        }

        .devider {
            color: #333333;
            margin: 0;
            opacity: 1;
        }
    }
}

@media (max-width: 992px) {
    .report-types {
        display: flex;
        gap: 1rem;
        padding-inline: 0;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .reports {
        .subtitle {
            font-size: 16px;
            line-height: 18.09px;
        }

        .title {
            font-size: 24px;
            line-height: 28.16px;
        }

        .description {
            font-size: 17px;
        }
    }

    .report-tabs {
        .tab {
            line-height: 24px;
        }
    }
}

@media (max-width: 329px) {
    .report-tabs {
        .tab:first-child {
            margin-bottom: 0;
        }
    }
}
