| 1 |
.bkbg-sps-wrap { box-sizing: border-box; width: 100%; } |
| 2 |
.bkbg-sps-inner { margin-left: auto; margin-right: auto; text-align: center; } |
| 3 |
|
| 4 |
.bkbg-sps-eyebrow { |
| 5 |
font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; |
| 6 |
margin: 0 0 12px; |
| 7 |
} |
| 8 |
.bkbg-sps-heading { font-weight: 700; margin: 0 0 12px; line-height: 1.2; } |
| 9 |
.bkbg-sps-subtext { line-height: 1.6; margin: 0 0 32px; } |
| 10 |
|
| 11 |
/* Logos */ |
| 12 |
.bkbg-sps-logos { |
| 13 |
display: flex; gap: 40px; align-items: center; |
| 14 |
justify-content: center; flex-wrap: wrap; margin-bottom: 40px; |
| 15 |
} |
| 16 |
.bkbg-sps-logo { display: flex; align-items: center; } |
| 17 |
.bkbg-sps-logo img { |
| 18 |
object-fit: contain; max-width: none; |
| 19 |
transition: filter 0.3s, opacity 0.3s; |
| 20 |
} |
| 21 |
.bkbg-sps-logos--grayscale .bkbg-sps-logo img { |
| 22 |
filter: grayscale(1); opacity: 0.55; |
| 23 |
} |
| 24 |
.bkbg-sps-logos--grayscale-hover .bkbg-sps-logo img { |
| 25 |
filter: grayscale(1); opacity: 0.5; |
| 26 |
} |
| 27 |
.bkbg-sps-logos--grayscale-hover .bkbg-sps-logo:hover img { |
| 28 |
filter: grayscale(0); opacity: 1; |
| 29 |
} |
| 30 |
|
| 31 |
/* Stats */ |
| 32 |
.bkbg-sps-stats { |
| 33 |
display: flex; justify-content: center; flex-wrap: wrap; |
| 34 |
border-top: 1px solid var(--bkbg-sps-divider, #e5e7eb); |
| 35 |
border-bottom: 1px solid var(--bkbg-sps-divider, #e5e7eb); |
| 36 |
padding: 32px 0; margin-bottom: 40px; |
| 37 |
} |
| 38 |
.bkbg-sps-stat { flex: 1; min-width: 120px; padding: 0 24px; } |
| 39 |
.bkbg-sps-stat + .bkbg-sps-stat { border-left: 1px solid var(--bkbg-sps-divider, #e5e7eb); } |
| 40 |
.bkbg-sps-stat-value { font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; } |
| 41 |
.bkbg-sps-stat-label { margin-top: 4px; } |
| 42 |
|
| 43 |
@media (max-width: 560px) { |
| 44 |
.bkbg-sps-stat { min-width: 45%; margin-bottom: 24px; border-left: none !important; } |
| 45 |
} |
| 46 |
|
| 47 |
/* Quote */ |
| 48 |
.bkbg-sps-quote-card { |
| 49 |
border-radius: 16px; padding: 32px 40px; |
| 50 |
text-align: left; max-width: 700px; margin: 0 auto; |
| 51 |
box-shadow: 0 2px 12px rgba(0,0,0,0.07); |
| 52 |
} |
| 53 |
.bkbg-sps-quote-mark { |
| 54 |
font-size: 48px; line-height: 1; margin-bottom: 12px; |
| 55 |
opacity: 0.35; font-family: Georgia, serif; |
| 56 |
} |
| 57 |
.bkbg-sps-quote-text { font-style: italic; line-height: 1.65; margin: 0 0 20px; } |
| 58 |
.bkbg-sps-author-row { display: flex; align-items: center; gap: 12px; } |
| 59 |
.bkbg-sps-author-avatar { |
| 60 |
width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; |
| 61 |
} |
| 62 |
.bkbg-sps-author-avatar-ph { |
| 63 |
width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; |
| 64 |
} |
| 65 |
.bkbg-sps-author-name { font-weight: 700; font-size: 15px; } |
| 66 |
.bkbg-sps-author-role { font-size: 13px; margin-top: 1px; } |
| 67 |
|
| 68 |
/* Editor */ |
| 69 |
.bkbg-sps-editor { min-height: 40px; } |
| 70 |
|