react-instagram-stories 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,907 @@
1
+ /* Reset and base styles */
2
+ * {
3
+ box-sizing: border-box;
4
+ -webkit-tap-highlight-color: transparent;
5
+ }
6
+
7
+ /* Demo container styles */
8
+ .demo-container {
9
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
10
+ max-width: 100%;
11
+ margin: 0 auto;
12
+ padding: 20px;
13
+ }
14
+
15
+ .demo-header {
16
+ text-align: center;
17
+ margin-bottom: 40px;
18
+ }
19
+
20
+ .demo-header h1 {
21
+ font-size: 2.5rem;
22
+ margin-bottom: 10px;
23
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
24
+ -webkit-background-clip: text;
25
+ -webkit-text-fill-color: transparent;
26
+ background-clip: text;
27
+ }
28
+
29
+ .demo-header p {
30
+ color: #666;
31
+ font-size: 1.1rem;
32
+ }
33
+
34
+ .demo-controls {
35
+ display: flex;
36
+ gap: 10px;
37
+ justify-content: center;
38
+ margin: 20px 0;
39
+ }
40
+
41
+ .demo-btn {
42
+ padding: 10px 20px;
43
+ border: 2px solid #667eea;
44
+ border-radius: 25px;
45
+ background: white;
46
+ color: #667eea;
47
+ font-weight: 600;
48
+ cursor: pointer;
49
+ transition: all 0.3s ease;
50
+ }
51
+
52
+ .demo-btn:hover {
53
+ background: #667eea;
54
+ color: white;
55
+ transform: translateY(-2px);
56
+ box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
57
+ }
58
+
59
+ .demo-btn.active {
60
+ background: #667eea;
61
+ color: white;
62
+ }
63
+
64
+ .demo-features {
65
+ max-width: 600px;
66
+ margin: 30px auto;
67
+ text-align: left;
68
+ padding: 20px;
69
+ background: #f8f9fa;
70
+ border-radius: 12px;
71
+ }
72
+
73
+ .demo-features h3 {
74
+ margin-top: 0;
75
+ }
76
+
77
+ .demo-features ul {
78
+ list-style: none;
79
+ padding: 0;
80
+ }
81
+
82
+ .demo-features li {
83
+ padding: 8px 0;
84
+ font-size: 0.95rem;
85
+ }
86
+
87
+ .demo-main {
88
+ margin: 40px 0;
89
+ }
90
+
91
+ .demo-footer {
92
+ text-align: center;
93
+ color: #666;
94
+ font-size: 0.9rem;
95
+ margin-top: 60px;
96
+ padding-top: 20px;
97
+ border-top: 1px solid #eee;
98
+ }
99
+
100
+ /* ========================================
101
+ AVATAR LIST STYLES
102
+ ======================================== */
103
+
104
+ .story-avatar-list {
105
+ display: flex;
106
+ overflow-x: auto;
107
+ overflow-y: hidden;
108
+ padding: 20px 0;
109
+ gap: 12px;
110
+ scroll-behavior: smooth;
111
+ -webkit-overflow-scrolling: touch;
112
+ scrollbar-width: none;
113
+ -ms-overflow-style: none;
114
+ }
115
+
116
+ .story-avatar-list::-webkit-scrollbar {
117
+ display: none;
118
+ }
119
+
120
+ .story-avatar-list-inner {
121
+ display: flex;
122
+ gap: 12px;
123
+ min-height: 100px;
124
+ }
125
+
126
+ .story-avatar-item {
127
+ flex-shrink: 0;
128
+ }
129
+
130
+ .story-avatar {
131
+ display: flex;
132
+ flex-direction: column;
133
+ align-items: center;
134
+ gap: 8px;
135
+ background: none;
136
+ border: none;
137
+ cursor: pointer;
138
+ padding: 4px;
139
+ transition: transform 0.2s ease;
140
+ will-change: transform;
141
+ }
142
+
143
+ .story-avatar:hover {
144
+ transform: scale(1.05);
145
+ }
146
+
147
+ .story-avatar:active {
148
+ transform: scale(0.95);
149
+ }
150
+
151
+ .story-avatar-ring {
152
+ position: relative;
153
+ padding: 3px;
154
+ border-radius: 50%;
155
+ background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
156
+ }
157
+
158
+ .story-avatar-read .story-avatar-ring {
159
+ background: #e0e0e0;
160
+ }
161
+
162
+ .story-avatar-image-wrapper {
163
+ width: 64px;
164
+ height: 64px;
165
+ border-radius: 50%;
166
+ overflow: hidden;
167
+ border: 3px solid white;
168
+ background: #f0f0f0;
169
+ }
170
+
171
+ .story-avatar-image {
172
+ width: 100%;
173
+ height: 100%;
174
+ object-fit: cover;
175
+ opacity: 0;
176
+ transition: opacity 0.3s ease;
177
+ }
178
+
179
+ .story-avatar-image-loaded {
180
+ opacity: 1;
181
+ }
182
+
183
+ .story-avatar-placeholder {
184
+ width: 100%;
185
+ height: 100%;
186
+ display: flex;
187
+ align-items: center;
188
+ justify-content: center;
189
+ font-size: 24px;
190
+ font-weight: bold;
191
+ color: #999;
192
+ background: #f0f0f0;
193
+ }
194
+
195
+ .story-avatar-username {
196
+ font-size: 12px;
197
+ color: #262626;
198
+ max-width: 80px;
199
+ overflow: hidden;
200
+ text-overflow: ellipsis;
201
+ white-space: nowrap;
202
+ }
203
+
204
+ /* ========================================
205
+ STORY VIEWER STYLES
206
+ ======================================== */
207
+
208
+ .story-viewer {
209
+ position: fixed;
210
+ top: 0;
211
+ left: 0;
212
+ right: 0;
213
+ bottom: 0;
214
+ z-index: 9999;
215
+ display: flex;
216
+ align-items: center;
217
+ justify-content: center;
218
+ animation: fadeIn 0.3s ease;
219
+ }
220
+
221
+ @keyframes fadeIn {
222
+ from {
223
+ opacity: 0;
224
+ }
225
+ to {
226
+ opacity: 1;
227
+ }
228
+ }
229
+
230
+ .story-viewer-overlay {
231
+ position: absolute;
232
+ top: 0;
233
+ left: 0;
234
+ right: 0;
235
+ bottom: 0;
236
+ background: rgba(0, 0, 0, 0.9);
237
+ z-index: 0;
238
+ pointer-events: none;
239
+ }
240
+
241
+ .story-viewer-content {
242
+ position: relative;
243
+ width: 100%;
244
+ max-width: 500px;
245
+ height: 100dvh;
246
+ max-height: 900px;
247
+ z-index: 2;
248
+ display: flex;
249
+ flex-direction: column;
250
+ background: #000;
251
+ will-change: transform;
252
+ }
253
+
254
+ /* User transitions with native CSS animations */
255
+ .story-viewer-transitioning {
256
+ transition: transform 0.15s ease-out;
257
+ }
258
+
259
+ .story-viewer-transition-left {
260
+ transform: translateX(-100%);
261
+ }
262
+
263
+ .story-viewer-transition-right {
264
+ transform: translateX(100%);
265
+ }
266
+
267
+ /* Header */
268
+ .story-viewer-header {
269
+ position: absolute;
270
+ top: 0;
271
+ left: 0;
272
+ right: 0;
273
+ z-index: 10;
274
+ padding: 16px;
275
+ background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
276
+ }
277
+
278
+ .story-viewer-user-info {
279
+ display: flex;
280
+ align-items: center;
281
+ gap: 12px;
282
+ margin-top: 12px;
283
+ }
284
+
285
+ .story-viewer-avatar {
286
+ width: 36px;
287
+ height: 36px;
288
+ border-radius: 50%;
289
+ border: 2px solid white;
290
+ object-fit: cover;
291
+ }
292
+
293
+ .story-viewer-username {
294
+ color: white;
295
+ font-weight: 600;
296
+ font-size: 14px;
297
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
298
+ }
299
+
300
+ .story-viewer-close {
301
+ position: absolute;
302
+ top: 26px;
303
+ right: 16px;
304
+ width: 36px;
305
+ height: 36px;
306
+ border-radius: 50%;
307
+ border: none;
308
+ background: rgba(0, 0, 0, 0.5);
309
+ color: white;
310
+ font-size: 28px;
311
+ line-height: 1;
312
+ cursor: pointer;
313
+ display: flex;
314
+ align-items: center;
315
+ justify-content: center;
316
+ transition: background 0.2s ease;
317
+ z-index: 11;
318
+ }
319
+
320
+ .story-viewer-close:hover {
321
+ background: rgba(0, 0, 0, 0.7);
322
+ }
323
+
324
+ /* Progress bars */
325
+ .story-progress-bars-container {
326
+ display: flex;
327
+ gap: 4px;
328
+ width: 100%;
329
+ }
330
+
331
+ .story-progress-bar {
332
+ flex: 1;
333
+ height: 2px;
334
+ background: rgba(255, 255, 255, 0.3);
335
+ border-radius: 1px;
336
+ overflow: hidden;
337
+ }
338
+
339
+ .story-progress-bar-fill {
340
+ height: 100%;
341
+ background: white;
342
+ transform-origin: left;
343
+ transition: transform 0.1s linear;
344
+ will-change: transform;
345
+ }
346
+
347
+ /* Story items container */
348
+ .story-viewer-items {
349
+ position: relative;
350
+ flex: 1;
351
+ width: 100%;
352
+ overflow: hidden;
353
+ background: #000;
354
+ }
355
+
356
+ .story-viewer-item-wrapper {
357
+ position: absolute;
358
+ top: 0;
359
+ left: 0;
360
+ width: 100%;
361
+ height: 100%;
362
+ transition: opacity 0.3s ease, visibility 0.3s ease;
363
+ will-change: opacity;
364
+ }
365
+
366
+ /* Story item types */
367
+ .story-item {
368
+ width: 100%;
369
+ height: 100%;
370
+ display: flex;
371
+ align-items: center;
372
+ justify-content: center;
373
+ background: #000;
374
+ }
375
+
376
+ .story-item-image,
377
+ .story-item-video {
378
+ width: 100%;
379
+ height: 100%;
380
+ }
381
+
382
+ .story-item-image img,
383
+ .story-item-video video {
384
+ width: 100%;
385
+ height: 100%;
386
+ object-fit: cover;
387
+ user-select: none;
388
+ -webkit-user-select: none;
389
+ }
390
+
391
+ .story-item-text {
392
+ width: 100%;
393
+ height: 100%;
394
+ display: flex;
395
+ align-items: center;
396
+ justify-content: center;
397
+ padding: 40px;
398
+ text-align: center;
399
+ }
400
+
401
+ .story-item-text-content {
402
+ font-size: 28px;
403
+ font-weight: 600;
404
+ line-height: 1.4;
405
+ white-space: pre-wrap;
406
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
407
+ }
408
+
409
+ .story-item-component {
410
+ width: 100%;
411
+ height: 100%;
412
+ }
413
+
414
+ .story-item-error {
415
+ display: flex;
416
+ align-items: center;
417
+ justify-content: center;
418
+ color: white;
419
+ font-size: 16px;
420
+ }
421
+
422
+ .story-item-error-message {
423
+ padding: 20px;
424
+ background: rgba(255, 0, 0, 0.2);
425
+ border: 1px solid rgba(255, 0, 0, 0.5);
426
+ border-radius: 8px;
427
+ }
428
+
429
+ /* Navigation hints */
430
+ .story-viewer-nav-hints {
431
+ position: absolute;
432
+ top: 0;
433
+ left: 0;
434
+ right: 0;
435
+ bottom: 0;
436
+ display: flex;
437
+ pointer-events: none;
438
+ z-index: 5;
439
+ }
440
+
441
+ .story-viewer-nav-hint {
442
+ flex: 1;
443
+ }
444
+
445
+ .story-viewer-nav-hint-left {
446
+ cursor: pointer;
447
+ }
448
+
449
+ .story-viewer-nav-hint-right {
450
+ cursor: pointer;
451
+ }
452
+
453
+ /* ========================================
454
+ RESPONSIVE DESIGN
455
+ ======================================== */
456
+
457
+ @media (max-width: 768px) {
458
+ .demo-container {
459
+ padding: 10px;
460
+ }
461
+
462
+ .demo-header h1 {
463
+ font-size: 2rem;
464
+ }
465
+
466
+ .demo-controls {
467
+ flex-direction: column;
468
+ }
469
+
470
+ .demo-btn {
471
+ width: 100%;
472
+ }
473
+
474
+ .story-viewer-content {
475
+ max-width: 100%;
476
+ max-height: 100dvh;
477
+ }
478
+
479
+ .story-avatar-image-wrapper {
480
+ width: 56px;
481
+ height: 56px;
482
+ }
483
+
484
+ .story-viewer-close {
485
+ width: 32px;
486
+ height: 32px;
487
+ font-size: 20px;
488
+ }
489
+
490
+ .story-viewer-user-info {
491
+ margin-top: 8px;
492
+ }
493
+
494
+ .story-viewer-avatar {
495
+ width: 32px;
496
+ height: 32px;
497
+ }
498
+
499
+ .story-viewer-username {
500
+ font-size: 13px;
501
+ }
502
+ }
503
+
504
+ /* Handle orientation changes */
505
+ @media (orientation: landscape) and (max-height: 500px) {
506
+ .story-viewer-content {
507
+ max-height: 100dvh;
508
+ }
509
+
510
+ .story-viewer-header {
511
+ padding: 12px;
512
+ }
513
+
514
+ .story-progress-bars-container {
515
+ height: 2px;
516
+ }
517
+
518
+ .story-progress-bar {
519
+ height: 2px;
520
+ }
521
+ }
522
+
523
+ @media (min-width: 769px) {
524
+ .story-viewer-content {
525
+ border-radius: 12px;
526
+ overflow: hidden;
527
+ }
528
+ }
529
+
530
+ /* ========================================
531
+ ACCESSIBILITY
532
+ ======================================== */
533
+
534
+ .sr-only {
535
+ position: absolute;
536
+ width: 1px;
537
+ height: 1px;
538
+ padding: 0;
539
+ margin: -1px;
540
+ overflow: hidden;
541
+ clip: rect(0, 0, 0, 0);
542
+ white-space: nowrap;
543
+ border: 0;
544
+ }
545
+
546
+ .story-avatar:focus,
547
+ .story-viewer-close:focus,
548
+ .demo-btn:focus {
549
+ outline: 2px solid #667eea;
550
+ outline-offset: 2px;
551
+ }
552
+
553
+ .story-avatar:focus:not(:focus-visible),
554
+ .story-viewer-close:focus:not(:focus-visible),
555
+ .demo-btn:focus:not(:focus-visible) {
556
+ outline: none;
557
+ }
558
+
559
+ /* ========================================
560
+ PERFORMANCE OPTIMIZATIONS
561
+ ======================================== */
562
+
563
+ /* GPU acceleration for animations */
564
+ .story-avatar,
565
+ .story-progress-bar-fill,
566
+ .story-viewer-content,
567
+ .story-viewer-item-wrapper {
568
+ transform: translate3d(0, 0, 0);
569
+ backface-visibility: hidden;
570
+ perspective: 1000px;
571
+ }
572
+
573
+ /* Reduce motion for accessibility */
574
+ @media (prefers-reduced-motion: reduce) {
575
+ * {
576
+ animation-duration: 0.01ms !important;
577
+ animation-iteration-count: 1 !important;
578
+ transition-duration: 0.01ms !important;
579
+ }
580
+ }
581
+
582
+ /* Touch action optimization */
583
+ .story-viewer,
584
+ .story-avatar-list {
585
+ touch-action: pan-x pan-y;
586
+ }
587
+
588
+ .story-viewer-content {
589
+ touch-action: manipulation;
590
+ }
591
+
592
+ /* ========================================
593
+ LOADING STATES
594
+ ======================================== */
595
+
596
+ @keyframes pulse {
597
+ 0%, 100% {
598
+ opacity: 1;
599
+ }
600
+ 50% {
601
+ opacity: 0.5;
602
+ }
603
+ }
604
+
605
+ .story-avatar-image-wrapper:not(:has(.story-avatar-image-loaded)) {
606
+ animation: pulse 2s ease-in-out infinite;
607
+ }
608
+
609
+ /* Story Item Loader */
610
+ .story-item-loader {
611
+ position: absolute;
612
+ top: 0;
613
+ left: 0;
614
+ right: 0;
615
+ bottom: 0;
616
+ display: flex;
617
+ align-items: center;
618
+ justify-content: center;
619
+ background: #000;
620
+ z-index: 10;
621
+ }
622
+
623
+ .story-item-spinner {
624
+ width: 40px;
625
+ height: 40px;
626
+ border: 3px solid rgba(255, 255, 255, 0.3);
627
+ border-top-color: white;
628
+ border-radius: 50%;
629
+ animation: spin 0.8s linear infinite;
630
+ }
631
+
632
+
633
+
634
+ @keyframes spin {
635
+ to {
636
+ transform: rotate(360deg);
637
+ }
638
+ }
639
+
640
+ .story-item-image img,
641
+ .story-item-video video {
642
+ transition: opacity 0.3s ease;
643
+ }
644
+
645
+ /* ========================================
646
+ SMOOTH SLIDE TRANSITIONS
647
+ ======================================== */
648
+
649
+ .story-viewer-slide {
650
+ position: absolute;
651
+ top: 0;
652
+ left: 0;
653
+ right: 0;
654
+ bottom: 0;
655
+ width: 100%;
656
+ height: 100%;
657
+ display: flex;
658
+ align-items: center;
659
+ justify-content: center;
660
+ z-index: 10;
661
+ will-change: transform, opacity;
662
+ }
663
+
664
+ .story-viewer-content {
665
+ will-change: transform;
666
+ }
667
+
668
+ /* Slide animations are now handled by native CSS transitions in StoryViewer.tsx */
669
+
670
+ /* ========================================
671
+ PDP STORY STYLES
672
+ ======================================== */
673
+
674
+ .pdp-story {
675
+ width: 100%;
676
+ height: 100%;
677
+ position: relative;
678
+ display: flex;
679
+ flex-direction: column;
680
+ background: #000;
681
+ }
682
+
683
+ .pdp-story-image-container {
684
+ position: relative;
685
+ flex: 1;
686
+ width: 100%;
687
+ overflow: hidden;
688
+ background: #000;
689
+ }
690
+
691
+ .pdp-story-loader {
692
+ position: absolute;
693
+ top: 0;
694
+ left: 0;
695
+ right: 0;
696
+ bottom: 0;
697
+ display: flex;
698
+ align-items: center;
699
+ justify-content: center;
700
+ background: #000;
701
+ z-index: 10;
702
+ }
703
+
704
+ .pdp-story-spinner {
705
+ width: 40px;
706
+ height: 40px;
707
+ border: 3px solid rgba(255, 255, 255, 0.3);
708
+ border-top-color: white;
709
+ border-radius: 50%;
710
+ animation: spin 0.8s linear infinite;
711
+ }
712
+
713
+ .pdp-story-image {
714
+ width: 100%;
715
+ height: 100%;
716
+ object-fit: cover;
717
+ transition: opacity 0.3s ease;
718
+ user-select: none;
719
+ -webkit-user-select: none;
720
+ }
721
+
722
+ .pdp-story-nav {
723
+ position: absolute;
724
+ top: 50%;
725
+ transform: translateY(-50%);
726
+ width: 44px;
727
+ height: 44px;
728
+ border-radius: 50%;
729
+ border: none;
730
+ background: rgba(0, 0, 0, 0.5);
731
+ color: white;
732
+ font-size: 24px;
733
+ font-weight: bold;
734
+ cursor: pointer;
735
+ display: flex;
736
+ align-items: center;
737
+ justify-content: center;
738
+ transition: background 0.2s ease;
739
+ z-index: 15;
740
+ }
741
+
742
+ .pdp-story-nav:hover {
743
+ background: rgba(0, 0, 0, 0.7);
744
+ }
745
+
746
+ .pdp-story-nav-prev {
747
+ left: 16px;
748
+ }
749
+
750
+ .pdp-story-nav-next {
751
+ right: 16px;
752
+ }
753
+
754
+ .pdp-story-indicators {
755
+ position: absolute;
756
+ bottom: 120px;
757
+ left: 50%;
758
+ transform: translateX(-50%);
759
+ display: flex;
760
+ gap: 8px;
761
+ z-index: 15;
762
+ }
763
+
764
+ .pdp-story-indicator {
765
+ width: 8px;
766
+ height: 8px;
767
+ border-radius: 50%;
768
+ background: rgba(255, 255, 255, 0.5);
769
+ transition: background 0.2s ease;
770
+ }
771
+
772
+ .pdp-story-indicator.active {
773
+ background: white;
774
+ }
775
+
776
+ .pdp-story-content {
777
+ position: absolute;
778
+ bottom: 0;
779
+ left: 0;
780
+ right: 0;
781
+ background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
782
+ padding: 20px;
783
+ color: white;
784
+ z-index: 15;
785
+ }
786
+
787
+ .pdp-story-header {
788
+ display: flex;
789
+ justify-content: space-between;
790
+ align-items: flex-start;
791
+ margin-bottom: 16px;
792
+ }
793
+
794
+ .pdp-story-title {
795
+ font-size: 20px;
796
+ font-weight: 600;
797
+ margin: 0;
798
+ flex: 1;
799
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
800
+ }
801
+
802
+ .pdp-story-price {
803
+ font-size: 18px;
804
+ font-weight: 700;
805
+ color: #4ade80;
806
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
807
+ }
808
+
809
+ .pdp-story-details {
810
+ display: grid;
811
+ grid-template-columns: 1fr 1fr;
812
+ gap: 12px 16px;
813
+ margin-bottom: 16px;
814
+ }
815
+
816
+ .pdp-story-detail {
817
+ display: flex;
818
+ flex-direction: column;
819
+ gap: 4px;
820
+ }
821
+
822
+ .pdp-story-label {
823
+ font-size: 12px;
824
+ color: rgba(255, 255, 255, 0.7);
825
+ font-weight: 500;
826
+ text-transform: uppercase;
827
+ letter-spacing: 0.5px;
828
+ }
829
+
830
+ .pdp-story-value {
831
+ font-size: 14px;
832
+ font-weight: 600;
833
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
834
+ }
835
+
836
+ .pdp-story-highlights {
837
+ display: flex;
838
+ gap: 16px;
839
+ }
840
+
841
+ .pdp-story-highlight {
842
+ flex: 1;
843
+ text-align: center;
844
+ padding: 12px;
845
+ background: rgba(255, 255, 255, 0.1);
846
+ border-radius: 8px;
847
+ backdrop-filter: blur(10px);
848
+ }
849
+
850
+ .pdp-story-highlight-value {
851
+ display: block;
852
+ font-size: 16px;
853
+ font-weight: 700;
854
+ margin-bottom: 4px;
855
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
856
+ }
857
+
858
+ .pdp-story-highlight-label {
859
+ font-size: 12px;
860
+ color: rgba(255, 255, 255, 0.8);
861
+ font-weight: 500;
862
+ text-transform: uppercase;
863
+ letter-spacing: 0.5px;
864
+ }
865
+
866
+ /* Responsive adjustments for PDP story */
867
+ @media (max-width: 768px) {
868
+ .pdp-story-content {
869
+ padding: 16px;
870
+ }
871
+
872
+ .pdp-story-title {
873
+ font-size: 18px;
874
+ }
875
+
876
+ .pdp-story-price {
877
+ font-size: 16px;
878
+ }
879
+
880
+ .pdp-story-details {
881
+ grid-template-columns: 1fr;
882
+ gap: 8px;
883
+ }
884
+
885
+ .pdp-story-highlights {
886
+ gap: 12px;
887
+ }
888
+
889
+ .pdp-story-highlight {
890
+ padding: 10px;
891
+ }
892
+
893
+ .pdp-story-highlight-value {
894
+ font-size: 14px;
895
+ }
896
+
897
+ .pdp-story-nav {
898
+ width: 40px;
899
+ height: 40px;
900
+ font-size: 20px;
901
+ }
902
+
903
+ .pdp-story-indicators {
904
+ bottom: 100px;
905
+ }
906
+ }
907
+