.g-mainList {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 25px;
}

.g-mainList-item {
    padding: 25px;
    border-radius: 12.5px;
    border: 1.5px solid var(--mainTextColour);
}

.g-mainList-item-title {
    font-size: 18px;
    line-height: 18px;
    font-weight: 700;
}

.g-mainList-item-subtext {
    font-size: 14px;
    line-height: 14px;
    font-weight: 500;
    margin-top: 12.5px;
}

.g-mainList-item[onclick] {
    cursor: pointer;
}

.g-mainList-item-sections {
    margin-top: 25px;
    display: flex;
    gap: 25px;
}

.g-mainList-item-sections-item {
    display: inline-flex;
    gap: 12.5px;
    margin-right: 12.5px;
}

.g-mainList-item-sections-item > * {
    display: inline-block;
    vertical-align: top;
    height: 20px;
    line-height: 20px;
}

.g-mainList-item-sections-item-icon {
    font-size: 18px;
}

.g-mainList-item-sections-item-title {
    font-size: 15px;
    font-weight: 700;
}

.g-mainList-item-sections-item-value {
    font-size: 15px;
    font-weight: 600;
}