-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprint.css
More file actions
905 lines (772 loc) · 24.9 KB
/
Copy pathprint.css
File metadata and controls
905 lines (772 loc) · 24.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
/* ============================================================
RoleModel Software — Print Stylesheet
Designed for rolemodelsoftware.com (Framer-generated)
Published Jun 4, 2026
============================================================ */
@media print {
/* ── Page Setup ─────────────────────────────────────────── */
@page {
margin: 0.75in 0.65in;
size: letter portrait;
}
@page :first {
margin-top: 0.5in;
}
/* ── Reset / Base ───────────────────────────────────────── */
*,
*::before,
*::after {
background: transparent !important;
background-image: none !important;
background-color: transparent !important;
color: #111 !important;
box-shadow: none !important;
text-shadow: none !important;
border: none !important;
outline: none !important;
-webkit-print-color-adjust: exact;
print-color-adjust: exact;
}
html,
body {
width: 100% !important;
font-size: 9pt !important;
line-height: 1.45 !important;
font-family: "DM Sans", Arial, Helvetica, sans-serif !important;
}
#main {
min-height: unset !important;
}
/* ── Hide Entirely ──────────────────────────────────────── */
.framer-m1hrbc-container {
display: none !important;
}
/* Navigation (fixed top bar + all variants) */
.framer-FgykB.framer-N7hkP.framer-iE5xt.framer-19wuhwu.framer-v-19wuhwu,
.framer-m1hrbc-container,
.framer-c6hwu,
.framer-szb64,
.framer-aW1Uj,
nav,
[data-framer-name="Navbar__Inner"],
[data-framer-name="Navbar__Start"],
[data-framer-name="Navbar__Center"],
[data-framer-name="Navbar__End"] {
display: none !important;
}
/* Partner ticker bar */
.framer-pd64zc,
.framer-p6kj61-container,
.framer-115uftj {
display: none !important;
}
/* Video backgrounds, canvases, iframes */
video,
canvas,
iframe {
display: none !important;
}
/* Scroll indicators */
.framer-dy6uv6-container,
.framer-9bx8xo-container {
display: none !important;
}
/* Gradient overlays / fade layers */
.framer-1dqljgb-container,
.framer-1bnsk33-container,
.framer-zx5kof-container,
.framer-wn6xg7-container {
display: none !important;
}
/* Animated particle / dot grid background containers */
.framer-iexylb-container,
.framer-nbhyun-container canvas,
.framer-24hvdt-container canvas,
.framer-143xghu-container canvas {
display: none !important;
}
/* Spectrum / rainbow bar at footer transition */
.framer-1hhlf6u-container {
display: none !important;
}
/* Mega-menu dropdowns */
.framer-2mm1m2-container {
display: none !important;
}
/* AI guide book cover image stack (decorative) */
.framer-1g2plf7,
.framer-70d39d,
.framer-bnsxmu {
display: none !important;
}
/* Clutch review widget */
.framer-vq92mq-container {
display: none !important;
}
/* Case-study card arrow icons */
.framer-qaj315,
.framer-BSM5e {
display: none !important;
}
/* Testimonial play button + background slide image */
.framer-q9qg6y-container button,
.framer-q9qg6y-container [aria-label="Fading slideshow"],
.framer-q9qg6y-container [style*="position:absolute"] {
display: none !important;
}
/* Framer SVG icon masks (nav icons, etc.) */
.framer-yW6uK,
.framer-zOJx5,
.framer-3aae6,
.framer-HqhfY,
.framer-27ynY,
.framer-n66Hy,
.framer-O7k8P,
.framer-vHkrp {
display: none !important;
}
/* Social icons in footer */
.framer-1fr4fx,
.framer-q5or7o-container,
.framer-jquf9a-container,
.framer-1t7epvn-container,
.framer-tnmy6w-container,
.framer-kk52h8-container {
display: none !important;
}
/* Footer nav chevrons */
.framer-iv2aym,
.framer-1o1nc4d {
display: none !important;
}
/* Yellow bracket accents in hero "[" and "]" */
.framer-1rwrwap p,
.framer-1xku8tz p {
display: none !important;
}
/* Partner/client logo ticker */
[aria-label="Scroll-controlled ticker"],
[role="marquee"] {
display: none !important;
}
/* Clip-path reveal hover overlays */
[style*="clip-path: circle(0%"] {
display: none !important;
}
/* Highlight / ripple click-effect overlays */
[data-highlight] > div[style*="clip-path"] {
display: none !important;
}
/* NOTE: do NOT add `.ssr-variant + .ssr-variant { display:none }`.
Framer's own hidden-* classes are mutually exclusive
media-query ranges (max-809 / 810-959 / 960-1199 /
1200-1599 / 1600+), so exactly ONE breakpoint variant is
visible at any width — including the print page width
(~690px ⇒ the phone variant). Hiding "duplicate" siblings
ourselves hid the one variant Framer keeps, blanking the
whole page. */
/* Stat decorative SVG tick marks */
.framer-5ma6wt,
.framer-q01dgo,
.framer-1wwtmjn,
.framer-1lvwrmq,
.framer-pyhcsv,
.framer-xi0jac,
.framer-nndy0n,
.framer-1b7elzv,
.framer-14tinvl,
.framer-1ebkvi,
.framer-bo6g8r,
.framer-14rh4ba,
.framer-o3dx2g,
.framer-5oo3jw,
.framer-1ei9vtu,
.framer-53rtho,
.framer-1cwl2sy,
.framer-6os2y0,
.framer-rntcch {
display: none !important;
}
/* ── Scroll-driven sticky panels — flatten to static ───── */
.framer-nbhyun-container,
.framer-24hvdt-container,
.framer-143xghu-container {
position: static !important;
height: auto !important;
}
/* Overflow / clip wrappers that hide content during scroll */
.framer-Bftao,
.framer-KDyd1,
.framer-xdvjbp {
overflow: visible !important;
}
/* Dot-grid background on hero header */
.framer-auBVu,
[style*="radial-gradient(circle, rgba(255,255,255,0.15)"] {
background-image: none !important;
}
/* Background image wrappers inside testimonial / cards */
[data-framer-background-image-wrapper="true"] {
display: none !important;
}
/* ── Layout: full-width, static, auto-height ────────────── */
/* NOTE: deliberately does NOT set `display` — doing so would
override the earlier `display: none` hide rules (same
specificity, later in the file) and resurrect the navbar,
overlays, etc. It would also flatten Framer's flex/grid
layouts that we want to keep. */
.framer-Bftao,
.framer-KDyd1,
.framer-auBVu,
.framer-Z15Fd,
.framer-RWRvI,
.framer-d05kF,
.framer-O2xTs,
.framer-FgykB,
[class*="framer-"] {
width: 100% !important;
max-width: 100% !important;
min-width: unset !important;
left: unset !important;
right: unset !important;
transform: none !important;
will-change: auto !important;
position: static !important;
height: auto !important;
min-height: unset !important;
}
/* Restore flex for primary layout containers */
.framer-3mtdwx,
.framer-1k9ar2r,
.framer-ont0by,
.framer-1g715hg,
.framer-90nez1,
.framer-20sx8z,
.framer-ishqje {
display: flex !important;
flex-direction: column !important;
gap: 8pt !important;
}
/* Stats row: 4-up horizontal grid */
.framer-O2xTs .framer-100y4qm {
display: grid !important;
grid-template-columns: repeat(4, 1fr) !important;
gap: 12pt !important;
}
/* Footer sitemap: 3-column grid */
.framer-FgykB .framer-90nez1 {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap: 16pt !important;
align-items: start !important;
}
/* Footer bottom bar */
.framer-g2wwkj {
display: flex !important;
justify-content: space-between !important;
flex-wrap: wrap !important;
gap: 6pt !important;
padding-top: 8pt !important;
margin-top: 12pt !important;
}
/* ════════════════════════════════════════════════════════
TYPE SYSTEM — single forced scale
────────────────────────────────────────────────────────
display 16pt / 1.1 hero headline, stat numbers
h2 12pt / 1.2 section headings
h3 10pt / 1.25 sub-headings, card titles
h4–h6 9pt / 1.3 minor headings
body 9pt / 1.45 paragraphs, lists, links, buttons
small 7.5pt / 1.4 labels, captions, footer links
micro 6.5pt / 1.3 counters, URLs, legal
════════════════════════════════════════════════════════ */
/* 1. Flatten EVERYTHING to body size — including Framer's
inline style="font-size:…" spans and divs. Specific scale
steps below override with higher specificity. */
.framer-text,
[class*="framer-"],
[style*="font-size"],
p, li, span, a, div, blockquote, figcaption {
font-size: 9pt !important;
line-height: 1.45 !important;
letter-spacing: 0 !important;
}
/* 2. Heading scale. The `h_ .framer-text` / `h_ [style*=…]`
variants out-rank the catch-all above so text nested in
spans inside headings (Framer's pattern) gets the right
size too. */
h1, h1[class], h1 .framer-text, h1 [style*="font-size"], h1 span,
.framer-8mmmkf-container span,
.framer-ue74oz-container span,
.framer-2em3nr-container span {
font-size: 16pt !important;
line-height: 1.1 !important;
letter-spacing: -0.01em !important;
font-weight: 700 !important;
}
h2, h2[class], h2 .framer-text, h2 [style*="font-size"], h2 span {
font-size: 12pt !important;
line-height: 1.2 !important;
font-weight: 700 !important;
page-break-after: avoid;
}
h3, h3[class], h3 .framer-text, h3 [style*="font-size"], h3 span {
font-size: 10pt !important;
line-height: 1.25 !important;
font-weight: 700 !important;
page-break-after: avoid;
}
h4, h4[class], h4 .framer-text, h4 span,
h5, h5[class], h5 .framer-text, h5 span,
h6, h6[class], h6 .framer-text, h6 span {
font-size: 9pt !important;
line-height: 1.3 !important;
font-weight: 700 !important;
page-break-after: avoid;
}
/* 3. Color reset for all text */
h1, h2, h3, h4, h5, h6,
.framer-text,
p, li, span {
color: #111 !important;
-webkit-text-fill-color: #111 !important;
background-clip: unset !important;
-webkit-background-clip: unset !important;
}
/* Flatten all gradient text fills to solid */
[data-text-fill],
span[style*="-webkit-text-fill-color"],
[style*="background-clip: text"],
[style*="-webkit-background-clip: text"] {
-webkit-text-fill-color: #111 !important;
background: none !important;
background-clip: unset !important;
-webkit-background-clip: unset !important;
color: #111 !important;
}
/* Remove doodle underline masks */
[style*="mask-image"],
[style*="-webkit-mask-image"] {
mask-image: none !important;
-webkit-mask-image: none !important;
background: none !important;
}
/* Hero headline — flatten gradient fill (size set by scale) */
.framer-8mmmkf-container span,
.framer-ue74oz-container span,
.framer-2em3nr-container span {
color: #111 !important;
-webkit-text-fill-color: #111 !important;
background-image: none !important;
background-clip: unset !important;
-webkit-background-clip: unset !important;
}
/* Section headings — color only (size set by scale) */
h2.framer-text,
.framer-hqjum6 h2 {
color: #111 !important;
}
/* Body paragraphs */
.framer-193b61g p,
.framer-1mfknxl p,
.framer-brtixy p,
p.framer-text {
font-size: 9pt !important;
line-height: 1.45 !important;
color: #333 !important;
max-width: 100% !important;
}
/* Monospace section counter labels ("01 / 04") — micro */
.framer-djsbyi p,
.framer-17xe5za p,
.framer-194g9as p,
.framer-1chc5wp p {
font-size: 6.5pt !important;
letter-spacing: 0.1em !important;
color: #666 !important;
text-transform: uppercase !important;
}
/* All inline div[style*="font-size"] rich text blocks (CTA, etc.) */
div[style*="font-size"] {
color: #111 !important;
-webkit-text-fill-color: #111 !important;
background-image: none !important;
background-clip: unset !important;
-webkit-background-clip: unset !important;
}
/* ── Hero / Header Section ──────────────────────────────── */
.framer-l7lbt7-container {
padding-bottom: 16pt;
margin-bottom: 20pt;
page-break-after: avoid;
}
.framer-auBVu.framer-1l81kh7 {
height: auto !important;
padding: 20pt 0 !important;
align-items: flex-start !important;
}
/* RoleModel wordmark SVG */
.framer-auBVu svg {
width: 240pt !important;
height: auto !important;
max-width: 100% !important;
}
/* Force SVG strokes dark for print */
.framer-auBVu svg path {
stroke: #111 !important;
}
/* ── Scroll Panels (01–04 sections) ────────────────────── */
.framer-Z15Fd,
.framer-RWRvI {
min-height: unset !important;
height: auto !important;
padding: 20pt 0 !important;
page-break-inside: avoid;
}
/* Hide background fade overlays inside scroll panels */
.framer-Z15Fd .framer-y649pr,
.framer-RWRvI .framer-y649pr {
display: none !important;
}
/* ── AI Guide / Shape-Cutout CTA Banner ─────────────────── */
.framer-wyclha-container {
page-break-inside: avoid;
border-top: none !important;
}
.framer-wyclha-container .shape-cutout-card {
border: none!important;
padding: 16pt !important;
page-break-inside: avoid;
}
.shape-cutout-card h3 {
font-size: 10pt !important;
}
/* Show only the text content block inside the card */
.framer-wyclha-container .shape-cutout-card .content {
position: static !important;
z-index: auto !important;
padding: 0 !important;
}
/* Download / CTA buttons inside AI guide card — show as underlined text */
.framer-wyclha-container a[role="button"],
.framer-wyclha-container a[href] {
display: inline !important;
text-decoration: underline !important;
color: #111 !important;
font-weight: 600 !important;
margin-right: 12pt;
}
/* ── Approach / Video Section ───────────────────────────── */
.framer-19nd0uv-container {
page-break-inside: avoid;
}
.framer-d05kF {
padding: 16pt 0 !important;
}
/* ── Testimonial Section ────────────────────────────────── */
.framer-74c9d5 {
page-break-inside: avoid;
border: none !important;
}
.framer-q9qg6y-container {
page-break-inside: avoid;
}
/* Make the testimonial card readable without background image */
.testimonial {
border: none !important;
padding: 16pt !important;
margin: 12pt 0 !important;
page-break-inside: avoid;
}
.testimonial .content {
position: static !important;
padding: 0 !important;
display: block !important;
}
.testimonial h3 {
font-size: 10pt !important;
font-weight: 700 !important;
color: #111 !important;
margin-bottom: 8pt !important;
page-break-after: avoid;
}
.testimonial blockquote {
font-size: 9pt !important;
line-height: 1.45 !important;
color: #333 !important;
border-left: 3pt solid #2988fd !important;
padding-left: 10pt !important;
margin: 10pt 0 !important;
font-style: italic;
}
/* ── Vimeo players (approach diagram, testimonials, etc.) ──
The approach diagram is an animated Vimeo sequence; video
frames can't print. Collapse each player into a slim
labeled placeholder so the surrounding text reads cleanly. */
div[data-vimeo-player-active] {
width: 100% !important;
max-width: 800px !important;
height: auto !important;
aspect-ratio: 16/9 !important;
min-height: unset !important;
background: #f2f2f2 !important;
border-radius: 4pt !important;
padding: 8pt 10pt !important;
overflow: hidden !important;
page-break-inside: avoid;
}
/* Kill the player chrome: play button, time readout, controls */
div[data-vimeo-player-active] > div,
div[data-vimeo-player-active] button {
display: none !important;
}
/* Printable label in place of the video */
div[data-vimeo-player-active]::before {
content: "\25B6 Animated diagram \2014 watch online at rolemodelsoftware.com/approach";
display: block;
font-size: 7.5pt !important;
line-height: 1.4 !important;
color: #555 !important;
letter-spacing: 0.02em;
}
/* ── Company Stats ──────────────────────────────────────── */
.framer-O2xTs,
.framer-96qg6q-container {
padding: 16pt 0 !important;
page-break-inside: avoid;
}
/* Stat cards — the one allowed border */
.framer-1accifx,
.framer-1b09noc,
.framer-1s3lz0j,
.framer-1yvtfgv {
border: 0.75pt solid #ccc !important;
padding: 10pt !important;
}
/* "ROLEMODEL COMPANY HIGHLIGHTS" label — small */
.framer-sxlkdm p {
font-size: 7.5pt !important;
letter-spacing: 0.12em !important;
color: #555 !important;
text-transform: uppercase !important;
margin-bottom: 12pt;
}
/* Big numbers (28, 20+, 45+, 0) — display */
.framer-1accifx .framer-1mfkaj6 p,
.framer-1b09noc .framer-1gfwxms p,
.framer-1s3lz0j .framer-pjhfn2 p,
.framer-1yvtfgv .framer-1yalnio p {
font-size: 16pt !important;
font-weight: 700 !important;
color: #111 !important;
-webkit-text-fill-color: #111 !important;
background: none !important;
line-height: 1.1 !important;
}
/* Stat labels — small */
.framer-nh9unq p,
.framer-1urquao p,
.framer-1sve7ie p,
.framer-1aasifa p {
font-size: 7.5pt !important;
color: #555 !important;
}
/* Separator lines between stat number and label */
.framer-2nqog3,
.framer-uqlcfh,
.framer-1r58lzt,
.framer-qz1xiz,
.framer-qwwja3,
.framer-16mw826,
.framer-1t6wjx3 {
background-color: #ccc !important;
height: 1px !important;
margin: 4pt 0 !important;
}
/* ── "Ready for software…" CTA Banner ───────────────────── */
.framer-1o1vzbj-container > div {
padding: 16pt !important;
page-break-inside: avoid;
}
.framer-1o1vzbj-container div[style*="font-size"] {
color: #111 !important;
-webkit-text-fill-color: #111 !important;
background-image: none !important;
background-clip: unset !important;
-webkit-background-clip: unset !important;
}
/* ── Buttons → underlined plain text ────────────────────── */
a[role="button"],
button {
display: inline !important;
border: none !important;
background: none !important;
color: #111 !important;
padding: 0 !important;
font-weight: 600 !important;
text-decoration: underline !important;
font-size: 9pt !important;
}
/* Hide the ripple/hover-overlay div inside every button */
a[role="button"] > div:first-child,
button > div:first-child {
display: none !important;
}
/* ── Links ──────────────────────────────────────────────── */
a {
color: #111 !important;
text-decoration: underline !important;
}
/* Append full URL after external links */
a[href^="http"]::after,
a[href^="https"]::after {
content: " (" attr(href) ")";
font-size: 6.5pt;
color: #666 !important;
font-weight: normal;
word-break: break-all;
}
/* Suppress URL echoing for buttons, nav, and footer links */
a[role="button"]::after,
.framer-34jpd3-container a::after,
.framer-FgykB a::after {
content: none !important;
}
/* ── Footer ─────────────────────────────────────────────── */
.framer-34jpd3-container,
.framer-FgykB {
padding-top: 16pt !important;
margin-top: 20pt !important;
}
/* Footer section heading labels — small */
.framer-FgykB .framer-1jihp68 p,
.framer-FgykB .framer-ui83uk p,
.framer-FgykB .framer-1f55632 p {
font-size: 7.5pt !important;
font-weight: 700 !important;
letter-spacing: 0.08em !important;
text-transform: uppercase !important;
color: #555 !important;
margin-bottom: 6pt !important;
}
/* Footer nav link text — small */
.framer-FgykB .framer-lmlza7 p {
font-size: 7.5pt !important;
color: #333 !important;
line-height: 1.5 !important;
}
/* Footer logo */
.framer-16qvwbe img {
max-width: 140pt !important;
height: auto !important;
}
/* Contact address / phone / email — small */
.framer-z81epq p,
.framer-1kjh1v6 p,
.framer-1bmzaxe p {
font-size: 7.5pt !important;
color: #333 !important;
line-height: 1.5 !important;
}
/* ════════════════════════════════════════════════════════
SITE-WIDE PAGE RULES
(from crawl of /about /approach /services /portfolio
/careers /blog /consultation /case-studies/*)
════════════════════════════════════════════════════════ */
/* Appear/scroll animations — force content visible.
Framer leaves below-the-fold elements at opacity:0 until
scrolled into view, which prints as blank space. */
[data-framer-appear-id],
[class*="framer-"][style*="opacity:0"],
[class*="framer-"][style*="opacity: 0"] {
opacity: 1 !important;
}
/* Images: never overflow the page, keep aspect ratio */
img {
max-width: 100% !important;
height: auto !important;
page-break-inside: avoid;
}
/* Floating fixed CTA button, bottom-right
(portfolio, blog, case-study pages) */
.framer-1yoqtlw {
display: none !important;
}
/* ── /consultation ──────────────────────────────────────── */
/* Interactive form + reCAPTCHA are useless on paper;
the page's contact details still print. */
.framer-161wdtb,
form[data-framer-name="Form"],
.g-recaptcha,
[name="recaptcha"] {
display: none !important;
}
/* ── /portfolio ─────────────────────────────────────────── */
/* Case-study card grid: keep 2-up so screenshots stay a
reasonable print size */
.framer-9hsEr .framer-19bdp74 {
display: grid !important;
grid-template-columns: repeat(2, 1fr) !important;
gap: 12pt !important;
}
/* Each card: keep image with its caption */
.framer-9hsEr .framer-5xr3ef {
page-break-inside: avoid;
}
/* Yellow underline accent bar under card titles */
.framer-9hsEr .framer-1pgh88i {
display: none !important;
}
/* ── /approach ──────────────────────────────────────────── */
/* Rotating circular "Let's Talk" badge — decorative */
.framer-vu4yoc-container {
display: none !important;
}
/* Approach sections: text column + diagram player side by
side on screen; stack them for print */
.framer-mu68uw,
.framer-1sq4t9w {
display: block !important;
}
/* Craftsman requirement cards ("3 Cards") — 3-up grid */
.framer-PGoR6 {
display: grid !important;
grid-template-columns: repeat(3, 1fr) !important;
gap: 10pt !important;
page-break-inside: avoid;
}
/* Keep each card's header with its content */
.framer-15qd6jd,
.framer-1vixhmn {
page-break-inside: avoid;
}
/* ── /case-studies/* ────────────────────────────────────── */
/* Divider rules (no borders/lines in print) */
[data-framer-name="Divider"] {
display: none !important;
}
/* Browser-mockup screenshot frames ("No Chrome" variants):
drop the dark chrome styling, keep the screenshot */
[data-framer-name="No Chrome"] {
background: transparent !important;
padding: 0 !important;
}
/* ── Page Breaks ────────────────────────────────────────── */
.framer-l7lbt7-container,
.framer-Z15Fd,
.framer-RWRvI,
.framer-d05kF,
.framer-74c9d5,
.framer-O2xTs,
.framer-FgykB {
page-break-inside: avoid;
}
h1, h2, h3, h4, h5 {
page-break-after: avoid;
}
p, blockquote {
orphans: 3;
widows: 3;
}
}
/* end @media print */