.info-box {
    padding: 12px;
    background-color: #EFF3F6;
    border-left: 5px solid #B0C4D6;
    border-radius: 5px;
    font-size: 16px;
    color: #111827;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    gap: 16px;
}

.info-box > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    margin-bottom: 0.5rem;
}

.info-box-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    line-height: 150%;
}

.info-box-body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

@media (max-width: 768px) {
    .info-box-body {
        text-wrap: wrap;
    }
    
    .info-box > div {
        grid-template-columns: 1fr;
    }
}
