/**
 * Number Box Widget Styles
 */

.pcd-number-box-wrapper {
    position: relative;
    padding-top: 40px;
    margin-top: 33px;
    height: 100%;
}

.pcd-number-box-container {
    position: relative;
    padding: 40px 30px 30px;
    border-style: solid;
    background-color: #ffffff;
    border-radius: 40px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pcd-number-box-circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    background-color: #CEB682;
    color: #ffffff;
    border-radius: 50%;
    border-style: solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Circle Alignment */
.pcd-number-box-circle-left .pcd-number-box-circle {
    left: 10%;
    transform: translateY(-50%);
}

.pcd-number-box-circle-center .pcd-number-box-circle {
    left: 50%;
    transform: translate(-50%, -50%);
}

.pcd-number-box-circle-right .pcd-number-box-circle {
    left: auto;
    right: 10%;
    transform: translateY(-50%);
}

.pcd-number-box-title {
    margin: 0; /* Reset margin to allow vertical centering */
    color: #1a1a1a;
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
}

.pcd-number-box-description {
    margin: 0; /* Reset margin to allow vertical centering */
    color: #4a4a4a;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.pcd-number-box-description p {
    margin: 0;
}
