 

.ca-home-hero__actions .ca-button {
    gap: 10px;
    padding: 10px 10px 10px 22px;
}

 
.ca-button-circle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.ca-button-circle svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

 
.ca-button-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    mask: conic-gradient(#000 var(--ring), transparent 0);
    -webkit-mask: conic-gradient(#000 var(--ring), transparent 0);
    --ring: 0%;
    transition: --ring 0.45s ease;
}

.ca-button:hover .ca-button-circle::after {
    --ring: 100%;
}

@property --ring {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 0%;
}
