/* Phone Inline Strip — aum-pist */
.aum-pist-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background-color: var(--card-bg, #ffffff);
    border: 1px solid var(--border, rgba(0,0,0,0.08));
    border-radius: 12px;
    box-sizing: border-box;
    flex-wrap: wrap;
}

/* Icon */
.aum-pist-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--primary, #3b82f6) 10%, transparent);
    color: var(--primary, #3b82f6);
    font-size: 18px;
    flex-shrink: 0;
}
.aum-pist-icon-wrap i, .aum-pist-icon-wrap svg { display: block; width: 1em; height: 1em; }

/* Info */
.aum-pist-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.aum-pist-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted, #6f6e69);
    line-height: 1;
}

.aum-pist-number {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-on-bg, #111110);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: color 0.15s ease;
}
.aum-pist-number:hover { color: var(--primary, #3b82f6); }

.aum-pist-hours {
    font-size: 12px;
    color: var(--text-muted, #6f6e69);
    line-height: 1.3;
}

/* Call button */
.aum-pist-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background-color: var(--primary, #3b82f6);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease, transform 0.15s ease;
}
.aum-pist-btn:hover { opacity: 0.88; transform: translateY(-1px); }
