/* ------------------------------ */
/* ------------------------------ */
/* OVERVIEW */
.Overview {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: calc(15px * var(--scale));
   width: 100%;
   height: auto;
   overflow: visible;
}

.Overview .item {
   display: flex;
   flex-direction: column;
   gap: calc(5px * var(--scale));
   width: 100%;
   height: calc(160px * var(--scale));
   padding: calc(30px * var(--scale));
   background-color: var(--background-secondary);
   box-shadow: 0px 0px calc(5px * var(--scale)) calc(1px * var(--scale)) var(--border-color);
   border-radius: calc(25px * var(--scale));
   color: var(--text-primary);
}

.Overview .item-value {
   display: block;
   width: 100%;
   height: calc(50px * var(--scale));
   font-size: calc(var(--font-medium)* var(--scale));
   font-weight: var(--font-bold);
   line-height: 1;
   text-align: right;
}

.Overview .item-name {
   display: block;
   width: 100%;
   height: calc(25px * var(--scale));
   font-size: calc(var(--font-small)* var(--scale));
   font-weight: var(--font-regular);
   line-height: 1;
   text-align: left;
   text-transform: capitalize;
}

.Overview .item-type {
   display: block;
   width: 100%;
   height: calc(25px * var(--scale));
   font-size: calc(var(--font-x-small)* var(--scale));
   font-weight: var(--font-regular);
   line-height: 1;
   text-align: left;
   text-transform: capitalize;
}