.planSelect {
    display: inline-flex;
    align-items: center;
    padding: .5rem;
    gap: .5rem;
    width: 100%;

    background-color: var(--bg-default);
    border-radius: .5rem;
    border: 1px solid var(--border-subtle);
    border-left: 8px solid var(--border-brand-yellow);

    cursor: pointer;
    transition: background-color .3s, transform .2s ease;
    transform-origin: left center;
}

a.planSelect {
    text-decoration: none;
    color: var(--text-brand-blue);
}

.plan-arrow {
    margin-left: auto;
    color: var(--icon-bold);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--bg-brand-yellow);
    color: var(--icon-brand-blue);
    width: 2.25rem;
    height: 2.25rem;
    flex-shrink: 0;
    align-self: center; 
    min-width: 2.25rem;
}

.icon-circle .ph-duotone {
    font-size: 1.5rem;
}

.planSelect:hover {
    background-color: var(--bg-brand-yellow);
    transform: scaleX(1.02);
}