/* NEWSLETTER PERSONALIZED ICONS */
.benefit-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 122, 204, 0.3);
    transition: all 0.3s ease;
}

.benefit-photo:hover {
    border-color: var(--accent-blue);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 122, 204, 0.3);
}

/* Override default benefit-icon styles for photos */
.benefit-icon.benefit-photo {
    font-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* AI ASSISTANTS PERSONALIZED PHOTOS */
.assistant-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 122, 204, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.assistant-photo:hover {
    border-color: var(--accent-blue);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 122, 204, 0.4);
}

/* Override default assistant-icon styles for photos */
.assistant-icon.assistant-photo {
    font-size: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}