.app-wrapper {
    width: 100%;
}

.back-to-products-btn {
    display: flex;
    align-items: center;
    font-family: "Inter", sans-serif;
    color: var(--green);
    margin-top: 70px;

}

.back-to-products-btn .back-to-products-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.back-to-products-icon {
    background: url("../../assets/icons/arrow_left_green.svg") center / contain no-repeat;
}

.dataset-title {
    color: var(--dark-100);
    font-family: "Inter", sans-serif;
    font-size: 34px;
    font-weight: 700;
    line-height: normal;
}

.dataset-description {
    color: var(--dark-60);
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 24px;
}

.available-dataset-controls {
    display: flex;
}

.primary-button {
    padding: 10px 8px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.24px;
}

.intro {
    margin-bottom: 50px;
}

.list-wrapper {
    margin-bottom: 50px;
}

.list-title {
    color: var(--dark-100);
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    margin-bottom: 64px;
}

.list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px 30px;
}

.consistence-item {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
}

.divider-icon {
    width: 60px;
    height: 3px;
    display: inline-block;
    background-color: var(--dark-20);
    border-radius: 100px;
    margin-bottom: 16px;
}

.consistence-description {
    color: var(--dark-100);
    font-size: 16px;
    line-height: 140%;
}

.coverage {
    margin-bottom: 50px;
}

.coverage-title {
    color: var(--dark-100);
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 64px;
}

.coverage-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.coverage-item {
    width: 217px;
    height: 217px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--dark-10);
    border-radius: 50%;
    margin: 0 0 -10px -10px;
}

.coverage-item-text {
    color: var(--dark-60);
    font-size: 34px;
    font-weight: 700;
    line-height: normal;
}

.questions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-100);
    padding: 120px;
}

.questions-text {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
}

@media screen and (max-width: 960px) {
    .primary-button {
        flex:  0 0 50%;
    }

    .list-title {
        margin-bottom: 32px;
    }

    .list {
        gap: 30px 16px;
    }

    .consistence-item {
        flex: 0 0 48%;
    }

    .coverage {
        margin-bottom: 100px;
    }

    .coverage-item {
        margin: 0 -20px -50px 0;
    }

    .questions {
        padding: 50px 40px;
    }

    .questions-text {
        font-size: 34px;
    }
}

@media screen and (max-width: 590px) {
    .primary-button {
        flex:  0 0 100%;
    }

    .list-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .list {
        gap: 24px 0;
    }

    .consistence-item {
        flex: 0 0 100%;
    }

    .coverage-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .coverage-item {
        margin-bottom: -20px;
    }

    .questions {
        flex-direction: column;
        align-items: start;
        padding: 50px 16px;
    }
}
