.number-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 24px;
    text-decoration: none;
}

.number-box:hover {
    text-decoration: none;
}

.number-box__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    min-width: 0;
    background: #f2f2f2;
    color: #111;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    border-radius: 8px;
}

.number-box__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.number-box__title {
    margin: 0;
    color: #111;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.number-box__description {
    margin: 0;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}
