.cct-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    font-family: inherit;
}

.cct-box {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1.5px solid var(--cct-color);
}

.cct-box span {
    font-size: 20px;
    font-weight: bold;
}

.cct-box small {
    font-size: 12px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .cct-wrapper {
        gap: 8px;
    }

    .cct-box {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .cct-box span {
        font-size: 16px;
    }

    .cct-box small {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .cct-wrapper {
        gap: 6px;
    }

    .cct-box {
        width: 42px;
        height: 42px;
    }

    .cct-box span {
        font-size: 13px;
    }

    .cct-box small {
        font-size: 9px;
    }
}