/* JL Buddies v2.0 */
.jl-buddies-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; max-width: 920px; margin: 0 auto; }
.jl-buddy-card { background: white; border-radius: 24px; padding: 32px 20px; text-align: center; box-shadow: 0 6px 24px rgba(0,0,0,0.05); transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1); cursor: default; }
.jl-buddy-card:hover { transform: translateY(-10px) rotate(-2deg); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.jl-buddy-avatar { width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; font-size: 40px; box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.jl-buddy-name { font-family: 'Baloo 2', cursive; font-size: 22px; font-weight: 700; margin-bottom: 2px; }
.jl-buddy-role { font-size: 14px; font-weight: 600; color: #999; margin-bottom: 12px; }
.jl-buddy-speech { padding: 10px 16px; border-radius: 16px; font-size: 13px; font-weight: 600; background: #F0F7FF; line-height: 1.4; position: relative; }
.jl-buddy-speech::after { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid #F0F7FF; }
