@import url('/styles/reset.css');
@import url('/styles/layout.css');

.wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;

    background-color: #eff4f7;
    padding-bottom: 60px;
}

.wrap > header {
    width: 100%;

    padding: 10px 0;
    background-color: #fff;

    text-align: center;
    margin-bottom: 24px;
}

.data-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 20px;
    width: calc(100% - 40px);
}

.data-item {
    width: 100%;
    box-shadow: 0px 2px 10px 0px #0000001a;

    background-color: #fff;

    display: flex;
    flex-direction: column;
}

.data-item > header {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    padding: 24px;
}

.data-item > header h3 {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
}
.data-item > header h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 47px;
    letter-spacing: -0.0375em;
    color: #0b1354;
}

.data-item > header p {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #4f4f4f;
}

.data-item hr {
    width: 100%;
    height: 1px;
    border: none;
    background-color: #ececec;
}

.data-item > .chart {
    padding: 24px;
}
