.scg-9db94a21-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
    background-color: #E0E0E0;
    border-radius: 8px;
}

.scg-9db94a21-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.scg-9db94a21-outer {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background-color: #1AAFCB;
    border: 4px dashed #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.scg-9db94a21-inner {
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background-color: #555555;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

.scg-9db94a21-text {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    line-height: 1.3;
}

.scg-9db94a21-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: 2px solid #E0E0E0;
}

@media (max-width: 767px) {
    .scg-9db94a21-grid {
        grid-template-columns: 1fr;
    }
    .scg-9db94a21-outer {
        width: 180px;
        height: 180px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .scg-9db94a21-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
