-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfirst.sql
More file actions
982 lines (820 loc) · 408 KB
/
first.sql
File metadata and controls
982 lines (820 loc) · 408 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
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jan 04, 2025 at 08:51 AM
-- Server version: 8.0.30
-- PHP Version: 8.1.10
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `first`
--
-- --------------------------------------------------------
--
-- Table structure for table `authors`
--
CREATE TABLE `authors` (
`id` bigint UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`email_verified_at` date DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `authors`
--
INSERT INTO `authors` (`id`, `name`, `email`, `password`, `photo`, `status`, `email_verified_at`, `created_at`, `updated_at`) VALUES
(1, 'TOAAS', 'mdtomasuddin1@gmail.com', '$2y$12$9I9OrpAV4qyCgYIi.bbkb.JQhD7KaGvhU1Q1k3F0UrhEdxcj8NBO2', '6707a7dda0e19.png', '1', '2024-09-01', '2024-08-31 18:00:00', '2024-08-31 18:00:00'),
(2, 'Blog Site', 'Blogsite@gmail.com', '$2y$12$K.O6S52wS6dsd6t.LGzpdu4feZU3Rc0pz0klqa4VCkPNYWLPQ7Vfa', '676cf83be80bb.png', '1', '2024-09-02', '2024-12-26 00:20:29', '2024-12-26 00:31:26'),
(3, 'parvaz', 'parvaz@gmail.com', '$2y$12$RcIctFSY5Dt50WPsxTqL5.v2uIxlOg00r32NCdIWxECuznA.SlHn.', NULL, '1', '2024-12-01', '2024-12-26 00:20:55', '2024-12-26 00:21:44'),
(4, 'Kakon sutradar', 'kakon@gmail.com', '$2y$12$U54hjjutqqdeMWzX7zpxE.t97XipolCpNGoPujAMOIKXmtqIIfn8S', NULL, '1', '2024-12-01', '2024-12-26 00:21:01', '2024-12-26 00:21:38'),
(5, 'Aurora Harrell', 'pokodikor@mailinator.com', '$2y$12$xTIy7Gm5ZtORDNQ1IeBTy.ejfNHwssaD9qaXYlQPejYHMdC5fi9d2', NULL, '1', '2024-10-07', '2024-12-26 00:21:07', '2024-12-26 00:21:39'),
(6, 'Derek Jacobs', 'modepymac@mailinator.com', '$2y$12$KmV1sSG9CGcfBqTTkMAPeej4po2g0C5ClscZWkuVF54vjDKrl/YR2', NULL, '1', '2024-12-04', '2024-12-26 00:21:13', '2024-12-26 00:21:46'),
(7, 'Suki Donaldson', 'fadizo@mailinator.com', '$2y$12$t7dv60oVVnEf1ZKba1oZhuetU1wn4REeu4YIZ2w4f0nF3nrXzHWJ2', NULL, '1', '2024-12-01', '2024-12-26 00:21:18', '2024-12-26 00:21:41'),
(8, 'Andrew Vaughn', 'nuxafeqop@mailinator.com', '$2y$12$pdBNBEVq3VmR6fCvCut9TubJIo40ovIchLVvn6M5ce9hKVA4Y8mIu', NULL, '1', '2024-12-01', '2024-12-26 00:21:23', '2024-12-26 00:21:49'),
(9, 'McKenzie Medina', 'xaxobomyf@mailinator.com', '$2y$12$HKWnLuA/ZsFxKgfl38ZpzOS7pHtx0zEKOTQQsGkq0KlzRo647SkZe', NULL, '0', '2024-12-01', '2024-12-26 00:21:55', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `cache`
--
CREATE TABLE `cache` (
`key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`expiration` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `cache`
--
INSERT INTO `cache` (`key`, `value`, `expiration`) VALUES
('mdtomasuddin1@gmial.com|127.0.0.1', 'i:1;', 1735178261),
('mdtomasuddin1@gmial.com|127.0.0.1:timer', 'i:1735178261;', 1735178261),
('spatie.permission.cache', 'a:3:{s:5:\"alias\";a:4:{s:1:\"a\";s:2:\"id\";s:1:\"b\";s:4:\"name\";s:1:\"c\";s:10:\"guard_name\";s:1:\"r\";s:5:\"roles\";}s:11:\"permissions\";a:9:{i:0;a:4:{s:1:\"a\";i:1;s:1:\"b\";s:5:\"users\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:2:{i:0;i:1;i:1;i:2;}}i:1;a:4:{s:1:\"a\";i:2;s:1:\"b\";s:11:\"user_delete\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:1:{i:0;i:1;}}i:2;a:4:{s:1:\"a\";i:3;s:1:\"b\";s:8:\"user_add\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:1:{i:0;i:1;}}i:3;a:4:{s:1:\"a\";i:4;s:1:\"b\";s:7:\"authors\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:2:{i:0;i:1;i:1;i:2;}}i:4;a:4:{s:1:\"a\";i:5;s:1:\"b\";s:11:\"role_access\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:1:{i:0;i:1;}}i:5;a:4:{s:1:\"a\";i:6;s:1:\"b\";s:12:\"category_add\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}}i:6;a:4:{s:1:\"a\";i:7;s:1:\"b\";s:15:\"category_access\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:4:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;}}i:7;a:4:{s:1:\"a\";i:8;s:1:\"b\";s:14:\"trash_category\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:3:{i:0;i:1;i:1;i:2;i:2;i:3;}}i:8;a:4:{s:1:\"a\";i:9;s:1:\"b\";s:10:\"tag_access\";s:1:\"c\";s:3:\"web\";s:1:\"r\";a:4:{i:0;i:1;i:1;i:2;i:2;i:3;i:3;i:4;}}}s:5:\"roles\";a:4:{i:0;a:3:{s:1:\"a\";i:1;s:1:\"b\";s:11:\"Super Admin\";s:1:\"c\";s:3:\"web\";}i:1;a:3:{s:1:\"a\";i:2;s:1:\"b\";s:5:\"Admin\";s:1:\"c\";s:3:\"web\";}i:2;a:3:{s:1:\"a\";i:3;s:1:\"b\";s:9:\"Moderator\";s:1:\"c\";s:3:\"web\";}i:3;a:3:{s:1:\"a\";i:4;s:1:\"b\";s:6:\"Editor\";s:1:\"c\";s:3:\"web\";}}}', 1735232851);
-- --------------------------------------------------------
--
-- Table structure for table `cache_locks`
--
CREATE TABLE `cache_locks` (
`key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`owner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`expiration` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE `categories` (
`id` bigint UNSIGNED NOT NULL,
`category_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`category_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`id`, `category_name`, `category_image`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Politics', '676cdea3b4141.jpg', NULL, '2024-12-25 22:42:14', NULL),
(2, 'Technology', '676ce078f1668.jpg', NULL, '2024-12-25 22:50:01', NULL),
(3, 'Education', '676ce25517f4c.jpg', NULL, '2024-12-25 22:57:57', NULL),
(4, 'Sports', '676ce2a35d5d8.jpg', NULL, '2024-12-25 22:59:15', NULL),
(5, 'Business', '676ce2b719fea.jpg', NULL, '2024-12-25 22:59:35', NULL),
(6, 'Entertainment', '676ce2c435ddd.jpg', NULL, '2024-12-25 22:59:48', NULL),
(7, 'Science', '676ce2d3cdb07.jpg', NULL, '2024-12-25 23:00:03', NULL),
(8, 'Fashion', '676ce2f211f6f.jpg', NULL, '2024-12-25 23:00:34', NULL),
(9, 'Travel', '676ce3ffdb466.jpg', NULL, '2024-12-25 23:05:03', NULL),
(10, 'Environment', '676ce4482b757.jpg', NULL, '2024-12-25 23:06:16', NULL),
(11, 'Photography', '676ce4a994c3b.jpg', NULL, '2024-12-25 23:07:53', NULL),
(12, 'Programming', '676ce5a35d4f2.jpg', NULL, '2024-12-25 23:12:03', NULL),
(13, 'Cybersecurity', '676ce5cc0d4a6.jpg', NULL, '2024-12-25 23:12:44', NULL),
(14, 'Automobiles', '676ce626867ae.jpg', NULL, '2024-12-25 23:14:14', NULL),
(15, 'Foods', '676ce6a1b0ccd.jpg', NULL, '2024-12-25 23:16:17', NULL),
(16, 'software', '676ce743546a7.jpg', NULL, '2024-12-25 23:18:59', NULL),
(17, 'Agriculture', '676ce7e967d72.jpg', NULL, '2024-12-25 23:21:45', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `comments`
--
CREATE TABLE `comments` (
`id` bigint UNSIGNED NOT NULL,
`author_id` int NOT NULL,
`post_id` int NOT NULL,
`comments` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`parent_id` int DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `comments`
--
INSERT INTO `comments` (`id`, `author_id`, `post_id`, `comments`, `parent_id`, `created_at`, `updated_at`) VALUES
(1, 1, 2, 'this best car world', NULL, '2024-12-25 23:48:59', NULL),
(2, 1, 2, 'wow', NULL, '2024-12-25 23:49:21', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `contact_messages`
--
CREATE TABLE `contact_messages` (
`id` bigint UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `email_verifies`
--
CREATE TABLE `email_verifies` (
`id` bigint UNSIGNED NOT NULL,
`author_id` int NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `email_verifies`
--
INSERT INTO `email_verifies` (`id`, `author_id`, `token`, `created_at`, `updated_at`) VALUES
(8, 2, '676cf5ad72bee', '2024-12-26 00:20:29', '2024-12-26 00:20:29'),
(9, 3, '676cf5c7a2c93', '2024-12-26 00:20:55', '2024-12-26 00:20:55'),
(10, 4, '676cf5cd63a14', '2024-12-26 00:21:01', '2024-12-26 00:21:01'),
(11, 5, '676cf5d30cfb0', '2024-12-26 00:21:07', '2024-12-26 00:21:07'),
(12, 6, '676cf5d942874', '2024-12-26 00:21:13', '2024-12-26 00:21:13'),
(13, 7, '676cf5de84d2c', '2024-12-26 00:21:18', '2024-12-26 00:21:18'),
(14, 8, '676cf5e39ed43', '2024-12-26 00:21:23', '2024-12-26 00:21:23'),
(15, 9, '676cf603a35f2', '2024-12-26 00:21:55', '2024-12-26 00:21:55'),
(17, 1, '676cf632753ff', '2024-12-26 00:22:42', '2024-12-26 00:22:42');
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint UNSIGNED NOT NULL,
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `faqs`
--
CREATE TABLE `faqs` (
`id` bigint UNSIGNED NOT NULL,
`question` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`answer` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `faqs`
--
INSERT INTO `faqs` (`id`, `question`, `answer`, `created_at`, `updated_at`) VALUES
(1, 'Facere voluptatem du', 'Placeat sunt rem bl', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `jobs`
--
CREATE TABLE `jobs` (
`id` bigint UNSIGNED NOT NULL,
`queue` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`attempts` tinyint UNSIGNED NOT NULL,
`reserved_at` int UNSIGNED DEFAULT NULL,
`available_at` int UNSIGNED NOT NULL,
`created_at` int UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `job_batches`
--
CREATE TABLE `job_batches` (
`id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`total_jobs` int NOT NULL,
`pending_jobs` int NOT NULL,
`failed_jobs` int NOT NULL,
`failed_job_ids` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`options` mediumtext COLLATE utf8mb4_unicode_ci,
`cancelled_at` int DEFAULT NULL,
`created_at` int NOT NULL,
`finished_at` int DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int UNSIGNED NOT NULL,
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(7, '0001_01_01_000000_create_users_table', 1),
(8, '0001_01_01_000001_create_cache_table', 1),
(9, '0001_01_01_000002_create_jobs_table', 1),
(11, '2024_09_02_055230_create_categories_table', 2),
(12, '2024_09_09_054402_create_tags_table', 3),
(14, '2024_09_18_061002_create_posts_table', 5),
(15, '2024_09_25_062301_create_populars_table', 6),
(16, '2024_09_30_052319_create_comments_table', 7),
(17, '2024_10_02_055027_create_permission_tables', 8),
(18, '2024_10_03_055813_create_email_verifies_table', 9),
(19, '2024_10_07_052801_create_pass_resets_table', 10),
(20, '2024_10_09_055228_create_faqs_table', 11),
(32, '2024_10_09_232655_create_about_sections_table', 1),
(63, '0001_01_01_000000_create_users_table', 2),
(64, '0001_01_01_000001_create_cache_table', 2),
(65, '0001_01_01_000002_create_jobs_table', 2),
(66, '2024_09_03_093201_create_categories_table', 2),
(67, '2024_09_10_063814_create_tags_table', 2),
(69, '2024_09_19_193308_create_posts_table', 2),
(70, '2024_09_27_221820_create_populars_table', 2),
(71, '2024_09_28_212539_create_subscriptions_table', 2),
(72, '2024_10_01_133416_create_comments_table', 2),
(73, '2024_10_02_163638_create_permission_tables', 2),
(74, '2024_10_03_192326_create_email_verifies_table', 2),
(75, '2024_10_08_174150_create_pass_resets_table', 2),
(76, '2024_10_09_185243_create_faqs_table', 2),
(77, '2024_10_09_221149_create_contact_messages_table', 2),
(78, '2024_09_12_195451_create_authors_table', 12);
-- --------------------------------------------------------
--
-- Table structure for table `model_has_permissions`
--
CREATE TABLE `model_has_permissions` (
`permission_id` bigint UNSIGNED NOT NULL,
`model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`model_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `model_has_roles`
--
CREATE TABLE `model_has_roles` (
`role_id` bigint UNSIGNED NOT NULL,
`model_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`model_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `model_has_roles`
--
INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES
(1, 'App\\Models\\User', 1),
(1, 'App\\Models\\User', 2),
(2, 'App\\Models\\User', 3),
(3, 'App\\Models\\User', 4),
(4, 'App\\Models\\User', 5);
-- --------------------------------------------------------
--
-- Table structure for table `password_reset_tokens`
--
CREATE TABLE `password_reset_tokens` (
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `pass_resets`
--
CREATE TABLE `pass_resets` (
`id` bigint UNSIGNED NOT NULL,
`author_id` int NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `permissions`
--
CREATE TABLE `permissions` (
`id` bigint UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`guard_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `permissions`
--
INSERT INTO `permissions` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES
(1, 'users', 'web', '2024-10-01 23:55:01', '2024-10-01 23:55:01'),
(2, 'user_delete', 'web', '2024-10-01 23:55:23', '2024-10-01 23:55:23'),
(3, 'user_add', 'web', '2024-10-01 23:55:31', '2024-10-01 23:55:31'),
(4, 'authors', 'web', '2024-10-01 23:55:41', '2024-10-01 23:55:41'),
(5, 'role_access', 'web', '2024-10-01 23:55:47', '2024-10-01 23:55:47'),
(6, 'category_add', 'web', '2024-10-01 23:55:52', '2024-10-01 23:55:52'),
(7, 'category_access', 'web', '2024-10-01 23:55:56', '2024-10-01 23:55:56'),
(8, 'trash_category', 'web', '2024-10-01 23:56:02', '2024-10-01 23:56:02'),
(9, 'tag_access', 'web', '2024-10-01 23:56:07', '2024-10-01 23:56:07');
-- --------------------------------------------------------
--
-- Table structure for table `populars`
--
CREATE TABLE `populars` (
`id` bigint UNSIGNED NOT NULL,
`post_id` int NOT NULL,
`total_read` int NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `populars`
--
INSERT INTO `populars` (`id`, `post_id`, `total_read`, `created_at`, `updated_at`) VALUES
(1, 1, 2, NULL, '2024-12-26 01:08:03'),
(2, 2, 3, NULL, '2024-12-25 23:49:22');
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE `posts` (
`id` bigint UNSIGNED NOT NULL,
`author_id` int NOT NULL,
`category_id` int NOT NULL,
`read_time` int NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`desp` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`tags` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`preview` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` int NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `author_id`, `category_id`, `read_time`, `title`, `slug`, `desp`, `tags`, `preview`, `thumbnail`, `status`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 5, '৫ থানা–উপজেলায় জাতীয় নাগরিক কমিটি গঠন | জাতীয় নাগরিক কমিটি: দেড় মাসে ১০০ থানা ও উপজেলায় কমিটি', '৫-থানা–উপজেলায়-জাতীয়-নাগরিক-কমিটি-গঠন--|-জাতীয়-নাগরিক-কমিটি:-দেড়-মাসে-১০০-থানা-ও-উপজেলায়-কমিটি-39762', '<div id=\"28b13d7a-8d5b-4fad-b64a-80b747f029e8\" style=\"font-family: Shurjo, "Siyam Rupali", Roboto, Arial, Helvetica, monospace; font-size: 18px;\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">সাংগঠনিক কাঠামো বিস্তৃতির অংশ হিসেবে দেশের আরও পাঁচটি থানা ও উপজেলায় প্রতিনিধি কমিটি গঠন করেছে জাতীয় নাগরিক কমিটি। গতকাল মঙ্গলবার রাতে পৃথক বিজ্ঞপ্তিতে এসব কমিটি অনুমোদনের কথা জানান জাতীয় নাগরিক কমিটির আহ্বায়ক নাসীরুদ্দীন পাটওয়ারী ও সদস্যসচিব আখতার হোসেন।</p></div></div></div><div></div></div><div id=\"ca5dd5af-94f0-4c16-ab85-891428a65560\" style=\"font-family: Shurjo, "Siyam Rupali", Roboto, Arial, Helvetica, monospace; font-size: 18px;\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: 0px;\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">গতকাল রাতে নীলফামারীর কিশোরগঞ্জ উপজেলায় ২৩৬ সদস্যের, ডিমলা উপজেলায় ১৭৩ সদস্যের, রাজশাহী জেলার গোদাগাড়ী উপজেলায় ৫৪ সদস্যের, ব্রাহ্মণবাড়িয়ার নাসিরনগর উপজেলায় ৯৪ সদস্যের এবং ঢাকার বংশাল থানায় ৪০ সদস্যের প্রতিনিধি কমিটি গঠন করেছে জাতীয় নাগরিক কমিটি।</p></div></div></div><div></div></div><div id=\"6885c08d-a736-49fd-b896-796e62670e35\" style=\"font-family: Shurjo, "Siyam Rupali", Roboto, Arial, Helvetica, monospace; font-size: 18px;\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin-top: 0px; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">এ নিয়ে দেশের ১০৫টি থানা ও উপজেলায় প্রতিনিধি কমিটি করল জাতীয় নাগরিক কমিটি। এর মধ্যে ঢাকার থানা ও উপজেলা ২৬টি। এর বাইরে ঢাকা মেডিকেল হাসপাতালেও প্রতিনিধি কমিটি করা হয়েছে। ঢাকার কমিটিগুলোর মোট প্রতিনিধির সংখ্যা দাঁড়িয়েছে ২ হাজার ৭৬৬।</p></div></div></div></div><div id=\"d25b71b3-ebec-4e22-8e25-70d3a1a7cbff\" style=\"font-family: Shurjo, "Siyam Rupali", Roboto, Arial, Helvetica, monospace; font-size: 18px;\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">অন্যদিকে সর্বশেষ ঘোষিত কমিটিগুলোসহ ঢাকার বাইরে বিভিন্ন জেলার ৭৯টি থানা ও উপজেলায় প্রতিনিধি কমিটি করেছে জাতীয় নাগরিক কমিটি। এসব কমিটির মোট প্রতিনিধির সংখ্যা ৮ হাজার ৩৩৯।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">ঢাকা ও ঢাকার বাইরের কমিটিগুলো মিলিয়ে থানা ও উপজেলা পর্যায়ে জাতীয় নাগরিক কমিটির মোট প্রতিনিধি এখন ১১ হাজার ১০৫ জন।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\"><br></p><div id=\"206d0e57-b44e-4dfd-85a8-022499a219fa\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">সাংগঠনিক কাঠামো বিস্তৃতির অংশ হিসেবে গত দেড় মাসে দেশের ১০০ থানা ও উপজেলায় ‘প্রতিনিধি কমিটি’ গঠন করেছে জাতীয় নাগরিক কমিটি। একটি নতুন রাজনৈতিক দল গঠনের লক্ষ্যে দেশের থানা ও উপজেলা পর্যায়ে এখন কমিটি করছে তারা। এ পর্যন্ত সব কমিটি মিলিয়ে জাতীয় নাগরিক কমিটির প্রতিনিধির সংখ্যা দাঁড়িয়েছে ১০ হাজার ৫০৮।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">গত ৮ নভেম্বর রাজধানীর যাত্রাবাড়ী থানায় ৬১ সদস্যের প্রতিনিধি কমিটি গঠনের মধ্য দিয়ে জাতীয় নাগরিক কমিটির সাংগঠনিক বিস্তৃতি শুরু হয়। দেশের সব থানায় প্রতিনিধি কমিটি গঠনের মধ্য দিয়ে আগামী দুই মাসের মধ্যে নতুন রাজনৈতিক দল গঠনের আনুষ্ঠানিক ঘোষণা দিতে চায় তারা।</p></div></div><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text story-element-text-also-read\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><span class=\"also-read lDfA5\" style=\"display: inline-block; width: 622px;\"><div class=\"also-read-text\" style=\"color: var(--scorpion); font-size: var(--fs-16); font-weight: var(--bold); margin-bottom: var(--space0_8);\">আরও পড়ুন</div><div class=\"_-2jpv\" style=\"align-items: flex-start; border: var(--border1-0_12); display: flex; justify-content: space-between; margin-bottom: var(--space1_6); padding: var(--space1_6); gap: var(--space2_4);\"><a class=\"M7zxR\" aria-label=\"‘জনশক্তি’ নামে কোনো রাজনৈতিক দল গঠনের সিদ্ধান্ত হয়নি: জাতীয় নাগরিক কমিটি\" href=\"https://www.prothomalo.com/bangladesh/582ajjnnzu\" style=\"color: inherit; display: grid; gap: var(--space1_6);\"><h2 class=\"xm4dj\" style=\"font-family: var(--font-2); margin-right: 0px; margin-left: 0px; padding: 0px; font-size: var(--fs-20); transition: color var(--trans-duration);\">‘জনশক্তি’ নামে কোনো রাজনৈতিক দল গঠনের সিদ্ধান্ত হয়নি: জাতীয় নাগরিক কমিটি</h2><time class=\"_5LznD fw8bp\" style=\"font-family: var(--font-1); font-size: var(--fs-14_5); padding-top: 0px; color: var(--black56);\">২১ ডিসেম্বর ২০২৪</time></a><a aria-label=\"‘জনশক্তি’ নামে কোনো রাজনৈতিক দল গঠনের সিদ্ধান্ত হয়নি: জাতীয় নাগরিক কমিটি\" href=\"https://www.prothomalo.com/bangladesh/582ajjnnzu\" style=\"color: inherit;\"><div class=\"card-with-image-zoom iNm4c qt-image-dynamic image3x2 card-image-wrapper JCQpo _8mCoa UUq0z\" style=\"background-position: 50% center; background-repeat: no-repeat; overflow: hidden; position: relative; background-color: var(--fallback-image-bg); width: 80px; padding-top: 53.3229px; background-image: url("/media-placeholder.svg");\"><figure class=\"qt-figure\" style=\"margin-bottom: 0px; max-width: 100%; padding: 0px; overflow: hidden;\"><picture class=\"qt-image zoom-desktop default\" style=\"transition: transform 0.1s ease-out; --backgroundColor: var(--rgbWhite); --borderColor: var(--black12); --row-border: var(--black42); --bg-50: var(--white50); --dividerColor: var(--black12); --padding-left: 0; --padding-right: 0; --padding-bottom: var(--space1_6); --padding-top: 0; --button-background: var(--lochmara-blue); --button-text-color: var(--white); --margin-left-right: 0; --row-padding-bottom: 0; inset: 0px; height: 53.3229px; object-fit: cover; position: absolute; width: 80px;\"><img src=\"https://images.prothomalo.com/prothomalo-bangla%2F2024-12-17%2Foss23p7i%2FLogo-Jatio-Nagoric-Comimtte.jpg?rect=0%2C0%2C639%2C426&auto=format%2Ccompress&fmt=webp&format=webp&w=100&dpr=1.5\" data-src=\"https://images.prothomalo.com/prothomalo-bangla%2F2024-12-17%2Foss23p7i%2FLogo-Jatio-Nagoric-Comimtte.jpg?rect=0%2C0%2C639%2C426&auto=format%2Ccompress&fmt=webp\" max-dpr=\"2\" type=\"image/webp\" sizes=\"( max-width: 500px ) 98%, ( max-width: 875px ) 48%, 23%\" class=\"qt-image image gm-added gm-loaded gm-observing gm-observing-cb\" data-bg=\"/media-placeholder.svg\" fetchpriority=\"low\" alt=\"‘জনশক্তি’ নামে কোনো রাজনৈতিক দল গঠনের সিদ্ধান্ত হয়নি: জাতীয় নাগরিক কমিটি\" style=\"margin: 0px; max-width: 100%; padding: 0px; inset: 0px; height: 53.3229px; object-fit: cover; position: absolute; width: 80px; background-image: url("/media-placeholder.svg");\"></picture></figure></div></a></div></span></div></div></div><div></div></div><div id=\"fb99fc6d-10db-493f-b6e1-e207754b724c\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">কমিটিগুলো পর্যালোচনা করে দেখা যায়, ইতিমধ্যে ঢাকার ২৫টি থানা ও উপজেলা এবং ঢাকা মেডিকেল কলেজ হাসপাতালে প্রতিনিধি কমিটি করেছে জাতীয় নাগরিক কমিটি। কমিটিগুলোর আকার সর্বনিম্ন ৩৩ থেকে থেকে সর্বোচ্চ ২৮৩ জনের। সর্বনিম্ন ৩৩ সদস্যের কমিটি হয়েছে উত্তরা পূর্ব থানায় আর সবচেয়ে বড় ২৮৩ সদস্যের কমিটি হয়েছে কেরানীগঞ্জ উপজেলায়। ঢাকার ২৫টি থানা কমিটির মোট প্রতিনিধি ২ হাজার ৬২৩ জন। এর বাইরে ঢাকা মেডিকেল কলেজের কমিটিতে আছেন ১০৩ জন। সব মিলিয়ে ঢাকার বিভিন্ন কমিটিতে প্রতিনিধি রয়েছেন ২ হাজার ৭২৬ জন।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">জাতীয় নাগরিক কমিটির মুখপাত্র সামান্তা শারমিন গতকাল মঙ্গলবার রাতে প্রথম আলোকে বলেন, ‘চলতি ডিসেম্বরের মধ্যে সাংগঠনিক কাঠামো বিস্তৃতির কার্যক্রম সমাপ্ত করা সম্ভব হবে বলে আশা করছি। শিগগিরই সাংগঠনিক সফর শুরু করব আমরা।’</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">গত নভেম্বরে ঢাকার হাতিরঝিল, পল্লবী, ভাটারা, কাফরুল, ধানমন্ডি, রামপুরা, চকবাজার, কামরাঙ্গীরচর, লালবাগ, কদমতলী, কলাবাগান, মোহাম্মদপুর, নিউমার্কেট, খিলগাঁও, মিরপুর ও সাভার থানায় প্রতিনিধি কমিটি করা হয়। এরপর ডিসেম্বরে বাড্ডা, তুরাগ, দোহার, কেরানীগঞ্জ, গুলশান, উত্তরা পশ্চিম, উত্তরা পূর্ব, সবুজবাগ ও শ্যামপুর থানায় প্রতিনিধি কমিটি করে জাতীয় নাগরিক কমিটি। এর মধ্যে শুধু দোহার ও কেরানীগঞ্জে উপজেলা কমিটি, বাকিগুলো থানা কমিটি।</p></div></div><div class=\" \r\n story-element\" style=\"margin-bottom: 0px;\"><div class=\"story-element story-element-text story-element-text-also-read\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><span class=\"also-read lDfA5\" style=\"display: inline-block; width: 622px;\"><div class=\"also-read-text\" style=\"color: var(--scorpion); font-size: var(--fs-16); font-weight: var(--bold); margin-bottom: var(--space0_8);\">আরও পড়ুন</div><div class=\"_-2jpv\" style=\"align-items: flex-start; border: var(--border1-0_12); display: flex; justify-content: space-between; margin-bottom: var(--space1_6); padding: var(--space1_6); gap: var(--space2_4);\"><a class=\"M7zxR\" aria-label=\"আমরা কোনো কিংস পার্টি গঠন করছি না\" href=\"https://www.prothomalo.com/politics/h9jck29xbq\" style=\"color: inherit; display: grid; gap: var(--space1_6);\"><h2 class=\"xm4dj\" style=\"font-family: var(--font-2); margin-right: 0px; margin-left: 0px; padding: 0px; font-size: var(--fs-20); transition: color var(--trans-duration);\">আমরা কোনো কিংস পার্টি গঠন করছি না</h2><time class=\"_5LznD fw8bp\" style=\"font-family: var(--font-1); font-size: var(--fs-14_5); padding-top: 0px; color: var(--black56);\">২৩ ডিসেম্বর ২০২৪</time></a><a aria-label=\"আমরা কোনো কিংস পার্টি গঠন করছি না\" href=\"https://www.prothomalo.com/politics/h9jck29xbq\" style=\"color: inherit;\"><div class=\"card-with-image-zoom iNm4c qt-image-dynamic image3x2 card-image-wrapper JCQpo _8mCoa UUq0z\" style=\"background-position: 50% center; background-repeat: no-repeat; overflow: hidden; position: relative; background-color: var(--fallback-image-bg); width: 80px; padding-top: 53.3229px; background-image: url("/media-placeholder.svg");\"><figure class=\"qt-figure\" style=\"margin-bottom: 0px; max-width: 100%; padding: 0px; overflow: hidden;\"><picture class=\"qt-image zoom-desktop default\" style=\"transition: transform 0.1s ease-out; --backgroundColor: var(--rgbWhite); --borderColor: var(--black12); --row-border: var(--black42); --bg-50: var(--white50); --dividerColor: var(--black12); --padding-left: 0; --padding-right: 0; --padding-bottom: var(--space1_6); --padding-top: 0; --button-background: var(--lochmara-blue); --button-text-color: var(--white); --margin-left-right: 0; --row-padding-bottom: 0; inset: 0px; height: 53.3229px; object-fit: cover; position: absolute; width: 80px;\"><img src=\"https://images.prothomalo.com/prothomalo-bangla%2F2024-12-22%2Ftsgfpzkm%2F4.PNG?rect=0%2C0%2C1071%2C714&auto=format%2Ccompress&fmt=webp&format=webp&w=100&dpr=1.5\" data-src=\"https://images.prothomalo.com/prothomalo-bangla%2F2024-12-22%2Ftsgfpzkm%2F4.PNG?rect=0%2C0%2C1071%2C714&auto=format%2Ccompress&fmt=webp\" max-dpr=\"2\" type=\"image/webp\" sizes=\"( max-width: 500px ) 98%, ( max-width: 875px ) 48%, 23%\" class=\"qt-image image gm-added gm-loaded gm-observing gm-observing-cb\" data-bg=\"/media-placeholder.svg\" fetchpriority=\"low\" alt=\"আমরা কোনো কিংস পার্টি গঠন করছি না\" style=\"margin: 0px; max-width: 100%; padding: 0px; inset: 0px; height: 53.3229px; object-fit: cover; position: absolute; width: 80px; background-image: url("/media-placeholder.svg");\"></picture></figure></div></a></div></span></div></div></div><div></div></div><div id=\"87a5c115-ff67-4420-b8cb-b401fb72995b\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin-top: 0px; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">ঢাকার বাইরের বিভিন্ন জেলার ৭৫টি থানা ও উপজেলায় কমিটি গঠনের কাজ শেষ করেছে জাতীয় নাগরিক কমিটি। এসব কমিটির আকার ৩৫ থেকে ৩১৫ জন পর্যন্ত। সবচেয়ে ছোট ৩৫ সদস্যের কমিটি বরিশালের বাকেরগঞ্জে আর সবচেয়ে বড় ৩১৫ সদস্যের কমিটি কক্সবাজারের মহেশখালীতে। ঢাকার বাইরে থানা-উপজেলা কমিটির মোট প্রতিনিধির সংখ্যা ৭ হাজার ৭৮২।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">গত ১২ নভেম্বর টাঙ্গাইল সদর উপজেলায় ৩৬ সদস্যের ও মধুপুর উপজেলায় ৫৫ সদস্যের প্রতিনিধি কমিটি করে জাতীয় নাগরিক কমিটি। এর মধ্য দিয়ে ঢাকার বাইরে তাদের কমিটি গঠন শুরু হয়। এরপর ওই মাসে উপজেলা পর্যায়ে টাঙ্গাইলের ঘাটাইল, কক্সবাজারের ঈদগাঁ, বাগেরহাটের মোংলা, নারায়ণগঞ্জের সোনারগাঁ এবং বরিশালের বাকেরগঞ্জে প্রতিনিধি কমিটি করা হয়। একই সময়ে থানা পর্যায়ে কমিটি হয় কুমিল্লা সদর ও ফরিদপুর সদরে।</p></div></div><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text story-element-text-also-read\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><span class=\"also-read lDfA5\" style=\"display: inline-block; width: 622px;\"><div class=\"also-read-text\" style=\"color: var(--scorpion); font-size: var(--fs-16); font-weight: var(--bold); margin-bottom: var(--space0_8);\">আরও পড়ুন</div><div class=\"_-2jpv\" style=\"align-items: flex-start; border: var(--border1-0_12); display: flex; justify-content: space-between; margin-bottom: var(--space1_6); padding: var(--space1_6); gap: var(--space2_4);\"><a class=\"M7zxR\" aria-label=\"রাজনৈতিক দল গঠনে ‘সহায়তা’ চাওয়া নিয়ে বিতর্ক\" href=\"https://www.prothomalo.com/politics/dvqy8jzs0s\" style=\"color: inherit; display: grid; gap: var(--space1_6);\"><h2 class=\"xm4dj\" style=\"font-family: var(--font-2); margin-right: 0px; margin-left: 0px; padding: 0px; font-size: var(--fs-20); transition: color var(--trans-duration);\">রাজনৈতিক দল গঠনে ‘সহায়তা’ চাওয়া নিয়ে বিতর্ক</h2><time class=\"_5LznD fw8bp\" style=\"font-family: var(--font-1); font-size: var(--fs-14_5); padding-top: 0px; color: var(--black56);\">২০ ডিসেম্বর ২০২৪</time></a><a aria-label=\"রাজনৈতিক দল গঠনে ‘সহায়তা’ চাওয়া নিয়ে বিতর্ক\" href=\"https://www.prothomalo.com/politics/dvqy8jzs0s\" style=\"color: inherit;\"><div class=\"card-with-image-zoom iNm4c qt-image-dynamic image3x2 card-image-wrapper JCQpo _8mCoa UUq0z\" style=\"background-position: 50% center; background-repeat: no-repeat; overflow: hidden; position: relative; background-color: var(--fallback-image-bg); width: 80px; padding-top: 53.3229px; background-image: url("/media-placeholder.svg");\"><figure class=\"qt-figure\" style=\"margin-bottom: 0px; max-width: 100%; padding: 0px; overflow: hidden;\"><picture class=\"qt-image zoom-desktop default\" style=\"transition: transform 0.1s ease-out; --backgroundColor: var(--rgbWhite); --borderColor: var(--black12); --row-border: var(--black42); --bg-50: var(--white50); --dividerColor: var(--black12); --padding-left: 0; --padding-right: 0; --padding-bottom: var(--space1_6); --padding-top: 0; --button-background: var(--lochmara-blue); --button-text-color: var(--white); --margin-left-right: 0; --row-padding-bottom: 0; inset: 0px; height: 53.3229px; object-fit: cover; position: absolute; width: 80px;\"><img src=\"https://images.prothomalo.com/prothomalo-bangla%2F2024-12-17%2Foss23p7i%2FLogo-Jatio-Nagoric-Comimtte.jpg?rect=0%2C0%2C639%2C426&auto=format%2Ccompress&fmt=webp&format=webp&w=100&dpr=1.5\" data-src=\"https://images.prothomalo.com/prothomalo-bangla%2F2024-12-17%2Foss23p7i%2FLogo-Jatio-Nagoric-Comimtte.jpg?rect=0%2C0%2C639%2C426&auto=format%2Ccompress&fmt=webp\" max-dpr=\"2\" type=\"image/webp\" sizes=\"( max-width: 500px ) 98%, ( max-width: 875px ) 48%, 23%\" class=\"qt-image image gm-added gm-loaded gm-observing gm-observing-cb\" data-bg=\"/media-placeholder.svg\" fetchpriority=\"low\" alt=\"রাজনৈতিক দল গঠনে ‘সহায়তা’ চাওয়া নিয়ে বিতর্ক\" style=\"margin: 0px; max-width: 100%; padding: 0px; inset: 0px; height: 53.3229px; object-fit: cover; position: absolute; width: 80px; background-image: url("/media-placeholder.svg");\"></picture></figure></div></a></div></span></div></div></div></div><div id=\"0ff7339a-0926-4ef3-a284-71aeea114f6f\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">ঢাকার বাইরে চলতি ডিসেম্বর মাসের ২৪ দিনে ৩৩টি থানায় কমিটি করেছে জাতীয় নাগরিক কমিটি। এই কমিটিগুলো হয়েছে চট্টগ্রামের চকবাজার, পাঁচলাইশ, বাকলিয়া, বায়েজিদ, রাউজান ও কর্ণফুলী; কুড়িগ্রাম সদর, টাঙ্গাইলের কালিহাতী, পিরোজপুর সদর, নারায়ণগঞ্জের রূপগঞ্জ, বন্দর, ফতুল্লা, সিদ্ধিরগঞ্জ ও আড়াইহাজার; বাগেরহাটের ফকিরহাট, টাঙ্গাইলের ভূঞাপুর, কুমিল্লার মুরাদনগর, কুষ্টিয়া সদর, খুলনা সদর, বগুড়ার সারিয়াকান্দি, কক্সবাজার সদর, সিরাজগঞ্জের এনায়েতপুর, বরিশালের কোতোয়ালি, সিলেটের ওসমানীনগর, মৌলভীবাজার সদর, রংপুরের মাহিগঞ্জ ও হাজিরহাট; সিরাজগঞ্জের বেলকুচি, নরসিংদীর পলাশ, নওগাঁর মহাদেবপুর, রাজশাহীর পবা ও মতিহার এবং কক্সবাজারের মহেশখালী থানায়।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">এই ডিসেম্বরে এখন পর্যন্ত ৩৩টি উপজেলায়ও প্রতিনিধি কমিটি করেছে জাতীয় নাগরিক কমিটি। এই কমিটিগুলো হয়েছে নেত্রকোনা সদর, আটপাড়া, মোহনগঞ্জ, কেন্দুয়া, মদন, খালিয়াজুরি, দুর্গাপুর ও কলমাকান্দা; ময়মনসিংহ সদর, বগুড়ার কাহালু, শিবগঞ্জ, শেরপুর ও শাহজাহানপুর; কুষ্টিয়ার ভেড়ামারা ও দৌলতপুর; কুড়িগ্রামের ফুলবাড়ী, রাজীবপুর ও রাজারহাট; টাঙ্গাইলের ধনবাড়ী ও সখীপুর; কক্সবাজারের টেকনাফ, মানিকগঞ্জ সদর, সাটুরিয়া ও সিঙ্গাইর; কিশোরগঞ্জ সদর ও কটিয়াদী; ময়মনসিংহ সদর ও গৌরীপুর; ব্রাহ্মণবাড়িয়ার বিজয়নগর, দিনাজপুরের পার্বতীপুর ও বোচাগঞ্জ; মৌলভীবাজারের রাজনগর এবং ব্রাহ্মণবাড়িয়ার কসবা উপজেলায়।</p></div></div><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text story-element-text-also-read\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><span class=\"also-read lDfA5\" style=\"display: inline-block; width: 622px;\"><div class=\"also-read-text\" style=\"color: var(--scorpion); font-size: var(--fs-16); font-weight: var(--bold); margin-bottom: var(--space0_8);\">আরও পড়ুন</div><div class=\"_-2jpv\" style=\"align-items: flex-start; border: var(--border1-0_12); display: flex; justify-content: space-between; margin-bottom: var(--space1_6); padding: var(--space1_6); gap: var(--space2_4);\"><a class=\"M7zxR\" aria-label=\"এক-দুই মাসের মধ্যে রাজনৈতিক দল ঘোষণা করা হবে: নাসীরুদ্দীন পাটওয়ারী\" href=\"https://www.prothomalo.com/bangladesh/district/mznu052esx\" style=\"color: inherit; display: grid; gap: var(--space1_6);\"><h2 class=\"xm4dj\" style=\"font-family: var(--font-2); margin-right: 0px; margin-left: 0px; padding: 0px; font-size: var(--fs-20); transition: color var(--trans-duration);\">এক-দুই মাসের মধ্যে রাজনৈতিক দল ঘোষণা করা হবে: নাসীরুদ্দীন পাটওয়ারী</h2><time class=\"_5LznD fw8bp\" style=\"font-family: var(--font-1); font-size: var(--fs-14_5); padding-top: 0px; color: var(--black56);\">১৬ ডিসেম্বর ২০২৪</time></a><a aria-label=\"এক-দুই মাসের মধ্যে রাজনৈতিক দল ঘোষণা করা হবে: নাসীরুদ্দীন পাটওয়ারী\" href=\"https://www.prothomalo.com/bangladesh/district/mznu052esx\" style=\"color: inherit;\"><div class=\"card-with-image-zoom iNm4c qt-image-dynamic image3x2 card-image-wrapper JCQpo _8mCoa UUq0z\" style=\"background-position: 50% center; background-repeat: no-repeat; overflow: hidden; position: relative; background-color: var(--fallback-image-bg); width: 80px; padding-top: 53.3229px; background-image: url("/media-placeholder.svg");\"><figure class=\"qt-figure\" style=\"margin-bottom: 0px; max-width: 100%; padding: 0px; overflow: hidden;\"><picture class=\"qt-image zoom-desktop default\" style=\"transition: transform 0.1s ease-out; --backgroundColor: var(--rgbWhite); --borderColor: var(--black12); --row-border: var(--black42); --bg-50: var(--white50); --dividerColor: var(--black12); --padding-left: 0; --padding-right: 0; --padding-bottom: var(--space1_6); --padding-top: 0; --button-background: var(--lochmara-blue); --button-text-color: var(--white); --margin-left-right: 0; --row-padding-bottom: 0; inset: 0px; height: 53.3229px; object-fit: cover; position: absolute; width: 80px;\"><img src=\"https://images.prothomalo.com/prothomalo-bangla%2F2024-12-16%2F8lt4u80s%2FDhakaDH162420241216savar10-16.12.24.jpg?rect=0%2C0%2C1441%2C961&auto=format%2Ccompress&fmt=webp&format=webp&w=100&dpr=1.5\" data-src=\"https://images.prothomalo.com/prothomalo-bangla%2F2024-12-16%2F8lt4u80s%2FDhakaDH162420241216savar10-16.12.24.jpg?rect=0%2C0%2C1441%2C961&auto=format%2Ccompress&fmt=webp\" max-dpr=\"2\" type=\"image/webp\" sizes=\"( max-width: 500px ) 98%, ( max-width: 875px ) 48%, 23%\" class=\"qt-image image gm-added gm-loaded gm-observing gm-observing-cb\" data-bg=\"/media-placeholder.svg\" fetchpriority=\"low\" alt=\"এক-দুই মাসের মধ্যে রাজনৈতিক দল ঘোষণা করা হবে: নাসীরুদ্দীন পাটওয়ারী\" style=\"margin: 0px; max-width: 100%; padding: 0px; inset: 0px; height: 53.3229px; object-fit: cover; position: absolute; width: 80px; background-image: url("/media-placeholder.svg");\"></picture></figure></div></a></div></span></div></div></div></div><div id=\"cff27f65-784b-4566-a098-8217712c270e\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">ছাত্র-জনতার অভ্যুত্থানে গত ৫ আগস্ট আওয়ামী লীগ সরকারের পতন হয়। সেই গণ-অভ্যুত্থানে নেতৃত্ব দেয় বৈষম্যবিরোধী ছাত্র আন্দোলন। গণ-অভ্যুত্থানের শক্তিকে সংহত করে দেশ পুনর্গঠনের লক্ষ্যে গত ৮ সেপ্টেম্বর যাত্রা শুরু করে জাতীয় নাগরিক কমিটি। তারা তারুণ্যনির্ভর নতুন একটি রাজনৈতিক দল গঠনের লক্ষ্যে কাজ করছে। এরই অংশ হিসেবে থানা ও উপজেলা পর্যায়ে প্রতিনিধি কমিটি করা হচ্ছে।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\"><span style=\"font-weight: bolder;\">বৈষম্যবিরোধী ছাত্র আন্দোলন</span></p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">জাতীয় নাগরিক কমিটির পাশাপাশি বৈষম্যবিরোধী ছাত্র আন্দোলনও ঢাকার বাইরে কমিটি করছে। এখন পর্যন্ত দেশের ১৮টি জেলা, ৩টি মহানগর, ১টি বিশ্ববিদ্যালয় ও ১টি পলিটেকনিক ইনস্টিটিউটে আহ্বায়ক কমিটি করেছে তারা। এর মধ্যে সর্বশেষ গাইবান্ধা জেলায় ২৩৮ সদস্যের কমিটি করেছে বৈষম্যবিরোধী ছাত্র আন্দোলন।</p></div></div></div></div></div></div></div></div>', '5,6,7,8,45', '676ce9acd0f24.webp', '676ce9ad16ace.webp', 1, '2024-12-25 23:29:17', '2024-12-25 23:29:40');
INSERT INTO `posts` (`id`, `author_id`, `category_id`, `read_time`, `title`, `slug`, `desp`, `tags`, `preview`, `thumbnail`, `status`, `created_at`, `updated_at`) VALUES
(2, 1, 14, 8, '2024 Top 10 Coolest New Auto Tech', '2024-top-10-coolest-new-auto-tech-151287', '<div data-component=\"summary\" class=\"Summary ArticleBase-BodySummary\" style=\"border-width: 1px 0px; border-style: solid; border-color: rgb(233 233 233/var(--tw-border-opacity)); border-image: initial; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; --tw-border-opacity: 1; padding-top: 24px; padding-bottom: 24px; margin-bottom: 40px;\"><h1><h1><ol><li style=\"text-align: justify; \"><font color=\"#666666\" style=\"\"><span style=\"font-size: 18px;\"><b>2024 Top 10 Coolest New Auto Tech</b></span></font></li></ol></h1></h1></div><div class=\"ArticleBase-BodyContent ArticleBase-BodyContent_Article\" data-testid=\"article-base-body-content\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-bottom: 56px;\"><div data-module=\"content\" class=\"ContentModule-Wrapper\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary);\"><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-right: 0px; margin-left: 0px; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">Over the course of the year, </span><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"><span class=\"ContentText-BodyTextChunk ContentText-BodyTextChunk_italic\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); font-style: italic;\">Design News</span></span><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"> has the opportunity to experience an impressive array of innovations. Some of these involve amazing new technologies while others are simply thoughtful executions of existing products. In one case on this year’s list of our top 10 favorite new automotive technologies, it is the revival of a once-popular feature that merits attention.</span></p><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">Here are some of the coolest new things we saw in cars in 2024:</span></p><h3 class=\"ContentText ContentText_variant_h3 ContentText_align_left\" data-testid=\"content-text\" id=\"Hyundai Santa Fe UV phone sanitizer\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; font-size: 1.625rem; font-weight: var(--font-primary-mid-weight); margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; overflow-wrap: break-word; line-height: 2.438rem; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0; scroll-margin-top: 10rem;\">Hyundai Santa Fe UV phone sanitizer</h3><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">Health news is full of reminders that our phones are germy terrors. Hyundai wants to help, so the </span><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"><a class=\"ContentText-BodyTextChunk ContentText-BodyTextChunk_link\" target=\"_self\" href=\"https://www.designnews.com/automotive-engineering/2024-hyundai-santa-fe-maximizes-cabin-space-with-blocky-styling\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); color: var(--color-brand-secondary-2); text-decoration-line: underline; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit;\">2024 Santa Fe</a></span><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"> offers a sanitizing box where drivers can stow their phones, keys, or other small germ-ridden objects and fry the microbes with a blast of ultraviolet radiation. The cleaning cycle lasts ten minutes, so it is easy to disinfect your phone while you drive.</span></p><h3 class=\"ContentText ContentText_variant_h3 ContentText_align_left\" data-testid=\"content-text\" id=\"Audi illuminated seat belt buckles\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; font-size: 1.625rem; font-weight: var(--font-primary-mid-weight); margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; overflow-wrap: break-word; line-height: 2.438rem; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0; scroll-margin-top: 10rem;\">Audi illuminated seat belt buckles</h3><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">It isn’t hard to find the seatbelt latch to buckle the harness when you get into the car during the day. But at night they can sometimes be a challenge to locate. Audi has solved this problem by illuminating the latches to make them easy to find.</span></p><p data-component=\"related-article\" class=\"RelatedArticle\" style=\"border-width: 1px 0px; border-style: solid; border-color: rgb(233 233 233/var(--tw-border-opacity)); border-image: initial; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; width: 680px; padding-top: 8px; padding-bottom: 8px; font-size: 1.125rem; line-height: 1.5rem; --tw-border-opacity: 1; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0;\"><span data-testid=\"related-article-title\" class=\"RelatedArticle-Title\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-right: 4px; font-weight: 700; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity));\">Related:</span><a class=\"RelatedArticle-RelatedContent\" data-discover=\"true\" href=\"https://www.designnews.com/automotive-engineering/2024-hyundai-santa-fe-maximizes-cabin-space-with-blocky-styling\" target=\"_self\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); color: var(--color-brand-primary-2); text-decoration: inherit;\">2024 Hyundai Santa Fe Maximizes Cabin Space with Blocky Styling</a></p><div style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-left: auto; margin-right: auto; display: table; width: auto; min-width: 300px; --tw-space-y-reverse: 0; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-bottom: calc(27px*var(--tw-space-y-reverse)); font-size: medium;\"><img data-testid=\"content-image\" data-component=\"image\" class=\"ContentImage-Image ContentImage-Image_align_left\" src=\"https://eu-images.contentstack.com/v3/assets/blt0bbd1b20253587c0/blt75acd2dc30fec2b4/676488c57b3a6d2503a70e56/Audi_seat_belt_buckle.jpg?width=700&auto=webp&quality=80&disable=upscale\" loading=\"lazy\" alt=\"Audi_seat_belt_buckle.jpg\" title=\"Audi_seat_belt_buckle.jpg\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); display: block; max-width: 100%; height: auto; margin-left: auto; margin-right: auto;\"><p class=\"ContentImage-Link\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-top: 8px; margin-right: 0px; margin-left: 0px; display: table-caption; font-size: 1rem; line-height: 1.5rem; --tw-text-opacity: 1; color: rgb(118 118 118/var(--tw-text-opacity)); caption-side: bottom;\">Sure, the red release buttons are easy to see in daylight, but at night these seatbelt latches are illuminated to make them equally easy to spot. AUDI</p></div><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">In the past, this would have been impractical because of the fragility of incandescent bulb filaments and the heat they produce. Thanks to the arrival of LED lighting, Audi was able to make it easier to buckle up at night.</span></p><h3 class=\"ContentText ContentText_variant_h3 ContentText_align_left\" data-testid=\"content-text\" id=\"Toyota Tacoma JBL Flex speaker\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; font-size: 1.625rem; font-weight: var(--font-primary-mid-weight); margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; overflow-wrap: break-word; line-height: 2.438rem; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0; scroll-margin-top: 10rem;\">Toyota Tacoma JBL Flex speaker</h3><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">It seems like respected home stereo speaker manufacturer JBL has become the go-to for modern Bluetooth speakers. Everyone appreciates the ability to carry a compact, lightweight device that streams amazing sound from our phones for hours on end.</span></p><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">Recognizing this, Toyota has incorporated a JBL Flex mobile Bluetooth speaker into the center dashboard as part of the stereo system in the </span><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"><a class=\"ContentText-BodyTextChunk ContentText-BodyTextChunk_link\" target=\"_self\" href=\"https://www.designnews.com/automotive-engineering/2024-toyota-tacoma-trd-pro-brings-new-tech\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); color: var(--color-brand-secondary-2); text-decoration-line: underline; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit;\">Tacoma pickup</a></span><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">. It provides center channel sound while listening to the Tacoma’s stereo system while it is latched into its dock.</span></p><div style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-left: auto; margin-right: auto; display: table; width: auto; min-width: 300px; --tw-space-y-reverse: 0; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-bottom: calc(27px*var(--tw-space-y-reverse)); font-size: medium;\"><img data-testid=\"content-image\" data-component=\"image\" class=\"ContentImage-Image ContentImage-Image_align_left\" src=\"https://eu-images.contentstack.com/v3/assets/blt0bbd1b20253587c0/bltef3172c1a9069730/67648dbdcc620f23099a8d5a/MY24_Tacoma_TEASER_JBL_002-1500x900.jpg?width=700&auto=webp&quality=80&disable=upscale\" loading=\"lazy\" alt=\"MY24_Tacoma_TEASER_JBL_002-1500x900.jpg\" title=\"MY24_Tacoma_TEASER_JBL_002-1500x900.jpg\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); display: block; max-width: 100%; height: auto; margin-left: auto; margin-right: auto;\"><p class=\"ContentImage-Link\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-top: 8px; margin-right: 0px; margin-left: 0px; display: table-caption; font-size: 1rem; line-height: 1.5rem; --tw-text-opacity: 1; color: rgb(118 118 118/var(--tw-text-opacity)); caption-side: bottom;\">The Tacoma\'s JBL Flex Bluetooth speaker pops right out of the dashboard for use on the go. TOYOTA</p></div><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">But arrive at your destination, and a button press releases the Flex for you to carry along with you as a mobile speaker. It is fully charged because it has been charging while it was docked in the truck. This is a neat trick that should be more widely emulated by any manufacturer who thinks that its customers have an active lifestyle.</span></p><h3 class=\"ContentText ContentText_variant_h3 ContentText_align_left\" data-testid=\"content-text\" id=\"Volkswagen ID.Buzz retractable hitch receiver\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; font-size: 1.625rem; font-weight: var(--font-primary-mid-weight); margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; overflow-wrap: break-word; line-height: 2.438rem; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0; scroll-margin-top: 10rem;\">Volkswagen ID.Buzz retractable hitch receiver</h3><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">Hitch receivers are hugely practical options on vehicles, even if you don’t expect to tow very frequently. In addition to pulling the occasional U-Haul if you don’t own a camper, boat, or motorcycle that you tow, these standardized 2-inch receivers also accommodate helpful devices such as bike racks or platforms for additional luggage capacity. They can even hold a grille for tailgate parties.</span></p><p data-component=\"related-article\" class=\"RelatedArticle\" style=\"border-width: 1px 0px; border-style: solid; border-color: rgb(233 233 233/var(--tw-border-opacity)); border-image: initial; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; width: 680px; padding-top: 8px; padding-bottom: 8px; font-size: 1.125rem; line-height: 1.5rem; --tw-border-opacity: 1; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0;\"><span data-testid=\"related-article-title\" class=\"RelatedArticle-Title\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-right: 4px; font-weight: 700; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity));\">Related:</span><a class=\"RelatedArticle-RelatedContent\" data-discover=\"true\" href=\"https://www.designnews.com/automotive-engineering/2024-toyota-tacoma-trd-pro-brings-new-tech\" target=\"_self\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); color: var(--color-brand-primary-2); text-decoration: inherit;\">2024 Toyota Tacoma TRD Pro Brings New Tech</a></p><div style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-left: auto; margin-right: auto; display: table; width: auto; min-width: 300px; --tw-space-y-reverse: 0; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-bottom: calc(27px*var(--tw-space-y-reverse)); font-size: medium;\"><img data-testid=\"content-image\" data-component=\"image\" class=\"ContentImage-Image ContentImage-Image_align_left\" src=\"https://eu-images.contentstack.com/v3/assets/blt0bbd1b20253587c0/blt815420e30c1360f6/6764880834f5c85bfd87bd62/ID._Buzz_hitch_2.jpg?width=700&auto=webp&quality=80&disable=upscale\" loading=\"lazy\" alt=\"ID._Buzz_hitch_2.jpg\" title=\"ID._Buzz_hitch_2.jpg\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); display: block; max-width: 100%; height: auto; margin-left: auto; margin-right: auto;\"><p class=\"ContentImage-Link\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-top: 8px; margin-right: 0px; margin-left: 0px; display: table-caption; font-size: 1rem; line-height: 1.5rem; --tw-text-opacity: 1; color: rgb(118 118 118/var(--tw-text-opacity)); caption-side: bottom;\">The ID.BUZZ\'s hitch receiver in the deployed position. VOLKSWAGEN</p></div><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">When mounted on high-riding pickups and SUVs, there’s plenty of space beneath for the receiver. But on a more normal-height vehicle like the </span><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"><a class=\"ContentText-BodyTextChunk ContentText-BodyTextChunk_link\" target=\"_self\" href=\"https://www.designnews.com/automotive-engineering/volkswagen-unveils-u-s-spec-id-buzz-electric-van\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); color: var(--color-brand-secondary-2); text-decoration-line: underline; text-decoration-thickness: inherit; text-decoration-style: inherit; text-decoration-color: inherit;\">Volkswagen ID.BUZZ</a></span><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"> minivan, there isn’t as much ground clearance for the receiver. We love VW’s solution: a stowable receiver that folds up and out of the way when it isn’t needed.</span></p><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">Tug on the red handle, and the receiver swings 90 degrees and locks into position, going from invisible to practical in just a few seconds. Ingenious!</span></p><h3 class=\"ContentText ContentText_variant_h3 ContentText_align_left\" data-testid=\"content-text\" id=\"Toyota Land Cruiser flipper window\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; font-size: 1.625rem; font-weight: var(--font-primary-mid-weight); margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; overflow-wrap: break-word; line-height: 2.438rem; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0; scroll-margin-top: 10rem;\">Toyota Land Cruiser flipper window</h3><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">Way back in the olden times, during the 1990s dawn of the SUV age, carmakers often offered what was then referred to as a “flipper window” on SUV hatches. Consumers didn’t like having their groceries fall out onto the ground when the top-hinged hatch opened. The solution was to keep the hatch closed and only open the window.</span></p><div style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-left: auto; margin-right: auto; display: table; width: auto; min-width: 300px; --tw-space-y-reverse: 0; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-bottom: calc(27px*var(--tw-space-y-reverse)); font-size: medium;\"><img data-testid=\"content-image\" data-component=\"image\" class=\"ContentImage-Image ContentImage-Image_align_left\" src=\"https://eu-images.contentstack.com/v3/assets/blt0bbd1b20253587c0/bltc9e49dd90892ce39/676487a6bee972ff1fed6022/2025_Toyota_Land_Cruiser_rear_hatch.jpg?width=700&auto=webp&quality=80&disable=upscale\" loading=\"lazy\" alt=\"2025_Toyota_Land_Cruiser_rear_hatch.jpg\" title=\"2025_Toyota_Land_Cruiser_rear_hatch.jpg\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); display: block; max-width: 100%; height: auto; margin-left: auto; margin-right: auto;\"><p class=\"ContentImage-Link\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-top: 8px; margin-right: 0px; margin-left: 0px; display: table-caption; font-size: 1rem; line-height: 1.5rem; --tw-text-opacity: 1; color: rgb(118 118 118/var(--tw-text-opacity)); caption-side: bottom;\">Just squeeze the release button beneath the rear wiper pivot and the Land Cruiser\'s rear glass flips upward for access to the rear cargo area. TOYOTA</p></div><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">For some reason, this practical solution fell out of favor. It adds cost and manufacturing complexity to incorporate a hinged window into the hatch door and to design a rear-window wiper system that works with a window that opens, so those factors must have worked against it. In any case, Toyota has come to its senses and revived the rear hatch flipper window in the Land Cruiser and we welcome its return.</span></p><p data-component=\"related-article\" class=\"RelatedArticle\" style=\"border-width: 1px 0px; border-style: solid; border-color: rgb(233 233 233/var(--tw-border-opacity)); border-image: initial; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; width: 680px; padding-top: 8px; padding-bottom: 8px; font-size: 1.125rem; line-height: 1.5rem; --tw-border-opacity: 1; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0;\"><span data-testid=\"related-article-title\" class=\"RelatedArticle-Title\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-right: 4px; font-weight: 700; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity));\">Related:</span><a class=\"RelatedArticle-RelatedContent\" data-discover=\"true\" href=\"https://www.designnews.com/automotive-engineering/new-tech-longer-range-and-lower-prices-keep-rivian-in-the-game\" target=\"_self\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); color: var(--color-brand-primary-2); text-decoration: inherit;\">New Tech, Longer Range, and Lower Prices Keep Rivian in the Game</a></p><h3 class=\"ContentText ContentText_variant_h3 ContentText_align_left\" data-testid=\"content-text\" id=\"Lincoln Nautilus panoramic display\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; font-size: 1.625rem; font-weight: var(--font-primary-mid-weight); margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; overflow-wrap: break-word; line-height: 2.438rem; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0; scroll-margin-top: 10rem;\">Lincoln Nautilus panoramic display</h3><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">New cars have been overrun by video display screens. The obvious end game is a display that stretches across the entirety of the dashboard. That end game has arrived with the new Lincoln Nautilus, whose opulent display makes this seem like a good development rather than technical overreach.</span></p><div style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-left: auto; margin-right: auto; display: table; width: auto; min-width: 300px; --tw-space-y-reverse: 0; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-bottom: calc(27px*var(--tw-space-y-reverse)); font-size: medium;\"><img data-testid=\"content-image\" data-component=\"image\" class=\"ContentImage-Image ContentImage-Image_align_left\" src=\"https://eu-images.contentstack.com/v3/assets/blt0bbd1b20253587c0/blt7aab847e046f41b2/6764876995b07fb4cd54b525/2024_Lincoln_Nautilus_dashboard.jpg?width=700&auto=webp&quality=80&disable=upscale\" loading=\"lazy\" alt=\"2024_Lincoln_Nautilus_dashboard.jpg\" title=\"2024_Lincoln_Nautilus_dashboard.jpg\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); display: block; max-width: 100%; height: auto; margin-left: auto; margin-right: auto;\"><p class=\"ContentImage-Link\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-top: 8px; margin-right: 0px; margin-left: 0px; display: table-caption; font-size: 1rem; line-height: 1.5rem; --tw-text-opacity: 1; color: rgb(118 118 118/var(--tw-text-opacity)); caption-side: bottom;\">The Nautilus settles the question of how far a dashboard display can extend, by going all the way across. LINCOLN</p></div><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">The 48-inch panoramic display spans the entire dash and can be personalized to meet driver needs, raising the preferred information of their choice to help keep their eyes up and on the road. Drivers can use apps and services from Google and Amazon through the built-in system or switch to Apple CarPlay or Android Auto to mirror their smartphone apps on the display.</span></p><h3 class=\"ContentText ContentText_variant_h3 ContentText_align_left\" data-testid=\"content-text\" id=\"Toyota Sienna Advanced Rear Seat Reminder\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; font-size: 1.625rem; font-weight: var(--font-primary-mid-weight); margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; overflow-wrap: break-word; line-height: 2.438rem; --tw-text-opacity: 1; color: rgb(51 51 51/var(--tw-text-opacity)); --tw-space-y-reverse: 0; scroll-margin-top: 10rem;\">Toyota Sienna Advanced Rear Seat Reminder</h3><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">Too many children die every year because they’ve been left inside cars that bake in the sun. Carmakers are trying different solutions to warn drivers that there is a child in the car when they park, but often these are dumb systems that drivers get in the habit of ignoring because of the frequent false alarms.</span><br style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary);\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">The 2025 Toyota Sienna minivan employs 60-GHz millimeter radar built into the headliner to watch the rear seat so that the car can provide smart alerts when a small person is detected in the back seat. Such technologies, if not this specific radar system, seem likely to be mandatory soon.</span></p><div style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-left: auto; margin-right: auto; display: table; width: auto; min-width: 300px; --tw-space-y-reverse: 0; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-bottom: calc(27px*var(--tw-space-y-reverse)); font-size: medium;\"><img data-testid=\"content-image\" data-component=\"image\" class=\"ContentImage-Image ContentImage-Image_align_left\" src=\"https://eu-images.contentstack.com/v3/assets/blt0bbd1b20253587c0/blt4228d33334ad539e/6764872395b07f24c454b521/Toyota_2025_Sienna_headliner.jpg?width=700&auto=webp&quality=80&disable=upscale\" loading=\"lazy\" alt=\"Toyota_2025_Sienna_headliner.jpg\" title=\"Toyota_2025_Sienna_headliner.jpg\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); display: block; max-width: 100%; height: auto; margin-left: auto; margin-right: auto;\"><p class=\"ContentImage-Link\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); margin-top: 8px; margin-right: 0px; margin-left: 0px; display: table-caption; font-size: 1rem; line-height: 1.5rem; --tw-text-opacity: 1; color: rgb(118 118 118/var(--tw-text-opacity)); caption-side: bottom;\">The Sienna\'s Advanced Rear Seat Reminder radar hides behind the headliner on the ceiling. TOYOTA</p></div><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"></span></p><p class=\"ContentParagraph ContentParagraph_align_left\" data-testid=\"content-paragraph\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: "Open Sans"; margin-top: calc(27px*(1 - var(--tw-space-y-reverse))); margin-right: 0px; margin-bottom: calc(27px*var(--tw-space-y-reverse)); margin-left: 0px; --tw-space-y-reverse: 0; font-size: medium;\"><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\">If the Advanced Rear Seat Reminder system senses movement in the scanned area after the vehicle is shifted into park and the ignition is off, the driver’s door has been opened then closed, and the vehicle has been locked, the initial warning will flash the hazard lights and sound the door lock chime. After 90 seconds, if movement is still detected by the sensor and a door has not been opened, the Advanced Rear Seat Reminder will sound the horn. Finally, after an additional two minutes has elapsed, the system will make an automated phone call from Toyota Safety.</span></p><div><span class=\"ContentText ContentText_variant_bodyNormal\" data-testid=\"content-text\" style=\"border: 0px solid; --tw-border-spacing-x: 0; --tw-border-spacing-y: 0; --tw-translate-x: 0; --tw-translate-y: 0; --tw-rotate: 0; --tw-skew-x: 0; --tw-skew-y: 0; --tw-scale-x: 1; --tw-scale-y: 1; --tw-pan-x: ; --tw-pan-y: ; --tw-pinch-zoom: ; --tw-scroll-snap-strictness: proximity; --tw-gradient-from-position: ; --tw-gradient-via-position: ; --tw-gradient-to-position: ; --tw-ordinal: ; --tw-slashed-zero: ; --tw-numeric-figure: ; --tw-numeric-spacing: ; --tw-numeric-fraction: ; --tw-ring-inset: ; --tw-ring-offset-width: 0px; --tw-ring-offset-color: #fff; --tw-ring-color: #3b82f680; --tw-ring-offset-shadow: 0 0 #0000; --tw-ring-shadow: 0 0 #0000; --tw-shadow: 0 0 #0000; --tw-shadow-colored: 0 0 #0000; --tw-blur: ; --tw-brightness: ; --tw-contrast: ; --tw-grayscale: ; --tw-hue-rotate: ; --tw-invert: ; --tw-saturate: ; --tw-sepia: ; --tw-drop-shadow: ; --tw-backdrop-blur: ; --tw-backdrop-brightness: ; --tw-backdrop-contrast: ; --tw-backdrop-grayscale: ; --tw-backdrop-hue-rotate: ; --tw-backdrop-invert: ; --tw-backdrop-opacity: ; --tw-backdrop-saturate: ; --tw-backdrop-sepia: ; --tw-contain-size: ; --tw-contain-layout: ; --tw-contain-paint: ; --tw-contain-style: ; font-family: var(--font-secondary); overflow-wrap: break-word; font-size: 1.125rem; line-height: 1.688rem; --tw-text-opacity: 1; color: rgb(102 102 102/var(--tw-text-opacity));\"><br></span></div></div></div>', '47,16,24,29,48,23,39,38', '676cebba953ba.jpg', '676cebbae27bc.jpg', 1, '2024-12-25 23:38:03', '2024-12-25 23:38:10');
INSERT INTO `posts` (`id`, `author_id`, `category_id`, `read_time`, `title`, `slug`, `desp`, `tags`, `preview`, `thumbnail`, `status`, `created_at`, `updated_at`) VALUES
(3, 1, 2, 4, 'Apple may launch new entry-level iPad in January 2025: What to expect', 'apple-may-launch-new-entry-level-ipad-in-january-2025:-what-to-expect-142953', '<h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><span style=\"font-weight: normal; background-color: rgb(74, 123, 140);\">Apple may launch new entry-level iPad in January 2025: What to expect</span></h1><h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><span style=\"font-weight: normal; background-color: rgb(74, 123, 140);\"><br></span></h1><h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\">Apple has almost updated its entire iPad line-up in 2024, leaving only the entry-level iPad. However, according to a report by 9To5Mac, the US technology giant is expected to introduce the 11th generation iPad model in early 2025 with major performance improvements. </div><small class=\"brtag\" style=\"margin: 0px; padding: 0px 0px 10px; display: block; line-height: 0px; color: rgb(40, 43, 50);\"> </small><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\">According to the report, the iPad 11 is scheduled for launch early next year, around the same time as iPadOS 18.3. For reference, Apple has already released the first developer beta version of iPadOS 18.3 and is expected to officially introduce the update in January 2025. The report stated that the anticipated iPad 11th generation model will come with iPadOS 18.3 pre-installed. </div><span style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; font-weight: 400; display: block; height: 1px;\"> </span><small class=\"brtag\" style=\"margin: 0px; padding: 0px 0px 10px; display: block; line-height: 0px; color: rgb(40, 43, 50);\"> </small><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><span style=\"margin: 0px; padding: 5px 0px; font-weight: 600; display: inline-block;\">iPad 11th generation: What to expect</span></div><small class=\"brtag\" style=\"margin: 0px; padding: 0px 0px 10px; display: block; line-height: 0px; color: rgb(40, 43, 50);\"> </small><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\">Apple is not expected to make significant changes to the device\'s overall aesthetics. However, on the performance front, the base iPad model could get a major boost. Similar to the latest iPad Mini model, the new generation entry-level iPad model could be powered by the A17 Pro chip. This would also allow the new iPad 11 to run Apple\'s suite of artificial intelligence features that the company calls Apple Intelligence.</div><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><div style=\"margin: 0px; padding: 0px; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><span class=\"read_more\" style=\"margin: 10px 0px; padding: 5px 0px; font-weight: 600; display: inline-block;\">ALSO READ: <a href=\"https://www.business-standard.com/technology/tech-news/apple-mulls-smart-home-doorbell-with-support-for-facial-recognition-report-124122300488_1.html\" target=\"_blank\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232);\">Apple mulls smart home doorbell with support for facial recognition: Report</a></span></div></div></h1><h3 class=\"section-title\" style=\"margin-right: 0px; margin-left: 0px; padding: 0px; font-family: Arial; font-size: 20px; line-height: 36px; width: 685.5px; color: rgb(13, 13, 13);\"><span style=\"margin: 0px; padding: 0px 10px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; position: relative;\">Also Read</span></h3><h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><div class=\"mb-20\" style=\"margin: 0px; padding: 0px; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_stryalsoread__HlMna\" style=\"margin: 0px 0px 15px; padding: 0px; min-height: 271px; border-bottom: 1px solid rgb(178, 34, 34); max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_recommendsection__1ZpG_ recommendsection\" style=\"margin: 20px 0px; padding: 0px; position: relative; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_alsoreadheading__tScqk alsoreadheading\" style=\"margin: 0px; padding: 0px; position: relative; width: 685.5px; max-width: 100%; float: none !important; line-height: 28px !important;\"></div><button class=\"latestnews_slidearrow__b6nPH prevBtn\" id=\"slide-arrow-next-related0\" style=\"padding: 5px; background-image: none; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; border-style: solid; border-color: rgb(41, 43, 50); border-top-width: 0px; border-left-width: 0px; content: ""; position: absolute; right: 0px; top: 10px; transform: rotate(-45deg);\"></button><button class=\"latestnews_slidearrow__b6nPH latestnews_slidearrownxt__sEt76 nextBtn\" id=\"slide-arrow-prev-related0\" style=\"padding: 5px; background-image: none; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; border-style: solid; border-color: rgb(41, 43, 50); border-top-width: 0px; border-left-width: 0px; content: ""; position: absolute; right: 24px; top: 10px; transform: rotate(132deg);\"></button><div class=\"latestnews_scrollbarList__Lm9h4 ulContainer slides-container\" id=\"slides-container-related0\" style=\"margin-right: 0px; margin-left: 0px; padding: 0px; display: flex; overflow: scroll; list-style: none; scroll-behavior: smooth; width: 685.5px; max-width: 100%; margin-top: 0px !important; margin-bottom: 15px !important; float: none !important; line-height: 28px !important;\"><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/technology/tech-news/tech-recap-2024-top-five-entry-level-flagships-from-oneplus-apple-google-124122600139_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"><div class=\"alsoReadImage\" style=\"padding: 0px; color: rgb(40, 43, 50); max-width: 100%; width: 185.083px; position: relative; margin: 0px !important; float: none !important; line-height: 28px !important;\"><span style=\"margin: 0px; padding: 0px; display: inline-block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; position: relative; max-width: 100%;\"><span style=\"margin: 0px; padding: 0px; display: block; width: initial; height: initial; background: none; opacity: 1; border: 0px; max-width: 100%;\"><img alt=\"\" aria-hidden=\"true\" src=\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20version=%271.1%27%20width=%27336%27%20height=%27188%27/%3e\" style=\"margin: 0px; padding: 0px; height: initial; max-width: 100%; border-radius: 0px; width: initial; display: block; background: none; opacity: 1; border: 0px; float: none !important;\"></span><img title=\"Top five entry-level flagships\" alt=\"Top five entry-level flagships\" src=\"https://bsmedia.business-standard.com/_media/bs/img/article/2024-12/26/full/1735187402-1962.png?im=FitAndFill=(336,188)\" decoding=\"async\" data-nimg=\"intrinsic\" style=\"margin: auto; padding: 0px; height: 0px; max-width: 100%; border-radius: 0px; width: 0px; position: absolute; inset: 0px; border-width: initial; border-color: initial; border-image: initial; display: block; min-width: 100%; min-height: 100%; max-height: 100%; float: none !important;\"></span></div></a></div></div></div></div></div></div></h1><h2 class=\"latestnews_smallcardtitle__gdkeR smallcardtitle\" style=\"margin-top: 5px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-left: 0px; font-size: 16px; color: rgb(40, 43, 50); font-family: Merriweather; line-height: 22px; cursor: pointer; padding-bottom: 5px !important;\">Tech recap 2024: Top five entry-level flagships from OnePlus, Apple, Google</h2><h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><div class=\"mb-20\" style=\"margin: 0px; padding: 0px; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_stryalsoread__HlMna\" style=\"margin: 0px 0px 15px; padding: 0px; min-height: 271px; border-bottom: 1px solid rgb(178, 34, 34); max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_recommendsection__1ZpG_ recommendsection\" style=\"margin: 20px 0px; padding: 0px; position: relative; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_scrollbarList__Lm9h4 ulContainer slides-container\" style=\"margin-right: 0px; margin-left: 0px; padding: 0px; display: flex; overflow: scroll; list-style: none; scroll-behavior: smooth; width: 685.5px; max-width: 100%; margin-top: 0px !important; margin-bottom: 15px !important; float: none !important; line-height: 28px !important;\"><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/technology/tech-news/tech-recap-2024-top-five-entry-level-flagships-from-oneplus-apple-google-124122600139_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"></a></div><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px 0px 0px 10px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/technology/gadgets/apple-confirms-ios-18-2-1-build-number-ios-18-3-beta-update-in-progress-124122500402_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"><div class=\"alsoReadImage\" style=\"padding: 0px; color: rgb(40, 43, 50); max-width: 100%; width: 185.083px; position: relative; margin: 0px !important; float: none !important; line-height: 28px !important;\"><span style=\"margin: 0px; padding: 0px; display: inline-block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; position: relative; max-width: 100%;\"><span style=\"margin: 0px; padding: 0px; display: block; width: initial; height: initial; background: none; opacity: 1; border: 0px; max-width: 100%;\"><img alt=\"\" aria-hidden=\"true\" src=\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20version=%271.1%27%20width=%27336%27%20height=%27188%27/%3e\" style=\"margin: 0px; padding: 0px; height: initial; max-width: 100%; border-radius: 0px; width: initial; display: block; background: none; opacity: 1; border: 0px; float: none !important;\"></span><img title=\"apple, apple logo\" alt=\"apple, apple logo\" src=\"https://bsmedia.business-standard.com/_media/bs/img/article/2024-12/17/full/1734415672-7558.JPG?im=FeatureCrop,size=(336,188)\" decoding=\"async\" data-nimg=\"intrinsic\" style=\"margin: auto; padding: 0px; height: 0px; max-width: 100%; border-radius: 0px; width: 0px; position: absolute; inset: 0px; border-width: initial; border-color: initial; border-image: initial; display: block; min-width: 100%; min-height: 100%; max-height: 100%; float: none !important;\"></span></div></a></div></div></div></div></div></div></h1><h2 class=\"latestnews_smallcardtitle__gdkeR smallcardtitle\" style=\"margin-top: 5px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-left: 0px; font-size: 16px; color: rgb(40, 43, 50); font-family: Merriweather; line-height: 22px; cursor: pointer; padding-bottom: 5px !important;\">Apple confirms iOS 18.2.1 build number, iOS 18.3 beta update in progress</h2><h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><div class=\"mb-20\" style=\"margin: 0px; padding: 0px; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_stryalsoread__HlMna\" style=\"margin: 0px 0px 15px; padding: 0px; min-height: 271px; border-bottom: 1px solid rgb(178, 34, 34); max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_recommendsection__1ZpG_ recommendsection\" style=\"margin: 20px 0px; padding: 0px; position: relative; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_scrollbarList__Lm9h4 ulContainer slides-container\" style=\"margin-right: 0px; margin-left: 0px; padding: 0px; display: flex; overflow: scroll; list-style: none; scroll-behavior: smooth; width: 685.5px; max-width: 100%; margin-top: 0px !important; margin-bottom: 15px !important; float: none !important; line-height: 28px !important;\"><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px 0px 0px 10px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/technology/gadgets/apple-confirms-ios-18-2-1-build-number-ios-18-3-beta-update-in-progress-124122500402_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"></a></div><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px 0px 0px 10px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/world-news/apple-seeks-to-defend-google-s-billion-dollar-payments-in-search-case-124122401204_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"><div class=\"alsoReadImage\" style=\"padding: 0px; color: rgb(40, 43, 50); max-width: 100%; width: 185.083px; position: relative; margin: 0px !important; float: none !important; line-height: 28px !important;\"><span style=\"margin: 0px; padding: 0px; display: inline-block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; position: relative; max-width: 100%;\"><span style=\"margin: 0px; padding: 0px; display: block; width: initial; height: initial; background: none; opacity: 1; border: 0px; max-width: 100%;\"><img alt=\"\" aria-hidden=\"true\" src=\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20version=%271.1%27%20width=%27336%27%20height=%27188%27/%3e\" style=\"margin: 0px; padding: 0px; height: initial; max-width: 100%; border-radius: 0px; width: initial; display: block; background: none; opacity: 1; border: 0px; float: none !important;\"></span><img title=\"Google\" alt=\"Google\" src=\"https://bsmedia.business-standard.com/_media/bs/img/article/2024-11/28/full/1732766052-1653.jpg?im=FitAndFill=(336,188)\" decoding=\"async\" data-nimg=\"intrinsic\" style=\"margin: auto; padding: 0px; height: 0px; max-width: 100%; border-radius: 0px; width: 0px; position: absolute; inset: 0px; border-width: initial; border-color: initial; border-image: initial; display: block; min-width: 100%; min-height: 100%; max-height: 100%; float: none !important;\"></span></div></a></div></div></div></div></div></div></h1><h2 class=\"latestnews_smallcardtitle__gdkeR smallcardtitle\" style=\"margin-top: 5px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-left: 0px; font-size: 16px; color: rgb(40, 43, 50); font-family: Merriweather; line-height: 22px; cursor: pointer; padding-bottom: 5px !important;\">Apple seeks to defend Google\'s billion-dollar payments in search case</h2><h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><div class=\"mb-20\" style=\"margin: 0px; padding: 0px; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_stryalsoread__HlMna\" style=\"margin: 0px 0px 15px; padding: 0px; min-height: 271px; border-bottom: 1px solid rgb(178, 34, 34); max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_recommendsection__1ZpG_ recommendsection\" style=\"margin: 20px 0px; padding: 0px; position: relative; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_scrollbarList__Lm9h4 ulContainer slides-container\" style=\"margin-right: 0px; margin-left: 0px; padding: 0px; display: flex; overflow: scroll; list-style: none; scroll-behavior: smooth; width: 685.5px; max-width: 100%; margin-top: 0px !important; margin-bottom: 15px !important; float: none !important; line-height: 28px !important;\"><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px 0px 0px 10px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/world-news/apple-seeks-to-defend-google-s-billion-dollar-payments-in-search-case-124122401204_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"></a></div><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px 0px 0px 10px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/technology/tech-news/apple-approaches-4-trillion-valuation-as-investors-bet-on-ai-momentum-124122400281_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"><div class=\"alsoReadImage\" style=\"padding: 0px; color: rgb(40, 43, 50); max-width: 100%; width: 185.083px; position: relative; margin: 0px !important; float: none !important; line-height: 28px !important;\"><span style=\"margin: 0px; padding: 0px; display: inline-block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; position: relative; max-width: 100%;\"><span style=\"margin: 0px; padding: 0px; display: block; width: initial; height: initial; background: none; opacity: 1; border: 0px; max-width: 100%;\"><img alt=\"\" aria-hidden=\"true\" src=\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20version=%271.1%27%20width=%27336%27%20height=%27188%27/%3e\" style=\"margin: 0px; padding: 0px; height: initial; max-width: 100%; border-radius: 0px; width: initial; display: block; background: none; opacity: 1; border: 0px; float: none !important;\"></span><img title=\"apple, apple logo\" alt=\"apple, apple logo\" src=\"https://bsmedia.business-standard.com/_media/bs/img/article/2024-12/17/full/1734415672-7558.JPG?im=FitAndFill=(336,188)\" decoding=\"async\" data-nimg=\"intrinsic\" style=\"margin: auto; padding: 0px; height: 0px; max-width: 100%; border-radius: 0px; width: 0px; position: absolute; inset: 0px; border-width: initial; border-color: initial; border-image: initial; display: block; min-width: 100%; min-height: 100%; max-height: 100%; float: none !important;\"></span></div></a></div></div></div></div></div></div></h1><h2 class=\"latestnews_smallcardtitle__gdkeR smallcardtitle\" style=\"margin-top: 5px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-left: 0px; font-size: 16px; color: rgb(40, 43, 50); font-family: Merriweather; line-height: 22px; cursor: pointer; padding-bottom: 5px !important;\">Apple approaches $4 trillion valuation as investors bet on AI momentum</h2><h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><div class=\"mb-20\" style=\"margin: 0px; padding: 0px; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_stryalsoread__HlMna\" style=\"margin: 0px 0px 15px; padding: 0px; min-height: 271px; border-bottom: 1px solid rgb(178, 34, 34); max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_recommendsection__1ZpG_ recommendsection\" style=\"margin: 20px 0px; padding: 0px; position: relative; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_scrollbarList__Lm9h4 ulContainer slides-container\" style=\"margin-right: 0px; margin-left: 0px; padding: 0px; display: flex; overflow: scroll; list-style: none; scroll-behavior: smooth; width: 685.5px; max-width: 100%; margin-top: 0px !important; margin-bottom: 15px !important; float: none !important; line-height: 28px !important;\"><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px 0px 0px 10px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/technology/tech-news/apple-approaches-4-trillion-valuation-as-investors-bet-on-ai-momentum-124122400281_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"></a></div><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px 0px 0px 10px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/technology/tech-news/india-techadvancements-5g-6g-nvidiamanufacturing-semiconductors-google-2024-124122300718_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"><div class=\"alsoReadImage\" style=\"padding: 0px; color: rgb(40, 43, 50); max-width: 100%; width: 185.083px; position: relative; margin: 0px !important; float: none !important; line-height: 28px !important;\"><span style=\"margin: 0px; padding: 0px; display: inline-block; overflow: hidden; width: initial; height: initial; background: none; opacity: 1; border: 0px; position: relative; max-width: 100%;\"><span style=\"margin: 0px; padding: 0px; display: block; width: initial; height: initial; background: none; opacity: 1; border: 0px; max-width: 100%;\"><img alt=\"\" aria-hidden=\"true\" src=\"data:image/svg+xml,%3csvg%20xmlns=%27http://www.w3.org/2000/svg%27%20version=%271.1%27%20width=%27336%27%20height=%27188%27/%3e\" style=\"margin: 0px; padding: 0px; height: initial; max-width: 100%; border-radius: 0px; width: initial; display: block; background: none; opacity: 1; border: 0px; float: none !important;\"></span><img title=\"In 2019, a team of Google researchers said they had built a machine capable of performing tasks that were not possible with traditional supercomputers. They described this machine, called a quantum computer, as a turning point in the evolution of inf\" alt=\"In 2019, a team of Google researchers said they had built a machine capable of performing tasks that were not possible with traditional supercomputers. They described this machine, called a quantum computer, as a turning point in the evolution of inf\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" decoding=\"async\" data-nimg=\"intrinsic\" style=\"margin: auto; padding: 0px; height: 0px; max-width: 100%; border-radius: 0px; width: 0px; position: absolute; inset: 0px; border-width: initial; border-color: initial; border-image: initial; display: block; min-width: 100%; min-height: 100%; max-height: 100%; background-size: cover; background-position: 0% 0%; filter: blur(20px); background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNk0AAAAC4AKhMfIC0AAAAASUVORK5CYII="); float: none !important;\"></span></div></a></div></div></div></div></div></div></h1><h2 class=\"latestnews_smallcardtitle__gdkeR smallcardtitle\" style=\"margin-top: 5px; margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-left: 0px; font-size: 16px; color: rgb(40, 43, 50); font-family: Merriweather; line-height: 22px; cursor: pointer; padding-bottom: 5px !important;\">From AI chips to 6G testing: How India\'s tech landscape evolved in 2024</h2><h1 class=\"MainStory_stryhdtp__frNSf stryhdtp\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; padding: 0px; font-family: Merriweather; font-size: 28px; line-height: 40px;\"><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><div class=\"mb-20\" style=\"margin: 0px; padding: 0px; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_stryalsoread__HlMna\" style=\"margin: 0px 0px 15px; padding: 0px; min-height: 271px; border-bottom: 1px solid rgb(178, 34, 34); max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_recommendsection__1ZpG_ recommendsection\" style=\"margin: 20px 0px; padding: 0px; position: relative; max-width: 100%; width: 685.5px; float: none !important; line-height: 28px !important;\"><div class=\"latestnews_scrollbarList__Lm9h4 ulContainer slides-container\" style=\"margin-right: 0px; margin-left: 0px; padding: 0px; display: flex; overflow: scroll; list-style: none; scroll-behavior: smooth; width: 685.5px; max-width: 100%; margin-top: 0px !important; margin-bottom: 15px !important; float: none !important; line-height: 28px !important;\"><div class=\"d-flex cardlist storylatestnews latestnews_storylatestnews___5wnY slide-related0 \" style=\"padding: 0px; border-bottom: none; flex-direction: column; position: relative; width: 185.083px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; flex: 0 0 27%; scroll-behavior: smooth; max-width: 100%; margin: 0px 0px 0px 10px !important; float: none !important; line-height: 28px !important;\"><a href=\"https://www.business-standard.com/technology/tech-news/india-techadvancements-5g-6g-nvidiamanufacturing-semiconductors-google-2024-124122300718_1.html\" style=\"margin: 0px; padding: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; color: rgb(27, 115, 232); display: inline-block; position: relative;\"></a></div></div></div></div></div></div><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\">The report also stated that the anticipated iPad 11 model could be the first Apple device featuring the company\'s first modem to handle Wi-Fi and 5G connectivity. Earlier it was reported that Apple\'s new modem chip will deliver lower peak speeds and reduced reliability compared to Qualcomm\'s current modems. Additionally, the new chip may not support mmWave 5G technology, which was introduced with the iPhone 12.</div><small class=\"brtag\" style=\"margin: 0px; padding: 0px 0px 10px; display: block; line-height: 0px; color: rgb(40, 43, 50);\"> </small><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\"><span style=\"margin: 0px; padding: 5px 0px; font-weight: 600; display: inline-block;\">Apple\'s upcoming products</span></div><small class=\"brtag\" style=\"margin: 0px; padding: 0px 0px 10px; display: block; line-height: 0px; color: rgb(40, 43, 50);\"> </small><div style=\"margin: 0px; padding: 0px; color: rgb(40, 43, 50); font-size: 17px; max-width: 100%; width: 685.5px; font-weight: 400; float: none !important; line-height: 28px !important;\">Besides a new entry-level iPad model, Apple is also expected to launch a new iPad Air, next-generation iPhone SE, M4-powered MacBook Air and more. Here are the details:</div><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px 0px 0px 30px; list-style-position: inside; color: rgb(40, 43, 50); font-size: 17px; font-weight: 400; display: inline-block !important;\"><li style=\"margin: 0px 0px 10px; padding: 0px; list-style-type: disc; list-style-position: outside;\">iPhone SE: The iPhone SE 4 is expected to feature the Apple A18 chip, introduced in the iPhone 16 models. It may also include 8GB RAM, bringing it on par with the iPhone 16 line-up and enabling support for Apple Intelligence. The new model will likely feature a modern iPhone 14-inspired design. It will likely feature a bigger OLED display with a notch for Face ID sensors, marking the transition away from the home button and Touch ID. It is also expected to get an improved camera set-up and a bigger battery compared to its predecessor. </li><li style=\"margin: 0px 0px 10px; padding: 0px; list-style-type: disc; list-style-position: outside;\">M4 MacBook Air: Following the launch of M4-powered MacBook Pro models, Apple is expected to refresh the MacBook Air in 2025. The new model could feature 16GB RAM on the base model alongside the new M4 chip, improving performance. Minor changes are expected in the design department, maintaining the Air\'s lightweight and portable profile. </li><li style=\"margin: 0px 0px 10px; padding: 0px; list-style-type: disc; list-style-position: outside;\">iPad Air: The iPad Air was updated this year alongside the Pro model. However, it is expected to receive the M3 chip along with new accessories, such as a Magic Keyboard tailored for Air models. </li><li style=\"margin: 0px 0px 10px; padding: 0px; list-style-type: disc; list-style-position: outside;\">AirTag: A second-generation AirTag is anticipated in early 2025 with improved tracking capabilities, enhanced anti-stalking features and more. </li><li style=\"margin: 0px 0px 10px; padding: 0px; list-style-type: disc; list-style-position: outside;\">Smart home display: Apple is reportedly working on a range of smart home products, with the first expected to be a control hub for connected devices. The smart home display will likely sport a 6-inch square screen with a front-facing camera for video calls. Expected to run on a hybrid interface combining watchOS and iOS StandBy mode, the device will get dedicated apps for browsing, media playback, and device management.</li></ul></h1>', '12,16,11,9,45,52,10,53,44', '676ced08a04ca.avif', '676ced09e92b5.avif', 1, '2024-12-25 23:43:38', '2024-12-25 23:47:48');
INSERT INTO `posts` (`id`, `author_id`, `category_id`, `read_time`, `title`, `slug`, `desp`, `tags`, `preview`, `thumbnail`, `status`, `created_at`, `updated_at`) VALUES
(4, 1, 3, 3, 'Youth Policy Summit 2024 tackles education, employment challenges in Bangladesh', 'youth-policy-summit-2024-tackles-education,-employment-challenges-in-bangladesh-136911', '<h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; color: rgb(33, 33, 33); font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\">Youth Policy Summit 2024 tackles education, employment challenges in Bangladesh</h1><article class=\"jw_detail_content_holder jw_detail_content_body content mb16\" style=\"padding: 0px; margin: 0px 0px 16px; outline: 0px; font-size: 1.35rem; line-height: 1.875rem; overflow-wrap: break-word; font-family: times, serif;\"><div itemprop=\"articleBody\" class=\"viewport jw_article_body\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden;\"><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Organized by Youth for Policy and IID, the two-day \"Youth Policy Summit 2024\" is being held at the Bangla Academy in Dhaka on Saturday and Sunday.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">After the anti-discrimination movement in July that led to a regime change, Bangladesh has entered a transitional phase, with the interim government initiating pre-election reform activities.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The movement, which began as a protest against discriminatory quota systems in government jobs, eventually evolved into a broader call for economic and social reforms.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Youth unemployment remains a pressing issue in Bangladesh.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">A lack of alignment between the education system and market demands, jobless economic growth despite increased economic output, and widespread corruption in the economy have exacerbated unemployment rates.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The problem is particularly severe among the highly educated youth.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Even in the private sector, issues such as low wages, long working hours, and job insecurity persist.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Only 30% of private-sector workers have contractual jobs, and a mere 10% receive pension benefits.</p><div id=\"div-ub-dhakatribune.com_1707389311788\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden;\"></div><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Consequently, most young people aspire to government jobs, despite the public sector employing only 5% of the workforce.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">This disparity in employment opportunities has fueled economic instability, as reflected in recent protests by rickshaw pullers, garment workers, and students.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Against this backdrop, Youth for Policy and IID have been addressing these challenges over the years by highlighting structural issues such as jobless growth, gender inequality, and the education-skills gap while working to raise awareness among policymakers about potential solutions.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The summit aims to ensure meaningful and spontaneous participation of youth in the pre-election reform activities of the interim government.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">To this end, the event facilitates intergenerational dialogues and exchanges among approximately 400 young representatives, policymakers, civil society leaders, and experts from across the country.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">It combines dialogues and interactive workshops, emphasizing equal participation from all.</p><h2 style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; font-size: 32px; line-height: 42px;\"><strong style=\"padding: 0px; margin: 0px; outline: 0px;\">Opening session</strong></h2><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Titled \"From Movements to a New Future: Building Inclusive Educational and Economic Systems for Youth,\" the opening session delved into reforms in Bangladesh inspired by the July anti-discrimination movement.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">It explored ways to institutionalize the right to equality in education and economic opportunities and discussed practical reforms to establish a more equitable state structure for the younger generation.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The session was moderated by IID Executive Director Syeed Ahamed.</p><h2 style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; font-size: 32px; line-height: 42px;\">Keynote address</h2><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The chief guest, Cultural Affairs Ministry Adviser Mostofa Sarwar Farooki, said: \"We are all working on various issues, but one thing we lack is unity. Unity is often absent in our culture. However, culture can either divide us or bring us together. It is now crucial to explore how to build reform movements and achieve national unity.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">\"A revolution is a cultural phenomenon, and its foundation lies in our lives and culture. Religion itself is a part of culture. Talking about religion is part of culture. But why can\'t we discuss cultural aspects like Shab-e-Barat or Eid,\" he added.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">He further said: \"Many say India is controlling our country, which makes us feel hopeless. I feel like a third-class citizen in my own country, and we can no longer accept this. That’s why the July uprising occurred. The anti-discrimination movement was unique. My top priority as an adviser is to ensure long-term impacts.\"</p><h2 style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; font-size: 32px; line-height: 42px;\"><strong style=\"padding: 0px; margin: 0px; outline: 0px;\">Insights from speakers</strong></h2><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Professor Manzoor Ahmed said: \"Education, which could have been a catalyst for development, has become a cause of social inequality. A permanent Education Reform Commission is needed to address these issues.\"</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Dr Fahmida Khatun, Director of CPD, said: \"Our economic growth is primarily statistical. While numbers indicate progress, infrastructural and institutional development remains inadequate. The July uprising started with employment inequality, which reflects systemic flaws within our economic structure. We have failed to achieve economic diversification, and the private sector lacks investment, stifling its growth.\"</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Sumaiya Islam, Member of the Women’s Affairs Reform Commission, added: \"From 1969 to 2024, women have played active roles in all mass movements. However, they have been denied their rightful power during transitions of authority.\"</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Tony Michael Gomes, Communications Director of CARE Bangladesh, said: \"Classrooms provide environments for greater learning, but our youth must learn to use information effectively. Why aren\'t they making themselves smarter instead of just their phones?\"</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Nazmul Hasan, Coordinator of the Anti-Discrimination Movement, added: \"Our fight was for fair quota reforms, not abolishment. We have seen numerous reform commissions, but none dedicated to education. We hope to eliminate faction-based campus politics, muscle power, and black money\'s dominance.\"</p><p style=\"padding: 0px; margin-right: 0px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">AKM Zakaria, Associate Editor of Prothom Alo, remarked: \"Social media influences our society profoundly, sometimes positively, sometimes negatively. We must ensure freedom of speech online while preventing harm. Media literacy is essential to discern what to believe and what to disregard.\"</p></div></article><div class=\"social_share_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; color: rgb(51, 51, 51); font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><div class=\"social_shares roundicons do_not_print\" data-show=\"copy,facebook,messenger,twitter,viber,whatsapp,linkedin,pinterest,print\" data-hide=\"\" style=\"padding: 0px; margin: 0px 4px 10px 0px; outline: 0px; display: inline-block; position: relative;\"><a class=\"share_platform_copy jadeshare\" title=\"https://www.dhakatribune.com/368753\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; position: relative;\"><span class=\"c\" style=\"padding: 0px; margin: 0px; outline: 0px; text-indent: -9999px; position: absolute; opacity: 0;\">https://www.dhakatribune.com/368753</span><span class=\"icon icon_link\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(232, 197, 80) !important; color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_facebook jadeshare\" title=\"Facebook\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_facebook\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(59, 89, 152); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_messenger jadeshare\" title=\"Messenger\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_messenger\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(218, 218, 209); color: rgb(0, 0, 0); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_twitter jadeshare\" title=\"Twitter\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_twitter\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(30, 190, 240); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_viber jadeshare\" title=\"Viber\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; display: inline-block;\"><span class=\"icon icon_viber\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(125, 81, 160); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_whatsapp jadeshare\" title=\"Whatsapp\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; display: inline-block;\"><span class=\"icon icon_whatsapp\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(37, 211, 102); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_linkedin jadeshare\" title=\"Linkedin\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_linkedin\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(0, 119, 181); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_pinterest jadeshare\" title=\"Pinterest\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_pinterest\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(189, 8, 28); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_print jadeshare\" title=\"Print\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_print\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(218, 218, 209); color: rgb(0, 0, 0); border-radius: 50%; display: inline-block; text-align: center;\"></span></a></div></div><div class=\"more_and_tag\" style=\"padding: 20px 0px 0px; margin: 20px 0px 10px; outline: 0px; line-height: 24px; overflow: hidden; border-top: 1px solid rgb(226, 226, 226); color: rgb(51, 51, 51); font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><div class=\"content_tags\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"topic_list\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><a href=\"https://www.dhakatribune.com/topic/unemployement\" style=\"padding: 2px 5px; margin: 0px 10px 10px 0px; outline: none; color: rgb(114, 110, 110); cursor: pointer; border: 1px solid rgb(211, 211, 211); border-radius: 5px; display: inline-block;\"><span style=\"padding: 0px; margin: 0px; outline: 0px;\">Unemployement</span></a><a href=\"https://www.dhakatribune.com/topic/anti-discrimination-student-movement\" style=\"padding: 2px 5px; margin: 0px 10px 10px 0px; outline: none; color: rgb(114, 110, 110); cursor: pointer; border: 1px solid rgb(211, 211, 211); border-radius: 5px; display: inline-block;\"><span style=\"padding: 0px; margin: 0px; outline: 0px;\">Anti-Discrimination Student Movement</span></a></div></div></div><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; color: rgb(33, 33, 33); font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"></p><div class=\"fb-comments fb_iframe_widget fb_iframe_widget_fluid_desktop\" data-href=\"https://www.dhakatribune.com/bangladesh/368753/youth-policy-summit-2024-tackles-education\" data-numposts=\"5\" data-width=\"770\" fb-xfbml-state=\"rendered\" fb-iframe-plugin-query=\"app_id=758858248035371&container_width=770&height=100&href=https%3A%2F%2Fwww.dhakatribune.com%2Fbangladesh%2F368753%2Fyouth-policy-summit-2024-tackles-education&locale=en_US&numposts=5&sdk=joey&version=v12.0&width=770\" style=\"padding: 0px; margin: 0px; outline: 0px; display: inline-block; position: relative; max-width: 100%; color: rgb(51, 51, 51); font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><span style=\"padding: 0px; margin: 0px; outline: 0px; display: inline-block; position: relative; text-align: justify; max-width: 100%; vertical-align: bottom; width: 770px; height: 199px;\"><iframe name=\"f4fe51e788c3c68b2\" width=\"770px\" height=\"100px\" data-testid=\"fb:comments Facebook Social Plugin\" title=\"fb:comments Facebook Social Plugin\" frameborder=\"0\" allowtransparency=\"true\" allowfullscreen=\"true\" scrolling=\"no\" allow=\"encrypted-media\" src=\"https://www.facebook.com/v12.0/plugins/comments.php?app_id=758858248035371&channel=https%3A%2F%2Fstaticxx.facebook.com%2Fx%2Fconnect%2Fxd_arbiter%2F%3Fversion%3D46%23cb%3Df94d71f19346cf06f%26domain%3Dwww.dhakatribune.com%26is_canvas%3Dfalse%26origin%3Dhttps%253A%252F%252Fwww.dhakatribune.com%252Ff74d878b533079de4%26relation%3Dparent.parent&container_width=770&height=100&href=https%3A%2F%2Fwww.dhakatribune.com%2Fbangladesh%2F368753%2Fyouth-policy-summit-2024-tackles-education&locale=en_US&numposts=5&sdk=joey&version=v12.0&width=770\" class=\"\" style=\"padding: 0px; margin: 0px; outline: 0px; position: relative; max-width: 100%; min-width: 220px; border-width: initial; border-style: none; visibility: visible; width: 770px; height: 199px;\"></iframe></span></div>', '15,17,51,14,13,16,23', '676cedfa9432d.jpg', '676cedfab819a.webp', 1, '2024-12-25 23:47:38', '2024-12-25 23:47:51'),
(5, 1, 4, 5, 'Bangladesh grouped with India, Pakistan and NZ in Champions Trophy', 'bangladesh-grouped-with-india,-pakistan-and-nz-in-champions-trophy-125164', '<h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; line-height: 3rem;\"><span style=\"background-color: rgb(206, 231, 247);\">Bangladesh grouped with India, Pakistan and NZ in Champions Trophy,</span></h1><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; line-height: 3rem;\"><span style=\"background-color: rgb(206, 231, 247);\"><br></span></h1><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; line-height: 3rem;\"><div class=\"content_detail_small_width1\" style=\"padding: 0px; margin: 0px; outline: 0px; color: rgb(51, 51, 51); font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi; font-size: 14px; font-weight: 400;\"><div class=\"content_detail_small_width_inner1\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"content_highlights jw_detail_content_holder content mb16\" style=\"padding: 0px 0px 20px; margin: 0px 0px 16px; outline: 0px; border-bottom: 1px solid rgb(226, 226, 226); font-size: 1.35rem; line-height: 1.875rem; color: rgb(0, 0, 0); overflow-wrap: break-word; font-family: times, serif;\"><p style=\"padding: 0px; margin-right: 0px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word; font-size: 1.4375rem; font-family: serif; line-height: 1.875rem;\">Bangladesh have been pitted in Pool A along with New Zealand and sub-continent rivals India and Pakistan while Group B features Afghanistan and South Africa alongside Ashes rivals Australia and England</p></div><div class=\"additional_info_container \" style=\"padding: 10px 0px 0px; margin: 0px 0px 30px; outline: 0px; overflow: hidden;\"><div class=\"additional_info_container_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"social_share_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; left: 308px; bottom: 106px;\"><div class=\"social_shares roundicons do_not_print\" data-show=\"copy,facebook,messenger,twitter,viber,whatsapp,linkedin,pinterest,print\" data-hide=\"\" style=\"padding: 0px; margin: 0px 4px 10px 0px; outline: 0px; display: inline-block; position: relative;\"><a class=\"share_platform_copy jadeshare\" title=\"https://www.dhakatribune.com/369041\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; position: relative;\"><span class=\"c\" style=\"padding: 0px; margin: 0px; outline: 0px; text-indent: -9999px; position: absolute; opacity: 0;\">https://www.dhakatribune.com/369041</span><span class=\"icon icon_link\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(232, 197, 80) !important; color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_facebook jadeshare\" title=\"Facebook\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_facebook\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(59, 89, 152); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_messenger jadeshare\" title=\"Messenger\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_messenger\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(218, 218, 209); color: rgb(0, 0, 0); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_twitter jadeshare\" title=\"Twitter\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_twitter\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(30, 190, 240); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_viber jadeshare\" title=\"Viber\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; display: inline-block;\"><span class=\"icon icon_viber\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(125, 81, 160); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_whatsapp jadeshare\" title=\"Whatsapp\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; display: inline-block;\"><span class=\"icon icon_whatsapp\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(37, 211, 102); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_linkedin jadeshare\" title=\"Linkedin\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_linkedin\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(0, 119, 181); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_pinterest jadeshare\" title=\"Pinterest\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_pinterest\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(189, 8, 28); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_print jadeshare\" title=\"Print\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_print\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(218, 218, 209); color: rgb(0, 0, 0); border-radius: 50%; display: inline-block; text-align: center;\"></span></a></div><div class=\"mobile_share_pop_icon\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></div></div></div></div></div></div><div class=\"featured_image_outer\" style=\"padding: 0px; margin: 0px; outline: 0px; text-align: center; color: rgb(51, 51, 51); font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi; font-size: 14px; font-weight: 400;\"><div class=\"featured_image\" style=\"padding: 0px; margin: 0px auto; outline: 0px; overflow: hidden; max-width: 1280px; text-align: left; width: 810px;\"><span class=\"jwImgWrap\" style=\"padding: 0px 0px 455.625px; margin: 0px; outline: 0px; display: block; background-image: url("images/default_thumbnail_800x450.png"); background-position: center center; background-size: contain; background-repeat: no-repeat; background-attachment: initial; background-origin: initial; background-clip: initial; overflow: hidden; position: relative; height: 0px;\"><a class=\"jw_media_holder media_image alignfull pop-media-holder pop-active\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; text-align: justify; position: relative; max-width: 100%; display: block; clear: both; width: 810px; background: rgb(240, 240, 237) !important;\"><img alt=\"Bangladesh players celebrate\" src=\"https://ecdn.dhakatribune.net/contents/cache/images/900x505x1/uploads/media/2024/12/16/Tigers-1203adf049f64c2a96d3b3c365879e8d.jpg?jadewits_media_id=35700\" style=\"padding: 0px; margin: 0px; outline: 0px; border-width: 0px; border-color: initial; border-image: initial; max-width: 100%; display: block; width: 810px; min-width: auto !important;\"></a></span><div class=\"jw_media_caption\" style=\"padding: 0px; margin: 0px; outline: 0px; color: rgb(102, 102, 102); line-height: 22px;\">Bangladesh players celebrate</div></div></div><div class=\"content_detail_small_width\" style=\"padding: 0px; margin: 0px; outline: 0px; text-align: center; color: rgb(51, 51, 51); font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi; font-size: 14px; font-weight: 400;\"><div class=\"content_detail_small_width_inner\" style=\"padding: 0px; margin: 0px auto; outline: 0px; max-width: 770px; text-align: left;\"><div class=\"additional_info_container \" style=\"padding: 10px 0px 0px; margin: 0px 0px 30px; outline: 0px; overflow: hidden;\"><div class=\"additional_info_container_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"each_row author_n_share\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden;\"><div class=\"author authors\" style=\"padding: 0px; margin: 0px; outline: 0px; line-height: 34px; overflow: hidden;\"><div class=\"each_author\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><a class=\"pro_pic\" itemprop=\"url\" target=\"_blank\" href=\"https://www.dhakatribune.com/author/tribune-report\" style=\"padding: 0px; margin: 0px 10px 0px 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; display: block; float: left;\"><img src=\"https://www.dhakatribune.com/profile/1080/picture/\" alt=\"Tribune Report\" style=\"padding: 0px; margin: 0px auto; outline: 0px; border-width: 0px; border-color: initial; border-image: initial; max-width: 100%; display: block; height: 32px; border-radius: 50%;\"></a><span itemprop=\"author\" itemscope=\"\" itemtype=\"http://schema.org/Person\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><span itemprop=\"name\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><a itemprop=\"url\" class=\"name\" target=\"_blank\" href=\"https://www.dhakatribune.com/author/tribune-report\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(41, 41, 41); cursor: pointer; font-size: 15px; line-height: 32px; font-weight: 600;\">Tribune Report</a></span></span></div></div></div><div class=\"each_row time\" style=\"padding: 0px; margin: 0px; outline: 0px; color: rgb(0, 0, 0); font-size: 18px; line-height: 20px !important; border-bottom: 0px none;\"><span class=\"tts_time published_time\" itemprop=\"datePublished\" content=\"2024-12-24T20:09:12+06:00\" style=\"padding: 0px 10px 0px 0px; margin: 0px 10px 0px 0px; outline: 0px; display: inline-block; position: relative;\">Publish : 24 Dec 2024, 08:09 PM</span><span class=\"modified_time\" itemprop=\"dateModified\" content=\"2024-12-24T20:19:32+06:00\" style=\"padding: 0px; margin: 0px; outline: 0px; display: inline-block;\">Update : 24 Dec 2024, 08:19 PM</span><span class=\"tts_read_btn\" style=\"padding: 0px; margin: 0px; outline: 0px; float: right; display: inline-block;\"><a class=\"action icon-play\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(196, 22, 28); cursor: pointer; font-size: 24px; float: right;\"></a></span></div></div></div><div class=\"detail_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"content_detail_content_outer\" style=\"padding: 0px; margin: 0px; outline: 0px; text-align: center;\"><div class=\"content_detail_content_inner\" style=\"padding: 0px; margin: 0px auto; outline: 0px; text-align: left;\"><article class=\"jw_detail_content_holder jw_detail_content_body content mb16\" style=\"padding: 0px; margin: 0px 0px 16px; outline: 0px; font-size: 1.35rem; line-height: 1.875rem; color: rgb(0, 0, 0); overflow-wrap: break-word; font-family: times, serif;\"><div itemprop=\"articleBody\" class=\"viewport jw_article_body\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden;\"><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Bangladesh have been pitted in Pool A along with New Zealand and sub-continent rivals India and Pakistan as the long-awaited groupings and fixtures of the 2025 Champions Trophy were announced by the International Cricket Council Tuesday.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Group B features Afghanistan and South Africa alongside Ashes rivals Australia and England.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">In the tournament’s ninth edition set to take place over 19 days in Pakistan and the United Arab Emirates in February-March, the Tigers will begin their campaign in Dubai against the Indians on February 20.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The men in red and green will then travel to Pakistan to take on the Kiwis and the hosts in Rawalpindi, slated for February 24 and 27 respectively.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Group B begins on February 21, with the Afghans squaring up against the Proteas in Karachi, said the ICC website.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">A big weekend then kicks off with England and Australia set to clash in Lahore Saturday (February 22), with the much-anticipated Pakistan-India clash set for the day later.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The eight-team tournament will feature 15 matches.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">In Pakistan, Rawalpindi, Lahore, and Karachi will be the three venues to host tournament play.</p><div id=\"div-ub-dhakatribune.com_1707389311788\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden;\"></div><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Each Pakistan venue will feature three group games apiece, with Lahore hosting the second semi-final. Lahore will also host the final on March 9, unless India qualify, in which case it will be played in Dubai. </p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Both the semi-finals and the final will have reserve days.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The three group matches involving India, as well as the first semi-final, will be played in Dubai.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The eight sides in the Champions Trophy competing for the famous white winners’ jackets are the teams that finished in the top eight positions on the points table of the ICC Men’s Cricket World Cup 2023.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\"><strong style=\"padding: 0px; margin: 0px; outline: 0px;\">Groups:</strong></p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Pool A - Pakistan, India, New Zealand, Bangladesh</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Pool B - South Africa, Australia, Afghanistan, England</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\"><strong style=\"padding: 0px; margin: 0px; outline: 0px;\">Schedule:</strong></p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 19, Pakistan v New Zealand, Karachi, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 20, Bangladesh v India, Dubai</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 21, Afghanistan v South Africa, Karachi, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 22, Australia v England, Lahore, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 23, Pakistan v India, Dubai</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 24, Bangladesh v New Zealand, Rawalpindi, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 25, Australia v South Africa, Rawalpindi, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 26, Afghanistan v England, Lahore, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 27, Pakistan v Bangladesh, Rawalpindi, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">February 28, Afghanistan v Australia, Lahore, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">March 1, South Africa v England, Karachi, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">March 2, New Zealand v India, Dubai</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">March 4, Semi-final 1, Dubai</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">March 5, Semi-final 2, Lahore, Pakistan</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">March 9, Final, Lahore (unless India qualify, when it will be played in Dubai)</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">March 10, Reserve day</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\"><br></p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\"><span style=\"font-family: serif; font-size: 20.125px;\">Rising star Saim Ayub hit his 2nd century of the series - and his 3rd in 5 innings - as Pakistan completed a series cleansweep over South Africa in the 3rd ODI at Wanderers Stadium Sunday</span></p></div></article></div></div></div></div></div></h1>', '30,12,21,20,3,49', '676cef4935b51.webp', '676cef4965b9c.webp', 1, '2024-12-25 23:53:13', '2024-12-25 23:53:33');
INSERT INTO `posts` (`id`, `author_id`, `category_id`, `read_time`, `title`, `slug`, `desp`, `tags`, `preview`, `thumbnail`, `status`, `created_at`, `updated_at`) VALUES
(6, 2, 5, 3, 'Chinese business delegation expresses interest in investing in Bangladesh’s renewable energy sector', 'chinese-business-delegation-expresses-interest-in-investing-in-bangladesh’s-renewable-energy-sector-166990', '<h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><span style=\"background-color: rgb(16, 74, 90);\">Chinese business delegation expresses interest in investing in Bangladesh’s renewable energy sector</span></h1><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><span style=\"background-color: rgb(16, 74, 90);\"><br></span></h1><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><div id=\"widget_564\" class=\"widget_color_ widget_wrap\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400;\"><div class=\"detail_widget2 widget\" style=\"padding: 0px; margin: 0px 30px 0px 0px; outline: 0px;\"><div class=\"content_detail_each_group content_item_number0\" style=\"padding: 0px; margin: 0px; outline: 0px; min-height: 300px;\"><div class=\"content_detail_wraper jw_content_detail_each \" data-tv=\"135\" data-jwitemdata=\"{"title":"Chinese business delegation expresses interest in investing in Bangladesh\\u2019s renewable energy sector","url":"https:\\/\\/www.dhakatribune.com\\/bangladesh\\/power-energy\\/368928\\/chinese-business-delegation-expresses-interest-in","meta_key":"","meta_description":"A high-level business delegation from China visited the Bangladesh Investment Development Authority (BIDA) and the Bangladesh Economic Zones Authority (BEZA) to explore investment opportunities in Bangladesh&amp;rsquo;s growing renewable energy sector. The meeting held at the...","meta_url":"https:\\/\\/www.dhakatribune.com\\/368928","meta_image":"\\/\\/ecdn.dhakatribune.net\\/contents\\/cache\\/images\\/600x315x1xxxxx1\\/uploads\\/media\\/2023\\/08\\/05\\/unnamed-1543664750330-b0730a181fed83a71dd3183fd9f557b6.jpeg?jadewits_media_id=576"}\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"content_detail_outer\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"content_detail_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div itemscope=\"\" itemtype=\"http://schema.org/NewsArticle\" class=\" content_detail detail\" data-tv=\"135\" style=\"padding: 0px; margin: 0px; outline: 0px; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; position: relative;\"><div class=\"row detail_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 810px; clear: both; position: relative;\"><div class=\"col\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 810px; display: flex;\"><div class=\"col_in\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 810px;\"><div class=\"content_detail_small_width\" style=\"padding: 0px; margin: 0px; outline: 0px; text-align: center;\"><div class=\"content_detail_small_width_inner\" style=\"padding: 0px; margin: 0px auto; outline: 0px; max-width: 770px; text-align: left;\"><div class=\"detail_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"content_detail_content_outer\" style=\"padding: 0px; margin: 0px; outline: 0px; text-align: center;\"><div class=\"content_detail_content_inner\" style=\"padding: 0px; margin: 0px auto; outline: 0px; text-align: left;\"><article class=\"jw_detail_content_holder jw_detail_content_body content mb16\" style=\"padding: 0px; margin: 0px 0px 16px; outline: 0px; font-size: 1.35rem; line-height: 1.875rem; color: rgb(0, 0, 0); overflow-wrap: break-word; font-family: times, serif;\"><div itemprop=\"articleBody\" class=\"viewport jw_article_body\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden;\"><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">A high-level business delegation from China visited the Bangladesh Investment Development Authority (BIDA) and the Bangladesh Economic Zones Authority (BEZA) to explore investment opportunities in Bangladesh’s growing renewable energy sector.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The meeting held at the BIDA Conference Room was chaired by Chowdhury Ashik Mahmud Bin Harun, executive chairman of BIDA and BEZA, on Sunday.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">During the session, the Chinese delegation, comprising representatives from major renewable energy companies such as LONGi Green Energy Technology Co, Ltd, Tongwei co ltd and Yunnan Show, presented their advanced technologies and successful international projects.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">These companies expressed strong interest in investing in Bangladesh to support the country’s renewable energy goals, particularly in solar energy.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The delegation was welcomed by Ashik Chowdhury, who also highlighted Bangladesh\'s enormous potential for foreign investments renewable energy.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">He emphasized the government\'s commitment to creating a favourable investment climate, offering significant benefits such as tax holidays, duty-free imports, and a skilled workforce.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Ashik Chowdhury further assured the Chinese investors that BIDA and BEZA are fully prepared to provide comprehensive support, making Bangladesh a prime destination for investment.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Nahian Rahman Rochi, head of Business Development at BIDA, elaborated on Bangladesh’s unique value proposition as an investment destination during his presentation, particularly for renewable energy.</p><div id=\"div-ub-dhakatribune.com_1707389311788\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden;\"></div><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">He emphasized the surging local demand for renewable energy, the advantages of manufacturing in Bangladesh, and the potential for high returns on investment.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Nahian noted the several government initiatives are underway to promote the use of solar energy by industries, with a special focus on rooftop solar systems.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">During his presentation, Nahian also highlighted the several reform initiatives taken by BIDA to improve the investment climate. With Bangladesh’s ambitious goal to achieve 40% renewable energy by 2040, Nahian emphasised the importance of the local market, which is driven by the country’s 170 million population.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">He urged investors to focus on this growing market and submit investment proposals, noting that BIDA, BEZA, and other government agencies will continue to provide support to ensure the success of such ventures.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">Wang Feng from the Chinese delegation mentioned: “We are willing to fully understand Bangladesh\'s market demand, investment policies, cooperation methods and other aspects in the field of power and energy, and are willing to discuss the fields, prospects and potential of future cooperation between Yunnan and Bangladesh, even China and Bangladesh.”</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The meeting ended with a multi-stakeholder networking session, where representatives from local solar energy players, commercial banks, law firms, and international industries gathered to explore potential collaborations.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">The discussions are expected to further strengthen economic ties between Bangladesh and China, particularly in the renewable energy sector.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; outline: 0px; overflow: hidden; overflow-wrap: break-word;\">This visit shows Bangladesh’s growing attractiveness as a destination for global investment, underlining the government\'s commitment to fostering long-term partnerships and advancing the country’s renewable energy ambitions.</p></div></article><div class=\"social_share_holder\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"social_shares roundicons do_not_print\" data-show=\"copy,facebook,messenger,twitter,viber,whatsapp,linkedin,pinterest,print\" data-hide=\"\" style=\"padding: 0px; margin: 0px 4px 10px 0px; outline: 0px; display: inline-block; position: relative;\"><a class=\"share_platform_copy jadeshare\" title=\"https://www.dhakatribune.com/368928\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; position: relative;\"><span class=\"c\" style=\"padding: 0px; margin: 0px; outline: 0px; text-indent: -9999px; position: absolute; opacity: 0;\">https://www.dhakatribune.com/368928</span><span class=\"icon icon_link\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(232, 197, 80) !important; color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_facebook jadeshare\" title=\"Facebook\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_facebook\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(59, 89, 152); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_messenger jadeshare\" title=\"Messenger\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_messenger\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(218, 218, 209); color: rgb(0, 0, 0); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_twitter jadeshare\" title=\"Twitter\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_twitter\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(30, 190, 240); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_viber jadeshare\" title=\"Viber\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; display: inline-block;\"><span class=\"icon icon_viber\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(125, 81, 160); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_whatsapp jadeshare\" title=\"Whatsapp\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer; display: inline-block;\"><span class=\"icon icon_whatsapp\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(37, 211, 102); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_linkedin jadeshare\" title=\"Linkedin\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_linkedin\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(0, 119, 181); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_pinterest jadeshare\" title=\"Pinterest\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_pinterest\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(189, 8, 28); color: rgb(255, 255, 255); border-radius: 50%; display: inline-block; text-align: center;\"></span></a><a class=\"share_platform_print jadeshare\" title=\"Print\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(30, 136, 229); cursor: pointer;\"><span class=\"icon icon_print\" style=\"padding: 0px; margin: 0px 4px 4px 0px; outline: 0px; width: 32px; height: 32px; font-size: 20px; line-height: 32px; background: rgb(218, 218, 209); color: rgb(0, 0, 0); border-radius: 50%; display: inline-block; text-align: center;\"></span></a></div></div><div class=\"more_and_tag\" style=\"padding: 20px 0px 0px; margin: 20px 0px 10px; outline: 0px; line-height: 24px; overflow: hidden; border-top: 1px solid rgb(226, 226, 226);\"><div class=\"content_tags\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"topic_list\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><a href=\"https://www.dhakatribune.com/topic/beza\" style=\"padding: 2px 5px; margin: 0px 10px 10px 0px; outline: none; color: rgb(114, 110, 110); cursor: pointer; border: 1px solid rgb(211, 211, 211); border-radius: 5px; display: inline-block;\"><span style=\"padding: 0px; margin: 0px; outline: 0px;\">BEZA</span></a><a href=\"https://www.dhakatribune.com/topic/bida\" style=\"padding: 2px 5px; margin: 0px 10px 10px 0px; outline: none; color: rgb(114, 110, 110); cursor: pointer; border: 1px solid rgb(211, 211, 211); border-radius: 5px; display: inline-block;\"><span style=\"padding: 0px; margin: 0px; outline: 0px;\">BIDA</span></a><a href=\"https://www.dhakatribune.com/topic/renewable-energy\" style=\"padding: 2px 5px; margin: 0px 10px 10px 0px; outline: none; color: rgb(114, 110, 110); cursor: pointer; border: 1px solid rgb(211, 211, 211); border-radius: 5px; display: inline-block;\"><span style=\"padding: 0px; margin: 0px; outline: 0px;\">Renewable energy</span></a></div></div></div><div class=\"fb-comments fb_iframe_widget fb_iframe_widget_fluid_desktop\" data-href=\"https://www.dhakatribune.com/bangladesh/power-energy/368928/chinese-business-delegation-expresses-interest-in\" data-numposts=\"5\" fb-xfbml-state=\"rendered\" fb-iframe-plugin-query=\"app_id=758858248035371&container_width=0&height=100&href=https%3A%2F%2Fwww.dhakatribune.com%2Fbangladesh%2Fpower-energy%2F368928%2Fchinese-business-delegation-expresses-interest-in&locale=en_US&numposts=5&sdk=joey&version=v12.0&width=770\" data-width=\"770\" style=\"padding: 0px; margin: 0px; outline: 0px; display: inline-block; position: relative; max-width: 100%;\"><span style=\"padding: 0px; margin: 0px; outline: 0px; display: inline-block; position: relative; text-align: justify; max-width: 100%; vertical-align: bottom; width: 770px; height: 199px;\"><iframe name=\"fa765f822cfb43d67\" width=\"770px\" height=\"100px\" data-testid=\"fb:comments Facebook Social Plugin\" title=\"fb:comments Facebook Social Plugin\" frameborder=\"0\" allowtransparency=\"true\" allowfullscreen=\"true\" scrolling=\"no\" allow=\"encrypted-media\" src=\"https://www.facebook.com/v12.0/plugins/comments.php?app_id=758858248035371&channel=https%3A%2F%2Fstaticxx.facebook.com%2Fx%2Fconnect%2Fxd_arbiter%2F%3Fversion%3D46%23cb%3Dfbb5d0218920a6deb%26domain%3Dwww.dhakatribune.com%26is_canvas%3Dfalse%26origin%3Dhttps%253A%252F%252Fwww.dhakatribune.com%252Ffaf73955a8b5feeaf%26relation%3Dparent.parent&container_width=0&height=100&href=https%3A%2F%2Fwww.dhakatribune.com%2Fbangladesh%2Fpower-energy%2F368928%2Fchinese-business-delegation-expresses-interest-in&locale=en_US&numposts=5&sdk=joey&version=v12.0&width=770\" class=\"\" style=\"padding: 0px; margin: 0px; outline: 0px; position: relative; max-width: 100%; min-width: 220px; border-width: initial; border-style: none; visibility: visible; width: 770px; height: 199px;\"></iframe></span></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div></div><div id=\"widget_713\" class=\"widget_color_ widget_wrap\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400;\"><div class=\"contents_listing widget\" style=\"padding: 0px; margin: 0px 30px 0px 0px; outline: 0px;\"><div class=\"titlebar \" style=\"padding: 0px; margin: 0px 0px 10px; outline: 0px; position: relative; font-size: 17px; line-height: 37px; border-bottom: 1px solid rgb(204, 204, 204); letter-spacing: 1.2px;\"><a href=\"https://www.dhakatribune.com/bangladesh\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(0, 0, 0); cursor: pointer; display: block; position: relative; text-transform: uppercase;\">Read More</a></div><div id=\"contents_713_ajax_container\" class=\"contents summery_view col_articles \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n column_view ncol_3 \r\n \" style=\"padding: 0px; margin: 0px -30px 0px 0px; outline: 0px;\"><div class=\"row\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; clear: both;\"><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"image\" style=\"padding: 0px; margin: 0px; outline: 0px; position: relative; overflow: hidden;\"><span class=\"jwImgWrap\" style=\"padding: 0px 0px 140.625px; margin: 0px; outline: 0px; display: block; background-image: url("images/default_thumbnail_800x450.png"); background-position: center center; background-size: contain; background-repeat: no-repeat; background-attachment: initial; background-origin: initial; background-clip: initial; overflow: hidden; position: relative; height: 0px;\"><img alt=\"File Photo of Elon Musk\" src=\"https://ecdn.dhakatribune.net/contents/cache/images/320x179x1/uploads/media/2023/08/06/000_33NW27Q-4f0087cbf16f9ca3236107c4433986d4.jpg?jadewits_media_id=630\" style=\"padding: 0px; margin: 0px; outline: 0px; max-width: 100%; display: block; width: 250px; float: left;\"></span><span class=\"content_type\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></span></div></div></div></div></div></div></div></h1><h2 class=\"title\" style=\"padding: 0px; margin-right: 0px; margin-left: 0px; outline: 0px; font-size: 16px; line-height: 20px; color: inherit; font-weight: 500; overflow-wrap: break-word; letter-spacing: 0.5px; display: inline;\"><a class=\"link_overlay\" title=\"Is Elon Musk coming to Bangladesh in April?\" href=\"https://www.dhakatribune.com/bangladesh/foreign-affairs/369092/elon-musk-expected-to-grace-bangladesh-s\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(33, 33, 33); cursor: pointer;\">Is Elon Musk coming to Bangladesh in April?</a></h2><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><div class=\"widget_color_ widget_wrap\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400;\"><div class=\"contents_listing widget\" style=\"padding: 0px; margin: 0px 30px 0px 0px; outline: 0px;\"><div class=\"contents summery_view col_articles \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n column_view ncol_3 \r\n \" style=\"padding: 0px; margin: 0px -30px 0px 0px; outline: 0px;\"><div class=\"row\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; clear: both;\"><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"info \" style=\"padding: 8px 0px 0px; margin: 0px; outline: 0px;\"><div class=\"info_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden; font-size: 16px; line-height: 20px; color: rgb(33, 33, 33); overflow-wrap: break-word; letter-spacing: 0.5px;\"><div class=\"tag_title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></div></div></div></div></div></div><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"image\" style=\"padding: 0px; margin: 0px; outline: 0px; position: relative; overflow: hidden;\"><span class=\"jwImgWrap\" style=\"padding: 0px 0px 140.625px; margin: 0px; outline: 0px; display: block; background-image: url("images/default_thumbnail_800x450.png"); background-position: center center; background-size: contain; background-repeat: no-repeat; background-attachment: initial; background-origin: initial; background-clip: initial; overflow: hidden; position: relative; height: 0px;\"><img alt=\"A view of the South Korean smart city Songdo. Photo: Collected\" src=\"https://ecdn.dhakatribune.net/contents/cache/images/320x179x1/uploads/media/2024/12/19/Songdo-South-Korea-37d34982205e778aafa444d4ef8ca663.jpg?jadewits_media_id=35912\" style=\"padding: 0px; margin: 0px; outline: 0px; max-width: 100%; display: block; width: 250px; float: left;\"></span><span class=\"content_type\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></span></div></div></div></div></div></div></div></h1><h2 class=\"title\" style=\"padding: 0px; margin-right: 0px; margin-left: 0px; outline: 0px; font-size: 16px; line-height: 20px; color: inherit; font-weight: 500; overflow-wrap: break-word; letter-spacing: 0.5px; display: inline;\"><a class=\"link_overlay\" title=\"Is a Korean-style smart city in the offing in Mirsharai?\" href=\"https://www.dhakatribune.com/bangladesh/foreign-affairs/368558/is-a-korean-style-smart-city-in-the-offing-in\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(33, 33, 33); cursor: pointer;\">Is a Korean-style smart city in the offing in Mirsharai?</a></h2><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><div class=\"widget_color_ widget_wrap\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400;\"><div class=\"contents_listing widget\" style=\"padding: 0px; margin: 0px 30px 0px 0px; outline: 0px;\"><div class=\"contents summery_view col_articles \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n column_view ncol_3 \r\n \" style=\"padding: 0px; margin: 0px -30px 0px 0px; outline: 0px;\"><div class=\"row\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; clear: both;\"><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"info \" style=\"padding: 8px 0px 0px; margin: 0px; outline: 0px;\"><div class=\"info_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden; font-size: 16px; line-height: 20px; color: rgb(33, 33, 33); overflow-wrap: break-word; letter-spacing: 0.5px;\"><div class=\"tag_title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></div></div></div></div></div></div><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"image\" style=\"padding: 0px; margin: 0px; outline: 0px; position: relative; overflow: hidden;\"><span class=\"jwImgWrap\" style=\"padding: 0px 0px 140.625px; margin: 0px; outline: 0px; display: block; background-image: url("images/default_thumbnail_800x450.png"); background-position: center center; background-size: contain; background-repeat: no-repeat; background-attachment: initial; background-origin: initial; background-clip: initial; overflow: hidden; position: relative; height: 0px;\"><img alt=\"File image of High Court. Photo: Dhaka Tribune\" src=\"https://ecdn.dhakatribune.net/contents/cache/images/320x179x1/uploads/media/2024/10/09/HighCourt_Opu-7c005c2900a5442f0c570d768a5f338e.jpg?jadewits_media_id=30708\" style=\"padding: 0px; margin: 0px; outline: 0px; max-width: 100%; display: block; width: 250px; float: left;\"></span><span class=\"content_type\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></span></div></div></div></div></div></div></div></h1><h2 class=\"title\" style=\"padding: 0px; margin-right: 0px; margin-left: 0px; outline: 0px; font-size: 16px; line-height: 20px; color: inherit; font-weight: 500; overflow-wrap: break-word; letter-spacing: 0.5px; display: inline;\"><a class=\"link_overlay\" title=\"High Court directs 6-month suspension on land allocation to BEZA at Sonadia Island\" href=\"https://www.dhakatribune.com/bangladesh/366338/high-court-suspends-beza-s-sonadia-island-land\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(33, 33, 33); cursor: pointer;\">High Court directs 6-month suspension on land allocation to BEZA at Sonadia Island</a></h2><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><div class=\"widget_color_ widget_wrap\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400;\"><div class=\"contents_listing widget\" style=\"padding: 0px; margin: 0px 30px 0px 0px; outline: 0px;\"><div class=\"contents summery_view col_articles \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n column_view ncol_3 \r\n \" style=\"padding: 0px; margin: 0px -30px 0px 0px; outline: 0px;\"><div class=\"row\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; clear: both;\"><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"info \" style=\"padding: 8px 0px 0px; margin: 0px; outline: 0px;\"><div class=\"info_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden; font-size: 16px; line-height: 20px; color: rgb(33, 33, 33); overflow-wrap: break-word; letter-spacing: 0.5px;\"><div class=\"tag_title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></div></div></div></div></div></div></div><div class=\"row\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; clear: both;\"><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"image\" style=\"padding: 0px; margin: 0px; outline: 0px; position: relative; overflow: hidden;\"><span class=\"jwImgWrap\" style=\"padding: 0px 0px 140.625px; margin: 0px; outline: 0px; display: block; background-image: url("images/default_thumbnail_800x450.png"); background-position: center center; background-size: contain; background-repeat: no-repeat; background-attachment: initial; background-origin: initial; background-clip: initial; overflow: hidden; position: relative; height: 0px;\"><img alt=\"Photo: BSS\" src=\"https://ecdn.dhakatribune.net/contents/cache/images/320x179x1/uploads/media/2024/11/22/Untitled-design-24-91ea7ef9c03e967239922b50e52df1a9.jpg?jadewits_media_id=34090\" style=\"padding: 0px; margin: 0px; outline: 0px; max-width: 100%; display: block; width: 250px; float: left;\"></span><span class=\"content_type\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></span></div></div></div></div></div></div></div></h1><h2 class=\"title\" style=\"padding: 0px; margin-right: 0px; margin-left: 0px; outline: 0px; font-size: 16px; line-height: 20px; color: inherit; font-weight: 500; overflow-wrap: break-word; letter-spacing: 0.5px; display: inline;\"><a class=\"link_overlay\" title=\"Energy Adviser: Govt to float tenders for renewable energy projects next week\" href=\"https://www.dhakatribune.com/bangladesh/power-energy/365943/energy-adviser-govt-to-float-tenders-for\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(33, 33, 33); cursor: pointer;\">Energy Adviser: Govt to float tenders for renewable energy projects next week</a></h2><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><div class=\"widget_color_ widget_wrap\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400;\"><div class=\"contents_listing widget\" style=\"padding: 0px; margin: 0px 30px 0px 0px; outline: 0px;\"><div class=\"contents summery_view col_articles \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n column_view ncol_3 \r\n \" style=\"padding: 0px; margin: 0px -30px 0px 0px; outline: 0px;\"><div class=\"row\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; clear: both;\"><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"info \" style=\"padding: 8px 0px 0px; margin: 0px; outline: 0px;\"><div class=\"info_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden; font-size: 16px; line-height: 20px; color: rgb(33, 33, 33); overflow-wrap: break-word; letter-spacing: 0.5px;\"><div class=\"tag_title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></div></div></div></div></div></div><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"image\" style=\"padding: 0px; margin: 0px; outline: 0px; position: relative; overflow: hidden;\"><span class=\"jwImgWrap\" style=\"padding: 0px 0px 140.625px; margin: 0px; outline: 0px; display: block; background-image: url("images/default_thumbnail_800x450.png"); background-position: center center; background-size: contain; background-repeat: no-repeat; background-attachment: initial; background-origin: initial; background-clip: initial; overflow: hidden; position: relative; height: 0px;\"><img alt=\"Photo: Courtesy\" src=\"https://ecdn.dhakatribune.net/contents/cache/images/320x179x1/uploads/media/2024/11/19/Climate-Talk-6ae2dddca9f0ddc448e61919116796bd.jpg?jadewits_media_id=33864\" style=\"padding: 0px; margin: 0px; outline: 0px; max-width: 100%; display: block; width: 250px; float: left;\"></span><span class=\"content_type\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></span></div></div></div></div></div></div></div></h1><h2 class=\"title\" style=\"padding: 0px; margin-right: 0px; margin-left: 0px; outline: 0px; font-size: 16px; line-height: 20px; color: inherit; font-weight: 500; overflow-wrap: break-word; letter-spacing: 0.5px; display: inline;\"><a class=\"link_overlay\" title=\"COP29: South Asia needs $625bn to triple renewable energy capacity by 2030\" href=\"https://www.dhakatribune.com/bangladesh/bangladesh-environment/365633/south-asia-needs-625-billion-to-triple-renewable\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(33, 33, 33); cursor: pointer;\">COP29: South Asia needs $625bn to triple renewable energy capacity by 2030</a></h2><h1 itemprop=\"headline\" class=\"title mb10\" style=\"padding: 0px; margin-right: 0px; margin-bottom: 10px; margin-left: 0px; outline: 0px; font-size: 2.5rem; line-height: 3rem; font-family: Roboto, sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, Vrinda, SolaimanLipi;\"><div class=\"widget_color_ widget_wrap\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; color: rgb(51, 51, 51); font-size: 14px; font-weight: 400;\"><div class=\"contents_listing widget\" style=\"padding: 0px; margin: 0px 30px 0px 0px; outline: 0px;\"><div class=\"contents summery_view col_articles \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n column_view ncol_3 \r\n \" style=\"padding: 0px; margin: 0px -30px 0px 0px; outline: 0px;\"><div class=\"row\" style=\"padding: 0px; margin: 0px; outline: 0px; width: 840px; clear: both;\"><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"info \" style=\"padding: 8px 0px 0px; margin: 0px; outline: 0px;\"><div class=\"info_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden; font-size: 16px; line-height: 20px; color: rgb(33, 33, 33); overflow-wrap: break-word; letter-spacing: 0.5px;\"><div class=\"tag_title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></div></div></div></div></div></div><div class=\"col col3\" style=\"padding: 0px; margin: 0px; outline: 0px; float: left; min-height: 1px; width: 280px; display: flex;\"><div class=\"each col_in \r\n has_image \r\n image_top \r\n content_capability_blog \r\n content_type_news \r\n responsive_image_hide_ \r\n \r\n \r\n \r\n \" style=\"padding: 0px; margin: 0px 30px 20px 0px; outline: 0px; width: 250px; position: relative; overflow: hidden;\"><div class=\"image\" style=\"padding: 0px; margin: 0px; outline: 0px; position: relative; overflow: hidden;\"><span class=\"jwImgWrap\" style=\"padding: 0px 0px 140.625px; margin: 0px; outline: 0px; display: block; background-image: url("images/default_thumbnail_800x450.png"); background-position: center center; background-size: contain; background-repeat: no-repeat; background-attachment: initial; background-origin: initial; background-clip: initial; overflow: hidden; position: relative; height: 0px;\"><img alt=\"Photo: BSS\" src=\"https://ecdn.dhakatribune.net/contents/cache/images/320x179x1/uploads/media/2024/11/19/Untitled-design-81-1035fb33cbcc14f783d62336b3f33f82.jpg?jadewits_media_id=33851\" style=\"padding: 0px; margin: 0px; outline: 0px; max-width: 100%; display: block; width: 250px; float: left;\"></span><span class=\"content_type\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></span></div><div class=\"info \" style=\"padding: 8px 0px 0px; margin: 0px; outline: 0px;\"><div class=\"info_inner\" style=\"padding: 0px; margin: 0px; outline: 0px;\"><div class=\"title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px; overflow: hidden; font-size: 16px; line-height: 20px; color: rgb(237, 28, 36); overflow-wrap: break-word; letter-spacing: 0.5px;\"><div class=\"tag_title_holder\" style=\"padding: 0px; margin: 0px; outline: 0px;\"></div></div></div></div></div></div></div></div></div></div></h1><h2 class=\"title\" style=\"padding: 0px; margin: 0px; outline: 0px; font-size: 16px; line-height: 20px; color: rgb(237, 28, 36); font-weight: 500; overflow-wrap: break-word; letter-spacing: 0.5px; display: inline; text-decoration: none;\"><a class=\"link_overlay\" title=\"Rizwana: Energy transition, climate financing key to Bangladesh\'s prosperity\" href=\"https://www.dhakatribune.com/bangladesh/bangladesh-environment/365619/rizwana-energy-transition-climate-financing-key\" style=\"padding: 0px; margin: 0px; outline: none; color: rgb(33, 33, 33); text-decoration: none; cursor: pointer;\">Rizwana: Energy transition, climate financing key to Bangladesh\'s prosperity</a></h2>', '24,2,11,3,16,12,10', '676cf95bc9f0d.webp', '676cf95c11fb6.webp', 1, '2024-12-26 00:36:12', '2024-12-26 00:36:39');
INSERT INTO `posts` (`id`, `author_id`, `category_id`, `read_time`, `title`, `slug`, `desp`, `tags`, `preview`, `thumbnail`, `status`, `created_at`, `updated_at`) VALUES
(7, 2, 6, 4, 'বাংলাদেশ শর্ট ফিল্ম ফোরামে বিভক্তি', 'বাংলাদেশ-শর্ট-ফিল্ম-ফোরামে-বিভক্তি-111413', '<h1 data-title-0=\"বাংলাদেশ শর্ট ফিল্ম ফোরামে বিভক্তি\" class=\"IiRps \" style=\"margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: var(--space1_6); padding-left: 0px; line-height: 1.4;\">বাংলাদেশ শর্ট ফিল্ম ফোরামে বিভক্তি</h1><p style=\"margin-right: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: var(--space1_6); padding-left: 0px; line-height: 1.4;\"><br></p><div class=\"VzzDZ\" style=\"font-family: Shurjo, "Siyam Rupali", Roboto, Arial, Helvetica, monospace; font-size: 18px;\"><div id=\"95ff1911-2d16-4416-81d2-89e4166f4bfb\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">১৭তম বাংলাদেশ আন্তর্জাতিক স্বল্পদৈর্ঘ্য ও মুক্ত চলচ্চিত্র উৎসব আয়োজনকে কেন্দ্র করে বাংলাদেশ শর্ট ফিল্ম ফোরামে বিভক্তি প্রকাশ্যে এসেছে।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">সংগঠনটি এক বিজ্ঞপ্তিতে জানায়, শুক্রবার বিকেল চারটায় শাহবাগের জাতীয় জাদুঘরের প্রধান মিলনায়তনে উৎসবের উদ্বোধন করবেন তথ্য ও সম্প্রচার মন্ত্রণালয়ের উপদেষ্টা মো. নাহিদ ইসলাম। উৎসব শেষ হবে ২৭ ডিসেম্বর।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">এ ঘোষণার পর বাংলাদেশ শর্ট ফিল্ম ফোরামের জ্যেষ্ঠ সদস্য নির্মাতা তানভীর মোকাম্মেল, মোরশেদুল ইসলাম এবং মানজারে হাসীন মুরাদ আলাদা সংবাদ বিজ্ঞপ্তিতে জানান, উৎসবটি স্থগিত করা হয়েছে।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">বিষয়টি নিয়ে বিভ্রান্তি তৈরি হলে গতকাল পাল্টা সংবাদ বিজ্ঞপ্তিতে বাংলাদেশ শর্ট ফিল্ম ফোরামের সভাপতি জহিরুল ইসলাম জানান, উৎসব চলবে।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">স্বল্পদৈর্ঘ্য ও মুক্ত চলচ্চিত্র উৎসবকে কেন্দ্র করে বাংলাদেশ শর্ট ফিল্ম ফোরামের দুই পক্ষের মতবিরোধ প্রকাশ্যে এল। একটি পক্ষে রয়েছেন বাংলাদেশ শর্ট ফিল্ম ফোরামের সভাপতি জহিরুল ইসলামসহ অন্যরা; অপর পক্ষে নির্মাতা তানভীর মোকাম্মেল, মোরশেদুল ইসলাম এবং মানজারে হাসীন মুরাদসহ অন্যরা।</p></div></div></div><div></div></div><div id=\"ff120eab-cdd1-46c3-95ea-c7d58631e6ee\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: 0px;\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\"><span style=\"font-weight: bolder;\">পাল্টাপাল্টি বিবৃতি</span></p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">গতকাল নির্মাতা তানভীর মোকাম্মেল, মোরশেদুল ইসলাম এবং মানজারে হাসীন মুরাদ সংবাদ বিজ্ঞপ্তিতে বলেছেন, ‘...কোনো কোনো মহলের অযাচিত হস্তক্ষেপের ফলে চলচ্চিত্র উৎসবটি তার নিজস্ব মূল্যবোধ ও চরিত্র হারাচ্ছে। এমন পরিস্থিতিতে বাংলাদেশ শর্ট ফিল্ম ফোরামের জরুরি সাধারণ সভায় সংখ্যাগরিষ্ঠ সদস্যদের সিদ্ধান্তক্রমে এ উৎসবটি আপাতত স্থগিত রাখার সিদ্ধান্ত গ্রহণ করা হয়েছে। ভবিষ্যতে অনুকূল পরিবেশে বাংলাদেশ শর্ট ফিল্ম ফোরামের নিজস্ব ঐতিহ্য ও স্বকীয়তা বজায় রেখে চলচ্চিত্র উৎসবটির আয়োজন করা হবে।’</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">উৎসব বর্জনের আহ্বান জানিয়ে তাঁরা লিখেছেন, ‘কেউ যদি এ উৎসবটি আয়োজনের চেষ্টা করে থাকে, তবে সে উৎসবটি বাংলাদেশ শর্ট ফিল্ম ফোরামের উৎসব হবে না। সে ক্ষেত্রে বাংলাদেশ শর্ট ফিল্ম ফোরামের সব সদস্যকে সে উৎসবটি বর্জন করার আহ্বান জানানো হচ্ছে। একই সঙ্গে আমরা এ দেশের জনগণ ও গণমাধ্যমকেও ওই চলচ্চিত্র উৎসবটিকে বয়কট করার আহ্বান জানাচ্ছি।’</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">নির্মাতা তানভীর মোকাম্মেল, মোরশেদুল ইসলাম এবং মানজারে হাসীন মুরাদের সংবাদ বিজ্ঞপ্তি প্রকাশ্যে আসার পর গতকালই বাংলাদেশ শর্ট ফিল্ম ফোরামের সভাপতি জহিরুল ইসলাম পাল্টা সংবাদ বিজ্ঞপ্তিতে জানান, ‘এই তিনজন নির্মাতা বাংলাদেশ শর্ট ফিল্ম ফোরামের প্রাচীনতম সদস্য হলেও বর্তমানে তাঁরা শর্ট ফিল্ম ফোরামের কোনো নির্বাহী দায়িত্বে নেই। শর্ট ফিল্ম ফোরামের প্যাড ব্যবহার করে এ ধরনের বিবৃতি বা উৎসব স্থগিত করার এখতিয়ার তাঁদের নেই। আমরা স্পষ্ট করে বলতে চাই যে উৎসব যথারীতি চলবে।’</p></div></div></div><div></div></div><div id=\"128f8607-b6d4-464d-8d21-7e440bce5422\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin-top: 0px; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">জহিরুল ইসলাম বলেন, ‘গণ-অভ্যুত্থান নিয়ে চলচ্চিত্র নির্মাতা তানভীর মোকাম্মেলের কটু মন্তব্য উৎসবকে সংকটে ফেলে। তিনি শুরুতে উৎসব কমিটির চেয়ারম্যানের দায়িত্বে ছিলেন। তানভীর মোকাম্মেল “নাগরিক” নামের ভারতীয় পত্রিকায় সাক্ষাৎকারে বলেছিলেন, ‘আপাতদৃষ্টে এটি ছিল ছাত্র-জনতার একটি আন্দোলন। কিন্তু নেপথ্যে তা ছিল শেখ হাসিনা সরকারের পতন ঘটানোর জন্য আমেরিকার সিআইএ ও পাকিস্তানের আইএসআই দ্বারা পরিকল্পিত, মার্কিন প্রশাসনের অর্থায়ন ও সহযোগিতায় জামায়াতে ইসলামী, হিযবুত তাহরীর এবং অন্যান্য ইসলামিক শক্তিগুলোর এক ইসলামি অভ্যুত্থান।”’</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">সংবাদ বিজ্ঞপ্তিতে বলা হয়, ‘তানভীর মোকাম্মেলের এই সাক্ষাৎকার প্রকাশের পর সরকারি–বেসরকারি সব মহলে, সামাজিক যোগাযোগমাধ্যমে ব্যাপক প্রতিক্রিয়া হয়। বাংলাদেশ শর্ট ফিল্ম ফোরামের অনেক সদস্যও এতে ক্ষুব্ধ হন। পরে নির্বাহী কমিটির সভায় তাঁর নেতৃত্বে গঠিত উৎসব কমিটি স্থগিত ও পরে বাতিল করা হয়। পরে ফোরামের একটি অংশ নানা টালবাহানা করে উৎসব বাতিল করার জন্য নির্বাহী কমিটি ও পুনর্গঠিত ফেস্টিভ্যাল কমিটিকে চাপ দিতে থাকে। এমনকি তারা এমনও বলেছে যে উৎসব আয়োজনে তাদের সমর্থন পাওয়া যাবে, যদি দুজন উপদেষ্টাকে উদ্বোধনী ও সমাপনী অনুষ্ঠান থেকে তাঁদের বাদ দেওয়া হয়।’</p></div></div></div></div><div id=\"89dfbf18-3c84-4774-a38b-4c394ccbe989\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">জহিরুল ইসলামের ভাষ্যে, ‘বিগত উৎসবগুলোতে তথ্য ও সংস্কৃতিমন্ত্রীদের নিয়ে উৎসব আয়োজন করলেও তাঁরা এ ধরনের প্রস্তাব দিয়ে জুলাই গণ-অভ্যুত্থানের ব্যাপারে তাঁদের অবস্থানকেই তুলে ধরেছেন। তাঁদের এ প্রস্তাব উৎসব আয়োজকদের কাছে অযৌক্তিক ও অগ্রহণযোগ্য ও স্ববিরোধী মনে হয়েছে। উৎসব টিম বরাবরের মতো হ্রাসকৃত ভাড়ায় মিলনায়তন পেয়েছে, সংস্কৃতি মন্ত্রণালয়ের অনুদান পেয়েছে এবং তথ্য ও সংস্কৃতি মন্ত্রণালয়ের কাছ থেকে সহযোগিতা পেয়েছে।’</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">বিষয়টি নিয়ে তানভীর মোকাম্মেলের বক্তব্য জানতে যোগাযোগের চেষ্টা করা হলে তাঁর ব্যবহৃত নম্বরটি বন্ধ পাওয়া গেছে। মোরশেদুল ইসলামের সঙ্গে যোগাযোগ করা হলে তিনি জানান, তিনি একটি বৈঠকে আছেন। বাকিদের সঙ্গে কথা বলার পরামর্শ দেন।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">এর আগে ২৩ নভেম্বর সৈয়দ ইমরান হোসেন কিরমানীকে উৎসব পরিচালকের দায়িত্বে দেওয়া হয়।</p></div></div></div></div><div id=\"d8152776-f62f-44d3-b4d3-db30f5302c7d\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\"><span style=\"font-weight: bolder;\">উৎসবে কী থাকছে</span></p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">শতাধিক দেশের ২৭৬ চলচ্চিত্র নিয়ে উৎসবটি আয়োজন করছে বাংলাদেশ শর্ট ফিল্ম ফোরাম।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">শুক্রবার বিকেল চারটায় শাহবাগের জাতীয় জাদুঘরের প্রধান মিলনায়তনে উৎসবের উদ্বোধন করবেন তথ্য ও সম্প্রচার মন্ত্রণালয়ের উপদেষ্টা মো. নাহিদ ইসলাম। উৎসব শেষ হবে ২৭ ডিসেম্বর।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">এবারের উৎসবটি জুলাই-আগস্ট অভ্যুথানে শহীদের প্রতি এবং শিল্পী এস এম সুলতানের জন্মশতবার্ষিকী উপলক্ষে উৎসর্গ করা হয়েছে।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">এবারের আসরের কান্ট্রি ফোকাস হিসেবে নির্বাচন করা হয়েছে ফিলিস্তিন। ২৫ ডিসেম্বর বেলা ৩টা থেকে বিকেল ৫টায় জাতীয় জাদুঘরের সুফিয়া কামাল মিলনায়তনে ফিলিস্তিনের আটটি ফিকশন চলচ্চিত্র প্রদর্শিত হবে।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">আঞ্চলিক ফোকাস হিসেবে আরব দেশগুলোকে নির্বাচিত করা হয়েছে। ২৬ ডিসেম্বর জাতীয় জাদুঘরের সিনেপ্লেক্স মিলনায়তনে বেলা ১১টা থেকে ১টা এবং বেলা ৩টা থেকে বিকেল ৫টা পর্যন্ত ৯টি ফিকশন ও একটি প্রামাণ্যচিত্র প্রদর্শিত হবে।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">জুলাই–আগস্ট অভ্যুত্থান নিয়ে নির্মিত চলচ্চিত্র ‘দ্য ড্রিম, দ্য ফাইট, দ্য ভিক্টরি’ প্রদর্শিত হবে ২৩ ডিসেম্বর। এর বাইরে একাধিক সেশন রয়েছে। এসব সেশনে নুরুল রাশেদ চৌধুরী, জহিরুল ইসলাম, রফিকুল আনোয়ার, তারেক আহমেদ, নাঈম মোহায়মেনসহ অনেকে উপস্থিত থাকবেন।</p></div></div></div><div></div></div><div id=\"787a279b-4c84-422b-abfc-fd37ed062aeb\"><div class=\"storyCard eyOoS\" style=\"--borderColor: var(--primaryColor); color: var(--black); font-size: var(--fs-13); margin: var(--space2_4) auto 0; max-width: 622px;\"><div class=\" \r\n story-element\" style=\"margin-bottom: var(--space1_6);\"><div class=\"story-element story-element-text\" style=\"margin: 0px auto; max-width: 622px; padding: 0px;\"><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">উদ্বোধনী অনুষ্ঠানে বিশেষ অতিথি হিসেবে উপস্থিত থাকবেন আলোকচিত্রী নাসির আলী মামুন। বিশেষ অতিথি হিসেবে আরও উপস্থিত থাকবেন কথাসাহিত্যিক এবং সিটি ব্যাংকের ব্যবস্থাপনা পরিচালক মাসরুর আরেফিন।</p><p style=\"font-family: var(--font-2); margin-right: 0px; margin-bottom: var(--space1_6); margin-left: 0px; padding: 0px; font-size: var(--fs-18); line-height: 1.7;\">২৭ ডিসেম্বর বিকেল পাঁচটায় জাতীয় জাদুঘরের প্রধান মিলনায়তনে সমাপনী ও পুরস্কার বিতরণী আয়োজন থাকবে। এতে প্রধান অতিথি হিসেবে উপস্থিত থাকবেন সংস্কৃতিবিষয়ক মন্ত্রণালয়ের উপদেষ্টা মোস্তফা সরয়ার ফারুকী। বিশেষ অতিথি হিসেবে উপস্থিত থাকবেন চিত্রশিল্পী ওয়াকিলুর রহমান ও সিটি ব্যাংকের চিফ ইকোনমিস্ট ও কান্ট্রি বিজনেস ম্যানেজার আশানুর রহমান।</p></div></div></div></div><div class=\"print-none oHRqW\" style=\"display: flex; margin: var(--space3_2) auto; padding: 0px; max-width: 622px;\"><a aria-label=\"Google News\" href=\"https://news.google.com/publications/CAAqBwgKMOfGlwswmfCuAw?hl=bn&gl=BD&ceid=BD%3Abn\" target=\"_blank\" rel=\"noreferrer\" style=\"color: inherit;\"><span class=\"Yd6p-\" style=\"float: left;\"><svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\" enable-background=\"new 0 0 24 24\" xml:space=\"preserve\" height=\"32px\" width=\"32px\" alt=\"Google News\"><path fill=\"#0C9D58\" d=\"M17.909,15.1c0,0.278-0.23,0.506-0.51,0.506H6.601c-0.281,0-0.51-0.228-0.51-0.506V4.506 C6.091,4.228,6.32,4,6.601,4h10.798c0.281,0,0.51,0.228,0.51,0.506L17.909,15.1L17.909,15.1z\"></path><path opacity=\"0.2\" fill=\"#004D40\" enable-background=\"new\" d=\"M17.909,6.723l-4.047-0.521l4.047,1.086V6.723z\"></path><path opacity=\"0.2\" fill=\"#004D40\" enable-background=\"new \" d=\"M12.195,4.552L6.067,7.289l6.773-2.465V4.817 C12.721,4.561,12.431,4.442,12.195,4.552z\"></path><path opacity=\"0.2\" fill=\"#FFFFFF\" enable-background=\"new\" d=\"M17.399,4H6.601c-0.281,0-0.51,0.228-0.51,0.506V4.62 c0-0.278,0.23-0.507,0.51-0.507h10.798c0.281,0,0.51,0.228,0.51,0.507V4.506C17.909,4.228,17.68,4,17.399,4z\"></path><path fill=\"#EA4335\" d=\"M8.711,14.774c-0.073,0.272,0.073,0.55,0.324,0.617l10.001,2.69c0.251,0.067,0.516-0.1,0.589-0.372 l2.356-8.793c0.073-0.272-0.073-0.55-0.324-0.617l-10.001-2.69c-0.251-0.067-0.516,0.1-0.589,0.372L8.711,14.774z\"></path><path opacity=\"0.2\" fill=\"#3E2723\" enable-background=\"new \" d=\"M19.727,12.054l0.526,3.196l-0.526,1.964V12.054z\"></path><path opacity=\"0.2\" fill=\"#3E2723\" enable-background=\"new\" d=\"M13.909,6.333l0.471,0.127l0.292,1.972L13.909,6.333z\"></path><path opacity=\"0.2\" fill=\"#FFFFFF\" enable-background=\"new\" d=\"M21.657,8.299l-10.001-2.69c-0.251-0.067-0.516,0.1-0.589,0.372 l-2.356,8.793c-0.004,0.015-0.005,0.03-0.008,0.044l2.338-8.726c0.073-0.272,0.338-0.44,0.589-0.372l10.001,2.69 c0.237,0.064,0.378,0.315,0.331,0.573l0.018-0.067C22.054,8.644,21.908,8.366,21.657,8.299z\"></path><path fill=\"#FFC107\" d=\"M16.588,13.692c0.096,0.265-0.025,0.554-0.269,0.643L5.766,18.175c-0.244,0.089-0.523-0.055-0.619-0.32 L2.033,9.302C1.937,9.037,2.058,8.748,2.302,8.659l10.554-3.841c0.244-0.089,0.523,0.055,0.619,0.32L16.588,13.692z\"></path><path opacity=\"0.2\" fill=\"#FFFFFF\" enable-background=\"new\" d=\"M2.073,9.409C1.977,9.145,2.098,8.856,2.342,8.767l10.554-3.841 c0.241-0.088,0.516,0.052,0.615,0.311l-0.036-0.1c-0.096-0.265-0.375-0.409-0.619-0.32L2.302,8.659 C2.058,8.748,1.937,9.037,2.033,9.302l3.114,8.554c0.001,0.003,0.003,0.005,0.004,0.008L2.073,9.409z\"></path><path fill=\"#4285F4\" d=\"M19.727,19.852c0,0.281-0.23,0.511-0.511,0.511H4.784c-0.281,0-0.511-0.23-0.511-0.511V8.943 c0-0.281,0.23-0.511,0.511-0.511h14.432c0.281,0,0.511,0.23,0.511,0.511V19.852z\"></path><path fill=\"#FFFFFF\" d=\"M16.972,12.75h-4.318v-1.136h4.318c0.125,0,0.227,0.102,0.227,0.227v0.682 C17.199,12.648,17.097,12.75,16.972,12.75z M16.972,17.068h-4.318v-1.136h4.318c0.125,0,0.227,0.102,0.227,0.227v0.682 C17.199,16.966,17.097,17.068,16.972,17.068z M17.653,14.909h-5v-1.136h5c0.125,0,0.227,0.102,0.227,0.227v0.682 C17.881,14.807,17.779,14.909,17.653,14.909z\"></path><path opacity=\"0.2\" fill=\"#1A237E\" enable-background=\"new\" d=\"M19.216,20.25H4.784c-0.281,0-0.511-0.23-0.511-0.511v0.114 c0,0.281,0.23,0.511,0.511,0.511h14.432c0.281,0,0.511-0.23,0.511-0.511v-0.114C19.727,20.02,19.497,20.25,19.216,20.25z\"></path><path opacity=\"0.2\" fill=\"#FFFFFF\" enable-background=\"new\" d=\"M4.784,8.545h14.432c0.281,0,0.511,0.23,0.511,0.511V8.943 c0-0.281-0.23-0.511-0.511-0.511H4.784c-0.281,0-0.511,0.23-0.511,0.511v0.114C4.273,8.776,4.503,8.545,4.784,8.545z\"></path><path fill=\"#FFFFFF\" d=\"M8.79,13.886v1.025h1.471c-0.122,0.624-0.67,1.077-1.471,1.077c-0.893,0-1.617-0.755-1.617-1.648 s0.724-1.648,1.617-1.648c0.402,0,0.762,0.138,1.046,0.409v0.001l0.778-0.778c-0.473-0.441-1.089-0.711-1.825-0.711 c-1.506,0-2.727,1.221-2.727,2.727s1.221,2.727,2.727,2.727c1.575,0,2.611-1.107,2.611-2.665c0-0.179-0.016-0.351-0.043-0.517H8.79z \"></path><path fill=\"#1A237E\" d=\"M8.818,14.911v0.114h1.443c0.011-0.037,0.02-0.075,0.028-0.114H8.818z\"></path><path fill=\"#1A237E\" d=\"M8.818,17.068c-1.487,0-2.696-1.19-2.726-2.67c0,0.019-0.002,0.038-0.002,0.057 c0,1.506,1.221,2.727,2.727,2.727c1.575,0,2.611-1.107,2.611-2.665c0-0.013-0.002-0.024-0.002-0.037 C11.394,15.997,10.367,17.068,8.818,17.068z M9.864,13.102c-0.284-0.271-0.644-0.409-1.046-0.409c-0.893,0-1.617,0.755-1.617,1.648 c0,0.019,0.002,0.038,0.003,0.057c0.03-0.868,0.74-1.591,1.614-1.591c0.402,0,0.762,0.138,1.046,0.409v0.001l0.835-0.835 c-0.019-0.018-0.041-0.035-0.061-0.052L9.864,13.102L9.864,13.102z\"></path><path opacity=\"0.2\" fill=\"#1A237E\" enable-background=\"new\" d=\"M17.199,12.636v-0.114c0,0.125-0.102,0.227-0.227,0.227h-4.318 v0.114h4.318C17.097,12.864,17.199,12.762,17.199,12.636z M16.972,17.068h-4.318v0.114h4.318c0.125,0,0.227-0.102,0.227-0.227 v-0.114C17.199,16.966,17.097,17.068,16.972,17.068z M17.653,14.909h-5v0.114h5c0.125,0,0.227-0.102,0.227-0.227v-0.113 C17.881,14.807,17.779,14.909,17.653,14.909z\"></path><radialGradient id=\"SVGID_25_\" cx=\"-270.3468\" cy=\"411.8614\" r=\"1\" gradientTransform=\"matrix(19.4497 0 0 -19.4497 5264.6719 8015.9062)\" gradientUnits=\"userSpaceOnUse\"></radialGradient><path fill=\"url(#SVGID_25_)\" d=\"M21.657,8.299l-3.748-1.008V4.506c0-0.278-0.23-0.506-0.51-0.506H6.601 c-0.281,0-0.51,0.228-0.51,0.506V7.28L2.302,8.659C2.058,8.748,1.937,9.037,2.033,9.302l2.239,6.153v4.397 c0,0.281,0.23,0.511,0.511,0.511h14.432c0.281,0,0.511-0.23,0.511-0.511v-2.525l2.254-8.412C22.054,8.644,21.908,8.366,21.657,8.299 z\"></path></svg></span><span class=\"ewmcu\" style=\"color: var(--lochmara-blue); float: left; font-weight: var(--bold); margin-left: var(--space0_8); margin-top: var(--space0_8); padding-bottom: var(--space0_2); width: auto;\">প্রথম আলোর খবর পেতে গুগল নিউজ চ্যানেল ফলো করুন</span></a></div></div><div class=\"print-tags PgnyR ogKee\" style=\"border-bottom: var(--border1-0_12); margin: 0 auto var(--space2_4); padding-bottom: var(--space2_4); max-width: 622px; font-family: Shurjo, "Siyam Rupali", Roboto, Arial, Helvetica, monospace; font-size: 18px;\"><div class=\"PW1Ve\" style=\"font-size: var(--fs-20);\"><a target=\"_self\" aria-label=\"বিশ্ব চলচ্চিত্র\" href=\"https://www.prothomalo.com/entertainment/world-cinema\" style=\"color: inherit;\"><span class=\"W54Io\" style=\"border-bottom: 2px solid; color: var(--lochmara-blue); font-weight: var(--bold); transition: all var(--trans-duration);\">বিশ্ব চলচ্চিত্র</span></a> থেকে আরও পড়ুন</div><ul class=\"tag-list print-none _1v2LU\" style=\"font-family: var(--font-2); margin-top: var(--space3_2); margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; list-style: none;\"><li class=\"_2ybCx\" style=\"font-size: var(--fs-16); line-height: 1.6; background-color: var(--fallback-image-bg); border-radius: 4px; display: inline-block; margin: 0 var(--space1_6) var(--space0_8) 0; transition: all var(--trans-duration);\"><a target=\"_self\" aria-label=\"সিনেমা\" data-topic-0=\"সিনেমা\" class=\"qB6iz \" href=\"https://www.prothomalo.com/topic/%E0%A6%B8%E0%A6%BF%E0%A6%A8%E0%A7%87%E0%A6%AE%E0%A6%BE\" style=\"color: var(--lochmara-blue); display: inline-block; font-size: var(--fs-16); padding: var(--space0_8) var(--space1_6);\">সিনেমা</a></li><li class=\"_2ybCx\" style=\"font-size: var(--fs-16); line-height: 1.6; background-color: var(--fallback-image-bg); border-radius: 4px; display: inline-block; margin: 0 var(--space1_6) var(--space0_8) 0; transition: all var(--trans-duration);\"><a target=\"_self\" aria-label=\"চলচ্চিত্র-উৎসব\" data-topic-0=\"চলচ্চিত্র উৎসব\" class=\"qB6iz \" href=\"https://www.prothomalo.com/topic/%E0%A6%9A%E0%A6%B2%E0%A6%9A%E0%A7%8D%E0%A6%9A%E0%A6%BF%E0%A6%A4%E0%A7%8D%E0%A6%B0-%E0%A6%89%E0%A7%8E%E0%A6%B8%E0%A6%AC\" style=\"color: var(--lochmara-blue); display: inline-block; font-size: var(--fs-16); padding: var(--space0_8) var(--space1_6);\">চলচ্চিত্র উৎসব</a></li></ul></div>', '27,19,13,30,28', '676cfac3724e1.webp', '676cfac3a3dcd.webp', 1, '2024-12-26 00:42:11', '2024-12-26 00:42:22'),
(8, 1, 7, 5, 'New Post: \"Exploring the Fascinating World of Black Holes\"', 'new-post:-\"exploring-the-fascinating-world-of-black-holes\"-145067', '<h3>New Post: <strong>\"Exploring the Fascinating World of Black Holes\"</strong></h3><hr><p><strong>Introduction</strong><br>Black holes have fascinated scientists and the general public alike for decades. These mysterious cosmic entities are more than just objects in space; they challenge our understanding of physics, gravity, and the universe itself.</p><hr><p><strong>What are Black Holes?</strong><br>A black hole is a region in space where the gravitational pull is so strong that not even light can escape from it. This occurs when a massive star collapses in on itself after exhausting its fuel, leading to a singularity at the center, surrounded by an event horizon—the point beyond which nothing can escape.</p><hr><p><strong>Types of Black Holes</strong><br>There are three main types of black holes:</p><ol><li><strong>Stellar Black Holes</strong>: Formed when massive stars collapse under their gravity after exhausting their nuclear fuel.</li><li><strong>Supermassive Black Holes</strong>: These can be millions or even billions of times more massive than the Sun. They are believed to exist at the center of most galaxies, including our own.</li><li><strong>Intermediate Black Holes</strong>: These black holes have a mass between stellar and supermassive black holes and are the subject of ongoing research.</li></ol><hr><p><strong>How Do We Detect Black Holes?</strong><br>While black holes cannot be seen directly, their presence can be inferred by observing the effects of their immense gravitational pull on nearby stars and light. Astronomers also use the concept of gravitational waves, which are ripples in spacetime caused by massive objects moving through space.</p><hr><p><strong>Recent Discoveries in Black Hole Research</strong><br>The Event Horizon Telescope (EHT) collaboration recently captured the first-ever image of a black hole\'s event horizon in 2019. Located at the center of the galaxy M87, this image revolutionized our understanding of black holes.</p><p>Additionally, the discovery of gravitational waves, first detected in 2015, opened up a new way to observe and study black holes by measuring the distortion of space and time caused by the collision of two black holes.</p><hr><p><strong>Conclusion</strong><br>Black holes remain one of the most mysterious and intriguing phenomena in space science. Ongoing research continues to push the boundaries of our understanding, bringing us closer to answering fundamental questions about the nature of the universe.</p><hr><p>Would you like to continue with this post, or would </p>', '13,31,49,46', '676cfccc436b4.jpg', '676cfccc793fd.jpg', 1, '2024-12-26 00:50:52', '2024-12-26 00:56:26'),
(9, 1, 8, 4, 'Flat Knitting Steiger showcases fashion and technology in Bangladesh', 'flat-knitting-steiger-showcases-fashion-and-technology-in-bangladesh-78987', '<p><br></p><h2 style=\"box-sizing: unset; margin-right: 0px; margin-bottom: -1px; margin-left: 0px; padding: 0px 0px 1px; border: 0px; vertical-align: baseline; line-height: 32px; font-size: 32px; color: rgb(145, 0, 72); font-family: "Publico Headline Web", Arial, sans-serif;\">F<span style=\"font-weight: normal;\">lat Knitting</span></h2><h1 style=\"box-sizing: unset; margin-right: 0px; margin-bottom: -1px; margin-left: 0px; padding: 0px 0px 1px; border: 0px; vertical-align: baseline; line-height: 32px; font-size: 32px; font-family: "Publico Headline Web", Arial, sans-serif; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2;\"><span style=\"font-weight: normal;\">Steiger showcases fashion and technology in Bangladesh</span></h1><h1 style=\"box-sizing: unset; margin-right: 0px; margin-bottom: -1px; margin-left: 0px; padding: 0px 0px 1px; border: 0px; vertical-align: baseline; line-height: 32px; font-size: 32px; font-family: "Publico Headline Web", Arial, sans-serif; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2;\"><span style=\"font-weight: normal;\"><br></span></h1><h2 style=\"box-sizing: unset; margin: 0px 0px -1px; padding: 0px 0px 1px; border: 0px; vertical-align: baseline; line-height: 32px; font-size: 32px; color: rgb(145, 0, 72);\">Flat Knitting</h2><h1 style=\"box-sizing: unset; margin: 0px 0px -1px; padding: 0px 0px 1px; border: 0px; vertical-align: baseline; text-transform: none; line-height: 32px; font-size: 32px; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2;\">Steiger showcases fashion and technology in Bangladesh</h1><h1 style=\"box-sizing: unset; margin-right: 0px; margin-bottom: -1px; margin-left: 0px; padding: 0px 0px 1px; border: 0px; vertical-align: baseline; line-height: 32px; font-size: 32px; font-family: "Publico Headline Web", Arial, sans-serif; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 2;\"><header class=\"article-header technology-and-application flat-knitting\" style=\"box-sizing: unset; margin: 0px; padding: 0px 0px 38px; border-width: 0px 0px 1px; border-style: solid; border-color: rgb(200, 201, 199); border-image: initial; vertical-align: baseline; display: grid; font-family: "Publico Text Web", Arial, sans-serif; font-size: 24px; line-height: 26px; width: 939.333px; grid-template-columns: 300px 1fr; column-gap: 10px; grid-area: heading; font-weight: 400;\"><div class=\"article-header-content\" style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; display: flex; font-family: "Publico Headline Web", Arial, sans-serif;\"><div style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: 32px;\"></div></div></header><section class=\"intro\" style=\"box-sizing: unset; margin: -10px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; grid-area: intro; font-family: "Publico Headline Web"; color: rgb(136, 139, 141); font-size: 22px; line-height: 24px;\"><p style=\"box-sizing: unset; margin-right: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; overflow: hidden; text-overflow: ellipsis; -webkit-box-orient: vertical; display: -webkit-box; -webkit-line-clamp: 3;\">Steiger and its Chinese partner Cixing hosts exclusive evening, bringing together 600 customers.</p><img src=\"https://www.knittingindustry.com/uploads/9206/1733385264011-544x408-boxed.jpeg\" class=\"lead-image\" title=\"© Steiger\" style=\"box-sizing: unset; margin: 20px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; max-height: 408px; display: block; max-width: 100%;\"><figcaption style=\"box-sizing: unset; margin: 0px; padding: 8px 0px; border-width: 0px 0px 1px; border-top-style: initial; border-right-style: initial; border-bottom-style: solid; border-left-style: initial; border-top-color: initial; border-right-color: initial; border-bottom-color: rgb(200, 201, 199); border-left-color: initial; border-image: initial; vertical-align: baseline; font-size: 16px; line-height: 19px; font-family: "Graphik Compact Web";\"><p class=\"copyright\" style=\"box-sizing: unset; margin-right: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; color: rgb(119, 119, 119); width: 314.667px;\">© Steiger</p></figcaption></section><section class=\"detail\" style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px solid rgb(200, 201, 199); vertical-align: baseline; grid-area: detail; font-family: "Graphik Compact Web", sans-serif; font-size: 18px;\"><p style=\"box-sizing: unset; margin-right: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: 15px;\">9th December 2024</p><p style=\"box-sizing: unset; margin-right: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: 15px;\"><span style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; display: unset;\">Knitting Industry</span><br class=\"no-display-mobile\" style=\"box-sizing: unset; display: block;\"><span style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; display: unset;\">Bangladesh</span></p><p class=\"tags no-display-mobile\" style=\"box-sizing: unset; margin-right: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: 15px; font-weight: normal;\"><a class=\"tag\" href=\"https://www.knittingindustry.com/knitwear\" style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; color: rgb(136, 139, 141); font-weight: bold;\">Knitwear</a></p></section><section class=\"body\" style=\"box-sizing: unset; margin: 9px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; grid-area: body; font-family: "Publico Text Web", Roman, serif; font-size: 18px; font-weight: 400;\"><p style=\"box-sizing: unset; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 24px;\">The textiles and clothing industries occupy a strategic place in Bangladesh\'s economy, contributing to more than 88% of total export earnings. The sector, a real economic engine, has been able to reinvent itself aiming to help improve living conditions, reduce poverty and promote gender equality across the country.</p><p style=\"box-sizing: unset; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 24px;\">However, the Bangladeshi textiles and clothing industries face major challenges - political stability, preventing social unrest, dealing with the shortage of skilled labour and competing with low-cost countries. To meet these challenges, textile and garment manufacturing companies are investing in sustainability, improved working conditions and the integration of advanced technologies in order to maintain their leading position in the global market.</p><p style=\"box-sizing: unset; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 24px;\">Against this backdrop, the Swiss flat knitting machine manufacturer Steiger and its Chinese partner Cixing recently organised an exclusive evening, bringing together 600 customers around a demonstration of machines capable of knitting items in 3D. The event was enriched by a fashion show showcasing creations designed and knitted in Cixing-Steiger Shanghai Design Center.</p><p style=\"box-sizing: unset; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 24px;\">“The successful evening of sharing marks an important step in strengthening the Cixing-Steiger presence in this strategic market,” Steiger CEO, Pierre-Yves Bonvin said.</p><div class=\"image-wide-with-caption\" style=\"box-sizing: unset; margin: 1em 0px; padding: 8px 0px; border-width: 1px 0px; border-style: solid; border-color: rgb(200, 201, 199); border-image: initial; vertical-align: baseline; font-weight: bold; color: rgb(145, 0, 72); font-family: "Graphik Compact Web", Arial, sans-serif;\"><p style=\"box-sizing: unset; margin-right: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 19px; font-size: 16px;\"><img alt=\"Pierre-Yves Bonvin, CEO, Steiger Participations SA. © Steiger\" class=\"fw-image\" src=\"https://www.knittingindustry.com/uploads/9206/1733385265185.jpeg\" title=\"Pierre-Yves Bonvin, CEO at Steiger. © Steiger\" style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; width: 629.333px;\"></p><p style=\"box-sizing: unset; margin-right: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 19px; font-size: 16px; width: 314.667px;\">Pierre-Yves Bonvin, CEO at Steiger.<br style=\"box-sizing: unset;\"><span class=\"copyright\" style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; color: rgb(119, 119, 119);\">© Steiger</span></p></div><p style=\"box-sizing: unset; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 24px;\">Steiger, founded in 1949, which is now part of the Cixing Group – the world’s largest manufacturer of flat knitting machines – celebrated its 70th anniversary in 2019 and is still manufacturing at its plant in Vionnaz, Switzerland, as well as in China.</p><p style=\"box-sizing: unset; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 24px;\">The company produces industrial flat knitting machines for three market segments - the fashion industry, the medical sector and technical knitting. At its factory in Vionnaz, Switzerland it produces machinery for the European market for the production of high-quality knitwear.</p><p style=\"box-sizing: unset; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 24px;\">At last year’s ITMA 2023 in Milan, <a href=\"https://www.knittingindustry.com/steiger-launches-four-needlebed-flat-knitting-machine/\" target=\"_blank\" style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; color: rgb(145, 0, 72);\">Steiger launched a brand new four needlebed computerised flat knitting machine</a> for the production of complete garment knitwear. The company showed the Chinese built Steiger branded four needlebed latch needle KS3-60MC-II machine in 18 gauge for the first time at the world’s leading textile machinery event, which attracted over 1700 exhibitors and 110,000 visitors.</p><p style=\"box-sizing: unset; margin-right: 0px; margin-bottom: 24px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; line-height: 24px;\"><a href=\"http://www.steiger-textil.ch/\" target=\"_blank\" style=\"box-sizing: unset; margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; color: rgb(145, 0, 72);\">www.steiger-textil.ch</a></p></section></h1>', '28,36,26', '676cfd536872f.jpg', '676cfd538fc83.jpg', 1, '2024-12-26 00:53:07', '2024-12-26 00:56:30'),
(10, 1, 10, 4, 'Fair competition foundation of a healthy market environment', 'fair-competition-foundation-of-a-healthy-market-environment-190371', '<h1 style=\"margin-right: 0px; margin-left: 0px; padding: 0px 0px 20px; font-size: 36px; font-family: "Times New Roman", Times, serif; line-height: 39px; color: rgb(22, 22, 22);\">Fair competition foundation of a healthy market environment</h1><h1 style=\"margin-right: 0px; margin-left: 0px; padding: 0px 0px 20px; font-size: 36px; font-family: "Times New Roman", Times, serif; font-weight: normal; line-height: 39px; color: rgb(22, 22, 22);\">Fair competition foundation of a healthy market environment</h1><h2 style=\"margin-right: 0px; margin-bottom: 10px; margin-left: 0px; padding: 0px 0px 10px; font-family: Arial, Helvetica, sans-serif; font-weight: lighter; line-height: 24px; color: rgb(22, 22, 22); font-size: 20px;\"></h2><div class=\"info\" style=\"overflow: hidden; margin-bottom: 30px; color: rgb(65, 64, 64); font-family: "Times New Roman", Times, serif; font-size: 18px;\"><span class=\"info_l\" style=\"float: left; font-size: 12px; font-family: Arial, Helvetica, sans-serif; color: rgb(102, 102, 102);\">China Daily | Updated: 2024-12-25 07:44</span><span class=\"info_r\" style=\"float: right;\"><a title=\"facebook\" target=\"_blank\" href=\"https://www.facebook.com/sharer.php?title=Fair%20competition%20foundation%20of%20a%20healthy%20market%20environment&u=https://www.chinadaily.com.cn/a/202412/25/WS676b4751a310f1265a1d4b50.html\" style=\"color: rgb(22, 22, 22); margin-right: 10px; display: block; float: left; cursor: pointer;\"><img src=\"https://www.chinadaily.com.cn/image_e/2020/facebook.png\" height=\"17px\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a title=\"twitter\" target=\"_blank\" href=\"https://twitter.com/share?text=Fair%20competition%20foundation%20of%20a%20healthy%20market%20environment&url=https://www.chinadaily.com.cn/a/202412/25/WS676b4751a310f1265a1d4b50.html\" style=\"color: rgb(22, 22, 22); margin-right: 10px; display: block; float: left; cursor: pointer;\"><img src=\"https://www.chinadaily.com.cn/image_e/2024/twitter.png\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a title=\"linkedin\" target=\"_blank\" href=\"http://www.linkedin.com/shareArticle?mini=true&title=Fair%20competition%20foundation%20of%20a%20healthy%20market%20environment&url=https://www.chinadaily.com.cn/a/202412/25/WS676b4751a310f1265a1d4b50.html\" style=\"color: rgb(22, 22, 22); margin-right: 10px; display: block; float: left; cursor: pointer;\"><img src=\"https://www.chinadaily.com.cn/image_e/2020/linkedin.png\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a title=\"More\" class=\"more\" style=\"color: rgb(0, 0, 0); margin-right: 10px; display: block; float: left; cursor: pointer;\"><img src=\"https://www.chinadaily.com.cn/image_e/2017/more_art.gif\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a></span></div><div id=\"Content\" style=\"color: rgb(65, 64, 64); font-family: "Times New Roman", Times, serif; font-size: 18px;\"><figure class=\"image\" style=\"display: table; margin-block: 0px; margin-inline: 0px; margin: 5px auto 20px; text-align: center; width: fit-content; max-width: 100%;\"><img src=\"https://img2.chinadaily.com.cn/images/202412/25/676b4751a310f1268d873456.jpeg\" data-from=\"newsroom\" data-mimetype=\"image/jpeg\" id=\"img-676b4751a310f1268d873456\" style=\"margin: 0px; padding: 0px; border: 0px; max-width: 100%; height: auto;\"><figcaption style=\"display: table-caption; font-size: 12pt; text-align: left; max-width: 100%; margin-bottom: 20px; width: 685px; line-height: 19.2px; caption-side: bottom;\">Photo taken on July 29, 2022, shows buildings on both sides of the Huangpu River in Shanghai. [Photo/VCG]</figcaption></figure><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px;\">China\'s top legislature recently deliberated a draft revision of the Anti-Unfair Competition Law. The law was promulgated in 1993 and has since been amended twice, in 2017 and in 2019. With the rapid development of the economy and the emergence of some new problems in its enforcement, the law badly needs improvements in order to check vicious competition among merchants using malpractices such as commercial bribery in trading activities, the use of data and algorithms to implement unfair competition and the use of extremely low prices to erode the long-term competitiveness of supply chains.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px;\">Accelerated legislation on market trading behavior will undoubtedly help regulate the market trading order while protecting the confidence of market entities. Compared with short-term policies, a long-term stable rule of law and institutional environment is more critical. For market players, that means there is a basis for laws to be followed.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px;\">The amendment of the Anti-Unfair Competition Law is also aimed at increasing the regulation of internet business activities. It is not rare for some enterprises to gain an undue advantage by manipulating search results, posting fake reviews and exaggerating transaction volumes. The revised draft stipulates that platform operators should clarify the rules of fair competition in the platform service agreement and trading rules, and take necessary measures to stop unfair competition behavior. Platform operators and merchants are also prohibited from using data, algorithms, technologies and platform rules to carry out malicious transactions.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px;\">The amendment of the Anti-Unfair Competition Law and other relevant laws to adapt them to the fast changing times is conducive to providing clear codes of conduct for market entities. By preventing and curbing unfair competition, resources will flow to the competitive enterprises, which will help improve the total factor productivity.</p><p style=\"padding: 0px; margin-right: 0px; margin-bottom: 20px; margin-left: 0px;\">As China further integrates into the global economic system, strengthening the construction of a better legal environment to regulate the order of market competition is also an important move to attract foreign investment and increase China\'s international competitiveness. A stable and predictable market-oriented and law-based business environment is the best way to deal with vicious competition and an important step to promote high-quality economic and social development.</p></div><div class=\"mb30\" style=\"margin-bottom: 30px; color: rgb(65, 64, 64); font-family: "Times New Roman", Times, serif; font-size: 18px; overflow: auto; clear: both;\"></div><div class=\"mb20 r-phototitle\" style=\"margin-bottom: 20px; color: rgb(65, 64, 64); font-family: "Times New Roman", Times, serif; font-size: 18px;\"><div class=\"bt2\" style=\"line-height: 17px; height: 17px; font-size: 14px; background: url("//www.chinadaily.com.cn/image_e/2016/sub/btBg.gif") center center repeat-x; margin-bottom: 15px; overflow: hidden;\"><span style=\"display: block; float: left; padding-right: 5px; color: rgb(0, 70, 121);\"><li style=\"list-style-type: none; padding: 0px; margin: 0px; border: 0px;\"><a href=\"https://www.chinadaily.com.cn/opinion/cartoon-index\" style=\"background-color: rgb(255, 255, 255); color: rgb(0, 70, 121); display: block; float: left; padding-right: 0px;\">Cartoons</a></li></span></div><div class=\"photo_art\" style=\"overflow: hidden;\"><div style=\"clear: both; overflow: auto;\"><div class=\"p_art\" style=\"width: 227px; border-right: 1px solid rgb(255, 255, 255); float: left; border-bottom: 1px solid rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/24/WS676a5f8da310f1265a1d4a55.html\" style=\"color: rgb(22, 22, 22);\"><img width=\"227\" height=\"158\" src=\"https://img2.chinadaily.com.cn/images/202412/24/676a5f8da310f1268d872f23.jpeg\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a class=\"t_art\" target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/24/WS676a5f8da310f1265a1d4a55.html\" style=\"background-color: rgb(246, 246, 246); color: rgb(22, 22, 22); display: block; border-top: 1px solid rgb(255, 255, 255); font-size: 16px; line-height: 19px; padding: 10px 10px 20px;\">Yiwu: A Belt and Road success story lauded by President Xi</a></div><div class=\"p_art\" style=\"width: 227px; border-right: 1px solid rgb(255, 255, 255); float: left; border-bottom: 1px solid rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/24/WS676a1183a310f1265a1d4930.html\" style=\"color: rgb(22, 22, 22);\"><img width=\"227\" height=\"158\" src=\"https://img2.chinadaily.com.cn/images/202412/24/676a721aa310f1268d87307a.jpeg\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a class=\"t_art\" target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/24/WS676a1183a310f1265a1d4930.html\" style=\"background-color: rgb(246, 246, 246); color: rgb(22, 22, 22); display: block; border-top: 1px solid rgb(255, 255, 255); font-size: 16px; line-height: 19px; padding: 10px 10px 20px;\">Year-Ender: China\'s path to win-win cooperation in 2024</a></div><div class=\"p_art\" style=\"width: 227px; border-right: 1px solid rgb(255, 255, 255); float: left; border-bottom: 1px solid rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/24/WS6769fc03a310f1265a1d4852.html\" style=\"color: rgb(22, 22, 22);\"><img width=\"227\" height=\"158\" src=\"https://img2.chinadaily.com.cn/images/202412/24/6769fc03a310f1268d8728f4.jpeg\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a class=\"t_art\" target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/24/WS6769fc03a310f1265a1d4852.html\" style=\"background-color: rgb(246, 246, 246); color: rgb(22, 22, 22); display: block; border-top: 1px solid rgb(255, 255, 255); font-size: 16px; line-height: 19px; padding: 10px 10px 20px;\">Intimate, busy bistros bite into nation\'s restaurant industry</a></div></div><div><div class=\"p_art\" style=\"width: 227px; border-right: 1px solid rgb(255, 255, 255); float: left; border-bottom: 1px solid rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/24/WS6769e6c0a310f1265a1d47ec.html\" style=\"color: rgb(22, 22, 22);\"><img width=\"227\" height=\"158\" src=\"https://img2.chinadaily.com.cn/images/202412/24/6769e6c0a310f1268d872710.jpeg\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a class=\"t_art\" target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/24/WS6769e6c0a310f1265a1d47ec.html\" style=\"background-color: rgb(246, 246, 246); color: rgb(22, 22, 22); display: block; border-top: 1px solid rgb(255, 255, 255); font-size: 16px; line-height: 19px; padding: 10px 10px 20px;\">Video: Feeling the pulse of global trade in Yiwu</a></div><div class=\"p_art\" style=\"width: 227px; border-right: 1px solid rgb(255, 255, 255); float: left; border-bottom: 1px solid rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/23/WS67692adaa310f1265a1d4771.html\" style=\"color: rgb(22, 22, 22);\"><img width=\"227\" height=\"158\" src=\"https://img2.chinadaily.com.cn/images/202412/23/67692c24a310f1268d87252a.jpeg\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a class=\"t_art\" target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/23/WS67692adaa310f1265a1d4771.html\" style=\"background-color: rgb(246, 246, 246); color: rgb(22, 22, 22); display: block; border-top: 1px solid rgb(255, 255, 255); font-size: 16px; line-height: 19px; padding: 10px 10px 20px;\">Modern technology safeguards Xizang\'s ancient treasures</a></div><div class=\"p_art\" style=\"width: 227px; border-right: 1px solid rgb(255, 255, 255); float: left; border-bottom: 1px solid rgb(255, 255, 255);\"><a target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/23/WS67692539a310f1265a1d4751.html\" style=\"color: rgb(22, 22, 22);\"><img width=\"227\" height=\"158\" src=\"https://img2.chinadaily.com.cn/images/202412/23/67692539a310f1268d8724a3.jpeg\" style=\"margin: 0px; padding: 0px; border: 0px;\"></a><a class=\"t_art\" target=\"_blank\" href=\"https://www.chinadaily.com.cn/a/202412/23/WS67692539a310f1265a1d4751.html\" style=\"background-color: rgb(246, 246, 246); color: inherit; outline: 0px; display: block; border-top: 1px solid rgb(255, 255, 255); font-size: 16px; line-height: 19px; padding: 10px 10px 20px;\">National Ice and Snow Season opens in Hulunbuir</a></div></div></div></div><p style=\"margin-right: 0px; margin-left: 0px; padding: 0px 0px 20px; font-size: 36px; font-family: "Times New Roman", Times, serif; line-height: 39px; color: rgb(22, 22, 22);\"><br></p>', '52,51,23', '676cfed172b93.jpg', '676cfed1a34d7.jpg', 1, '2024-12-26 00:59:29', '2024-12-26 01:02:37');
INSERT INTO `posts` (`id`, `author_id`, `category_id`, `read_time`, `title`, `slug`, `desp`, `tags`, `preview`, `thumbnail`, `status`, `created_at`, `updated_at`) VALUES
(11, 1, 11, 4, 'Photography competition back for another year', 'photography-competition-back-for-another-year-111951', '<h1 class=\"viewsHeaderText\" style=\"color: rgb(245, 245, 245); font-family: var(--body-font); font-size: 32px; line-height: 40px; margin-right: 0px; margin-left: 0px; max-height: 160px; overflow: hidden; padding-bottom: 14px; padding-top: 28px; background-color: rgb(36, 36, 36);\">Photography competition back for another year</h1><p style=\"color: rgb(245, 245, 245); font-family: var(--body-font); font-size: 32px; line-height: 40px; margin-right: 0px; margin-left: 0px; max-height: 160px; overflow: hidden; padding-bottom: 14px; padding-top: 28px; background-color: rgb(36, 36, 36);\"><br></p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">A photography competition, open to both amateur and professional enthusiasts of all ages, is returning for another year.</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">The \'East Suffolk Through the Lens\' contest has been organised by East Suffolk Council.</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">The competition aimed to give photographers the chance to share their favourite views in the district with their lenses.</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">The last winning photo \"Early Morning Swim at Southwold Beach\" by Tim Bennett was highlighted by judges for its \"striking colour, light, and tranquillity\".</p><div class=\"article-image-slot image-slot-placeholder\" data-doc-id=\"cms/api/amp/image/AA1vSFyx\" style=\"color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\"><slot name=\"AA1vSFyy-image-cms/api/amp/image/AA1vSFyx\"><div class=\"article-image-slot\" slot=\"AA1vSFyy-image-cms/api/amp/image/AA1vSFyx\"><cp-article-image style=\"background-color: var(--fill-color); color: var(--neutral-foreground-rest); --initial-width: 620px; --initial-x: 171.6666717529297px; --initial-y: 50.66666793823242px; --scale-ratio: 1.7134670487106016; --final-x: 100.49190191143225px; --final-y: 0px;\"><div class=\"article-image-container polished\" data-test-id=\"AA1vSFyx\" data-t=\"{"n":"OpenModal","t":13,"b":8,"c.i":"AA1vSFyy","c.l":false,"c.t":13,"c.v":"news","c.c":"newsworld","c.b":"BBC","c.bi":"AA28FU","c.tv":"travel","c.tc":"general","c.hl":"Photography competition back for another year"}\" style=\"position: relative; margin: 0px 0px 8px; width: 682px; height: var(--article-image-container-height,100%);\"><button data-customhandled=\"true\" class=\"article-image-height-wrapper expandable article-image-height-wrapper-new\" data-t=\"{"n":"destination","b":1,"c.i":"AA1vSFyy","c.l":false,"c.t":13,"c.v":"news","c.c":"newsworld","c.b":"BBC","c.bi":"AA28FU","c.tv":"travel","c.tc":"general","c.hl":"Photography competition back for another year"}\" style=\"width: inherit; display: block; appearance: none; padding: 0px; border-width: initial; border-style: none; border-color: initial; background-image: initial; background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; position: relative; overflow: hidden; border-radius: 6px; cursor: zoom-in; height: 349px;\"><div style=\"background: url("https://img-s-msn-com.akamaized.net/tenant/amp/entityid/AA1vSFyx.img?w=620&h=349&m=6") center center / cover no-repeat; filter: blur(90px); height: 349px;\"></div><img class=\"article-image article-image-ux-impr article-image-new expandable\" src=\"https://img-s-msn-com.akamaized.net/tenant/amp/entityid/AA1vSFyx.img?w=620&h=349&m=6\" alt=\"Bruno Leon won the under-16 category of the competition with his photograph of a vole eating grass\" title=\"Bruno Leon won the under-16 category of the competition with his photograph of a vole eating grass\" loading=\"eager\" style=\"border-radius: 6px; position: absolute; top: 0px; bottom: 0px; left: 341px; transform: translateX(-50%); object-fit: contain; max-width: 100%; background: rgb(242, 242, 242); transform-origin: 0px 0px; width: auto !important;\"></button><div class=\"image-caption-container image-caption-container-ux-impr articlewc-image-caption-container \" style=\"display: flex; font-size: 12px; line-height: 16px; padding: 12px 16px 8px 24px; flex-flow: column; background: transparent !important;\"><span class=\"image-caption\">Bruno Leon won the under-16 category of the competition with his photograph of a vole eating grass</span><span class=\"image-attribution image-attribution-ux-impr\" style=\"padding-bottom: 4px; opacity: unset; background: transparent !important; color: rgb(153, 153, 153);\">© BRUNO LEON</span></div></div></cp-article-image></div></slot></div><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">Entrants were encouraged to capture the essence of the district by photographing buildings, landscapes, wildlife and people.</p><p data-t=\"{"n":"blueLinks"}\" class=\"continue-read-break\" style=\"opacity: 1; position: static; margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">Caroline Topping, Green leader of East Suffolk Council, said: \"Last year proved that we have some extremely talented photographers here in East Suffolk, and I am looking forward to seeing more this year.<slot name=\"cont-read-break\"></slot></p><div class=\"intra-article-module\" data-t=\"{"n":"intraArticle","t":13}\" style=\"position: relative; z-index: 97; width: 682px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\"><slot name=\"AA1vSFyy-intraArticleModule-0\"></slot></div><p data-t=\"{"n":"blueLinks"}\" class=\"\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">\"Our district is filled with beautiful landscapes and incredible wildlife, all waiting to be captured through the lens. It could be an image that perfectly encapsulates daily life in East Suffolk, or a moment that reminds all of us how amazing our district is.\"</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">Entries should be submitted via an East Suffolk Through the Lens online entry form before midnight on 30 January. Previous entries would not be considered.</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">The overall winner\'s photo would be featured on the cover of East Suffolk Magazine which is delivered to every household in the district next spring.</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">Winners would be announced during the week starting 17 February, with the overall winner also receiving a £100 high street voucher.</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">One under-16 winning entrant will also be chosen to receive a high street voucher worth £75, while three runners-up will each get a high street voucher worth £25.</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\">More than 350 entries were received during the previous seven-week competition which ran between December 11 and January 28.</p><p data-t=\"{"n":"blueLinks"}\" style=\"margin-right: 0px; margin-bottom: 16px; margin-left: 0px; color: rgb(255, 255, 255); font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 17px; background-color: rgb(36, 36, 36);\"><em>Follow Suffolk news on </em><a href=\"https://www.bbc.co.uk/sounds/curation/p0cjdz3v?xtor=AL-72-%5Bpartner%5D-%5Bmicrosoft%5D-%5Blink%5D-%5Bnews%5D-%5Bbizdev%5D-%5Bisapi%5D\" target=\"_blank\" data-t=\"{"n":"destination","t":13,"b":1,"c.t":7}\" style=\"color: var(--accent-foreground-rest); overflow-wrap: break-word; outline-offset: -1px;\"><em>BBC Sounds</em></a><em>, </em><a href=\"https://www.facebook.com/BBCSuffolk/\" target=\"_blank\" data-t=\"{"n":"destination","t":13,"b":1,"c.t":7}\" style=\"color: var(--accent-foreground-rest); overflow-wrap: break-word; outline-offset: -1px;\"><em>Facebook</em></a><em>, </em><a href=\"https://www.instagram.com/bbceastofengland/\" target=\"_blank\" data-t=\"{"n":"destination","t":13,"b":1,"c.t":7}\" style=\"color: var(--accent-foreground-rest); overflow-wrap: break-word; outline-offset: -1px;\"><em>Instagram</em></a><em> and </em><a href=\"https://x.com/BBCsuffolk\" target=\"_blank\" data-t=\"{"n":"destination","t":13,"b":1,"c.t":7}\" style=\"color: var(--accent-foreground-rest); overflow-wrap: break-word; outline-offset: -1px;\"><em>X</em></a><em>.</em></p><h2 class=\"article-sub-heading\" style=\"font-family: "Segoe UI", "Segoe UI Midlevel", sans-serif; font-size: 28px; margin-top: 32px; margin-bottom: 16px; line-height: 36px; position: relative; padding-top: 16px; padding-bottom: 0px; color: rgb(255, 255, 255); background-color: rgb(36, 36, 36);\">More on this story</h2>', '28,42,26,13,24,16', '676cff8628566.jpg', '676cff86535e7.jpg', 1, '2024-12-26 01:02:30', '2024-12-26 01:02:40'),
(12, 1, 9, 4, '10 Common mistakes while buying international travel insurance', '10-common-mistakes-while-buying-international-travel-insurance-55569', '<p><span style=\"font-family: Faustina, Georgia, serif; font-size: 44px; font-weight: 700; text-align: center;\">10 Common mistakes while buying international travel insurance</span></p><p><span style=\"font-family: Faustina, Georgia, serif; font-size: 44px; font-weight: 700; text-align: center;\"><br></span></p><div id=\"postexcerpt\" style=\"font-family: Faustina, Georgia, serif; margin-left: auto; margin-right: auto; font-size: 20px;\"><p style=\"margin-bottom: 26px; overflow-wrap: break-word; line-height: 30px;\"><span class=\"dropcap dropcap2\" style=\"float: left; display: block; font-size: 79px; line-height: 57px; background-color: rgb(207, 70, 31); color: rgb(34, 34, 34); text-align: center; margin: 0px; padding: 0px; text-transform: uppercase; min-width: 62px; min-height: 62px;\">T</span>ravelling internationally is an exciting adventure, but it can also bring unexpected challenges. One way to protect yourself against potential risks like medical emergencies, trip cancellations, or lost luggage is by purchasing <b style=\"font-weight: bold;\">international travel insurance</b>. However, many travellers make mistakes when buying this coverage, which can lead to unwanted surprises en route. In this blog, we will highlight the 10 most common mistakes travelers make when purchasing <b style=\"font-weight: bold;\">international travel insurance</b> and how you can avoid them.</p><div class=\"code-block code-block-39\" style=\"margin: 8px 0px; clear: both; min-height: 300px;\"><div id=\"ATD_INR1\"></div></div><h3 style=\"margin: 27px 0px 17px; font-size: 30px; line-height: 35px; font-family: "EB Garamond" !important;\"><b style=\"font-weight: bold; font-family: Faustina, Georgia, serif;\">What is international travel insurance?</b></h3><p style=\"margin-bottom: 26px; overflow-wrap: break-word; line-height: 30px;\"><b style=\"font-weight: bold;\">International Travel Insurance</b> is a type of insurance designed to protect travellers while they are abroad. It provides coverage for a variety of potential risks and emergencies that can arise during an international trip. This can include medical emergencies, trip cancellations, lost luggage, flight delays, and even emergency evacuation.</p><div class=\"code-block code-block-5\" style=\"margin: 8px 0px; clear: both;\"><div id=\"vdo_ai_div\"></div></div><div class=\"third-para\" style=\"position: relative; overflow: hidden; height: 112px; padding-top: 8px;\"><p style=\"margin-bottom: 26px; overflow-wrap: break-word; line-height: 30px;\">There are several types of <a href=\"https://www.careinsurance.com/travel-insurance/international-travel-insurance\" target=\"_blank\" rel=\"noopener nofollow\" style=\"pointer-events: auto; color: rgb(207, 70, 31) !important;\"><b style=\"font-weight: bold;\">international travel insurance</b></a> policies available, each offering different coverage options. Some may cover only medical emergencies, while others offer broader coverage by including non-medical risks such as trip interruptions, baggage loss, or even theft. To avail of these benefits of<b style=\"font-weight: bold;\"> international travel insurance</b> one should be fully aware of the policy details and priorly know the possible mistakes that could happen before buying the right <b style=\"font-weight: bold;\">travel insurance for international</b> trips. </p><button id=\"examples-expand\" class=\"ap-m-clip-expand\" style=\"font-style: inherit; font-variant: inherit; font-weight: inherit; font-stretch: inherit; font-family: Faustina, Georgia, serif; font-optical-sizing: inherit; font-size-adjust: inherit; font-kerning: inherit; font-feature-settings: inherit; font-variation-settings: inherit; position: absolute; z-index: 10; bottom: 0px; left: 0px; display: flex; justify-content: center; align-items: flex-end; width: 820px; border-width: initial; border-style: none; border-color: initial; background-image: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255) 40%); background-position: initial; background-size: initial; background-repeat: initial; background-attachment: initial; background-origin: initial; background-clip: initial; height: 77px !important;\"><span style=\"background: rgb(207, 70, 31); border: 2px solid transparent; font-size: 16px; font-weight: 600; width: 195px; margin: 0px; padding: 13px 26px 13px 25px; position: relative; border-radius: 24px; line-height: 14px; color: rgb(255, 255, 255);\">Show Full Article<svg class=\"ap-m-clip-expand-icon\" xmlns=\"http://www.w3.org/2000/svg\" height=\"1em\" viewBox=\"0 0 320 512\"><path d=\"M143 352.3L7 216.3c-9.4-9.4-9.4-24.6 0-33.9l22.6-22.6c9.4-9.4 24.6-9.4 33.9 0l96.4 96.4 96.4-96.4c9.4-9.4 24.6-9.4 33.9 0l22.6 22.6c9.4 9.4 9.4 24.6 0 33.9l-136 136c-9.2 9.4-24.4 9.4-33.8 0z\"></path></svg></span></button></div></div><h3 style=\"margin: 27px auto 17px; font-size: 30px; line-height: 35px; font-family: "EB Garamond" !important;\"><b style=\"font-weight: bold; font-family: Faustina, Georgia, serif;\">2. Purchasing insurance too late</b></h3><p style=\"margin-right: auto; margin-bottom: 26px; margin-left: auto; font-family: Faustina, Georgia, serif; overflow-wrap: break-word; font-size: 20px; line-height: 1.4 !important;\">Some travellers think they can buy travel insurance at the last minute, but this can lead to missing out on important coverage, such as trip cancellation benefits. Travel insurance is most beneficial when purchased soon after booking your trip.<b style=\"font-weight: bold;\"><br></b>Buy your <b style=\"font-weight: bold;\">travel insurance for international </b>trips as soon as you book your flight or accommodation. This ensures you are covered from the moment you make a commitment and gives you peace of mind in case something happens before you even leave.</p><h3 style=\"margin: 27px auto 17px; font-size: 30px; line-height: 35px; font-family: "EB Garamond" !important;\"><b style=\"font-weight: bold; font-family: Faustina, Georgia, serif;\">3. Choosing the cheapest option</b></h3><p style=\"margin-right: auto; margin-bottom: 26px; margin-left: auto; font-family: Faustina, Georgia, serif; overflow-wrap: break-word; font-size: 20px; line-height: 1.4 !important;\">A low-cost policy might not provide the level of coverage you need in case of an emergency.<b style=\"font-weight: bold;\"><br></b>Instead of focusing solely on the price, compare policies based on their coverage levels. Consider factors such as medical coverage, trip interruptions, baggage loss, and emergency evacuation. Choosing the right<b style=\"font-weight: bold;\"> travel insurance for international travel</b> is more important than just picking the cheapest option.</p><h3 style=\"margin: 27px auto 17px; font-size: 30px; line-height: 35px; font-family: "EB Garamond" !important;\"><b style=\"font-weight: bold; font-family: Faustina, Georgia, serif;\">4. Ignoring pre-existing medical conditions</b></h3><p style=\"margin-right: auto; margin-bottom: 26px; margin-left: auto; font-family: Faustina, Georgia, serif; overflow-wrap: break-word; font-size: 20px; line-height: 1.4 !important;\">If you have any pre-existing medical conditions, such as asthma, diabetes, or heart problems, many standard travel insurance policies won’t cover related emergencies. Ignoring this can lead to high medical costs in case something goes wrong.<b style=\"font-weight: bold;\"><br></b>Look for<b style=\"font-weight: bold;\"> international travel medical insurance</b> policies that offer coverage for pre-existing medical conditions. Some insurers provide an option to add this coverage for an additional cost, ensuring you are protected if a medical issue arises during your trip.</p><h3 style=\"margin: 27px auto 17px; font-size: 30px; line-height: 35px; font-family: "EB Garamond" !important;\"><b style=\"font-weight: bold; font-family: Faustina, Georgia, serif;\">5. Not considering adventure or extreme activities</b></h3><p style=\"margin-right: auto; margin-bottom: 26px; margin-left: auto; font-family: Faustina, Georgia, serif; overflow-wrap: break-word; font-size: 20px; line-height: 1.4 !important;\">Many travellers enjoy adventurous activities like skiing, scuba diving, or hiking. However, standard<b style=\"font-weight: bold;\"> international travel insurance</b> policies often do not cover injuries related to high-risk activities.<b style=\"font-weight: bold;\"><br></b>If you plan to engage in adventure or extreme activities, make sure your policy includes coverage for them. Many insurance companies offer specialized coverage for such activities, or you can add a sports rider to your existing policy for extra protection.</p><div class=\"code-block code-block-41\" style=\"font-family: Faustina, Georgia, serif; margin: 8px 0px; font-size: 20px; clear: both; min-height: 300px;\"><div id=\"ATD_INR3\"></div></div><h3 style=\"margin: 27px auto 17px; font-size: 30px; line-height: 35px; font-family: "EB Garamond" !important;\"><b style=\"font-weight: bold; font-family: Faustina, Georgia, serif;\">6</b></h3>', '39,38,40', '676d009f153b3.jpg', '676d009f3bbc6.jpg', 1, '2024-12-26 01:07:11', '2024-12-26 01:07:22');
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
CREATE TABLE `roles` (
`id` bigint UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`guard_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `roles`
--
INSERT INTO `roles` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES
(1, 'Super Admin', 'web', '2024-10-02 00:06:28', '2024-10-02 00:06:28'),
(2, 'Admin', 'web', '2024-10-02 00:07:46', '2024-10-02 00:07:46'),
(3, 'Moderator', 'web', '2024-10-02 00:08:31', '2024-10-02 00:08:31'),
(4, 'Editor', 'web', '2024-10-02 00:09:04', '2024-10-02 00:09:04');
-- --------------------------------------------------------
--
-- Table structure for table `role_has_permissions`
--
CREATE TABLE `role_has_permissions` (
`permission_id` bigint UNSIGNED NOT NULL,
`role_id` bigint UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `role_has_permissions`
--
INSERT INTO `role_has_permissions` (`permission_id`, `role_id`) VALUES
(1, 1),
(2, 1),
(3, 1),
(4, 1),
(5, 1),
(6, 1),
(7, 1),
(8, 1),
(9, 1),
(1, 2),
(4, 2),
(6, 2),
(7, 2),
(8, 2),
(9, 2),
(6, 3),
(7, 3),
(8, 3),
(9, 3),
(7, 4),
(9, 4);
-- --------------------------------------------------------
--
-- Table structure for table `sessions`
--
CREATE TABLE `sessions` (
`id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint UNSIGNED DEFAULT NULL,
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_agent` text COLLATE utf8mb4_unicode_ci,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`last_activity` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sessions`
--
INSERT INTO `sessions` (`id`, `user_id`, `ip_address`, `user_agent`, `payload`, `last_activity`) VALUES
('uJytRd21JQwqvLU6Jqi8N15YDvCD2x9A1Hu0YAoM', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiSGU5TkVaVVNvNm5WZUg1VDZiUHAwVEF1VWlycEZycGxOdGxlRWpSdyI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1735980643),
('w8RE190ecM5wpJOFGBNI6ACk0M1fYjQmOYUIApWd', NULL, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoidXlCd0RPc1V4YXV6dFhRblBEOTYydTFDWk5GczhqTWJtVzNHTU5hOSI7czo5OiJfcHJldmlvdXMiO2E6MTp7czozOiJ1cmwiO3M6MjE6Imh0dHA6Ly8xMjcuMC4wLjE6ODAwMCI7fXM6NjoiX2ZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1735187805),
('Wd6n93hsOL6XPS5kfvL1btA3KOayDA59IG9Yx2cv', 1, '127.0.0.1', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36', 'YTo2OntzOjY6Il90b2tlbiI7czo0MDoiM1gwcGZTT1BGU2lHa0ZMbkY5bDkxR2lhYXdOcHFPT3RySEk2MVlMaiI7czo2OiJfZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319czozOiJ1cmwiO2E6MDp7fXM6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjc0MDoiaHR0cDovL2xvY2FsaG9zdDo4MDAwL215L3Bvc3QvZGV0YWlscy8lRTAlQTclQUItJUUwJUE2JUE1JUUwJUE2JUJFJUUwJUE2JUE4JUUwJUE2JUJFJUUyJTgwJTkzJUUwJUE2JTg5JUUwJUE2JUFBJUUwJUE2JTlDJUUwJUE3JTg3JUUwJUE2JUIyJUUwJUE2JUJFJUUwJUE3JTlGLSVFMCVBNiU5QyVFMCVBNiVCRSVFMCVBNiVBNCVFMCVBNyU4MCVFMCVBNyU5Ri0lRTAlQTYlQTglRTAlQTYlQkUlRTAlQTYlOTclRTAlQTYlQjAlRTAlQTYlQkYlRTAlQTYlOTUtJUUwJUE2JTk1JUUwJUE2JUFFJUUwJUE2JUJGJUUwJUE2JTlGJUUwJUE2JUJGLSVFMCVBNiU5NyVFMCVBNiVBMCVFMCVBNiVBOC0tJTdDLSVFMCVBNiU5QyVFMCVBNiVCRSVFMCVBNiVBNCVFMCVBNyU4MCVFMCVBNyU5Ri0lRTAlQTYlQTglRTAlQTYlQkUlRTAlQTYlOTclRTAlQTYlQjAlRTAlQTYlQkYlRTAlQTYlOTUtJUUwJUE2JTk1JUUwJUE2JUFFJUUwJUE2JUJGJUUwJUE2JTlGJUUwJUE2JUJGOi0lRTAlQTYlQTYlRTAlQTclODclRTAlQTclOUMtJUUwJUE2JUFFJUUwJUE2JUJFJUUwJUE2JUI4JUUwJUE3JTg3LSVFMCVBNyVBNyVFMCVBNyVBNiVFMCVBNyVBNi0lRTAlQTYlQTUlRTAlQTYlQkUlRTAlQTYlQTglRTAlQTYlQkUtJUUwJUE2JTkzLSVFMCVBNiU4OSVFMCVBNiVBQSVFMCVBNiU5QyVFMCVBNyU4NyVFMCVBNiVCMiVFMCVBNiVCRSVFMCVBNyU5Ri0lRTAlQTYlOTUlRTAlQTYlQUUlRTAlQTYlQkYlRTAlQTYlOUYlRTAlQTYlQkYtMzk3NjIiO31zOjUwOiJsb2dpbl93ZWJfNTliYTM2YWRkYzJiMmY5NDAxNTgwZjAxNGM3ZjU4ZWE0ZTMwOTg5ZCI7aToxO3M6NTM6ImxvZ2luX2F1dGhvcl81OWJhMzZhZGRjMmIyZjk0MDE1ODBmMDE0YzdmNThlYTRlMzA5ODlkIjtpOjE7fQ==', 1735196883);
-- --------------------------------------------------------
--
-- Table structure for table `subscriptions`
--
CREATE TABLE `subscriptions` (
`id` bigint UNSIGNED NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `subscriptions`
--
INSERT INTO `subscriptions` (`id`, `email`, `created_at`, `updated_at`) VALUES
(2, 'wacikyser@mailinator.com', '2024-10-10 03:57:16', '2024-10-10 03:57:16');
-- --------------------------------------------------------
--
-- Table structure for table `tags`
--
CREATE TABLE `tags` (
`id` bigint UNSIGNED NOT NULL,
`tag_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `tags`
--
INSERT INTO `tags` (`id`, `tag_name`, `created_at`, `updated_at`) VALUES
(1, 'Political Parties', '2024-12-25 22:43:31', NULL),
(2, 'Elections', '2024-12-25 22:43:43', NULL),
(3, 'International Relations', '2024-12-25 22:43:52', NULL),
(4, 'Political Leaders', '2024-12-25 22:44:02', NULL),
(5, 'Bangladesh Awami League', '2024-12-25 22:46:29', NULL),
(6, 'BNP', '2024-12-25 22:47:02', NULL),
(7, 'Jatiya Party', '2024-12-25 22:47:15', NULL),
(8, 'Jamaat-e-Islami', '2024-12-25 22:47:54', NULL),
(9, 'Gadgets', '2024-12-25 22:50:49', NULL),
(10, 'Tech Innovations', '2024-12-25 22:50:59', NULL),
(11, 'Future Technology', '2024-12-25 22:51:06', NULL),
(12, 'Tech Startups', '2024-12-25 22:51:16', NULL),
(13, 'Digital Transformation', '2024-12-25 22:51:25', NULL),
(14, 'Online Learning', '2024-12-25 22:51:33', NULL),
(15, 'Educational Tools', '2024-12-25 22:51:40', NULL),
(16, 'Academic Research', '2024-12-25 22:51:46', NULL),
(17, 'Universities', '2024-12-25 22:51:54', NULL),
(18, 'Learning Resources', '2024-12-25 22:52:02', NULL),
(19, 'Football', '2024-12-25 22:52:17', NULL),
(20, 'Sports News', '2024-12-25 22:52:33', NULL),
(21, 'Extreme Sports', '2024-12-25 22:52:40', NULL),
(22, 'Cricket', '2024-12-25 22:53:43', NULL),
(23, 'Corporate Strategy', '2024-12-25 23:01:33', NULL),
(24, 'Business Trends', '2024-12-25 23:01:39', NULL),
(25, 'Entrepreneurship', '2024-12-25 23:01:44', NULL),
(26, 'Marketing Strategies', '2024-12-25 23:01:50', NULL),
(27, 'Movies', '2024-12-25 23:01:58', NULL),
(28, 'TV Shows', '2024-12-25 23:02:02', NULL),
(29, 'Celebrity Gossip', '2024-12-25 23:02:08', NULL),
(30, 'Video Games', '2024-12-25 23:02:13', NULL),
(31, 'Space Exploration', '2024-12-25 23:02:22', NULL),
(32, 'Scientific Research', '2024-12-25 23:02:30', NULL),
(33, 'Scientific Research', '2024-12-25 23:02:38', NULL),
(34, 'Fashion Accessories', '2024-12-25 23:02:46', NULL),
(35, 'Fashion Trends', '2024-12-25 23:02:57', NULL),
(36, 'Fashion Trends', '2024-12-25 23:03:13', NULL),
(37, 'Adventure Travel', '2024-12-25 23:03:24', NULL),
(38, 'Luxury Travel', '2024-12-25 23:03:31', NULL),
(39, 'Travel Guides', '2024-12-25 23:03:39', NULL),
(40, 'Environmental Activism', '2024-12-25 23:06:27', NULL),
(41, 'Green Energy', '2024-12-25 23:06:36', NULL),
(42, 'Photography Tips', '2024-12-25 23:08:29', NULL),
(43, 'Cameras and Gear', '2024-12-25 23:09:01', NULL),
(44, 'Ethical Hacking', '2024-12-25 23:12:53', NULL),
(45, 'Network Security', '2024-12-25 23:13:01', NULL),
(46, 'Satellites', '2024-12-25 23:13:15', NULL),
(47, 'Automotive Trends', '2024-12-25 23:14:45', NULL),
(48, 'Book Reviews', '2024-12-25 23:15:05', NULL),
(49, 'Vegetarian', '2024-12-25 23:17:01', NULL),
(50, 'Coffee Trends', '2024-12-25 23:17:43', NULL),
(51, 'Tom', '2024-12-25 23:17:59', NULL),
(52, 'Windows Tips', '2024-12-25 23:19:39', NULL),
(53, 'SaaS Tools', '2024-12-25 23:19:50', NULL);
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint UNSIGNED NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `email_verified_at`, `password`, `photo`, `remember_token`, `created_at`, `updated_at`) VALUES
(1, 'MD TOMAS UDDIN', 'mdtomasuddin1@gmail.com', '2024-10-10 00:50:39', '$2y$12$oMT0gIrpuRQdlr0jLPBWVOgK9pxhY4XEhWup9yzgEgiGXHFQ8m9QG', '676c3a5e0f147.png', 'Y1OUvXNTmyMdlrR8A37FyADQW3ae0cT6YivcwTUl92SCkLusAhmWE82TA3bB', '2024-10-10 00:50:39', '2024-12-25 11:01:18'),
(2, 'Blog Site', 'blogsite@gmail.com', NULL, '$2y$12$fI.DpPymOk3AEqVmzdqjc.a24ybysEgvX7DBntaTohYlyBYEtoH9.', '676c3aac1d7cd.png', NULL, '2024-10-09 19:26:47', '2024-12-25 11:02:36'),
(3, 'Rylee Cook', 'nupujowifa@mailinator.com', NULL, '$2y$12$qdHOLECr/r4AFR7LaEUAr.wa55SAyrtUcVCeeI9PBU/hZzg95RAxi', NULL, NULL, '2024-10-09 19:26:49', NULL),
(4, 'Colorado Potter', 'nuneg@mailinator.com', NULL, '$2y$12$KqBOKU1sFX7C7oP05YZw6ebO/8pdR2R1O664UEAvghyAFSn2LKkQq', NULL, NULL, '2024-10-09 19:26:51', NULL),
(5, 'Josephine Rosa', 'cidopy@mailinator.com', NULL, '$2y$12$CBSgbaOstzzLzxxL70xLzum45m5AwoGy/YC2s9L0/OlOreRJWuk.G', NULL, NULL, '2024-10-09 19:26:53', NULL),
(6, 'Laurel Pope', 'xytibur@mailinator.com', NULL, '$2y$12$vt5VDGq0JtNgtA.s2sjeSemxT4mJi3gm0YtSReIK0Gq5JIhoF0Cxq', NULL, NULL, '2024-10-09 19:26:55', NULL),
(7, 'Reed Sharpe', 'fiqadosyk@mailinator.com', NULL, '$2y$12$PIc.6d4FEduSolrywMwpy.8q.HEcGj1Mlyn8JrDbzDGB2Hxy7f3ci', NULL, NULL, '2024-10-09 19:26:56', NULL),
(8, 'James Barrett', 'tuperej@mailinator.com', NULL, '$2y$12$bV8Bc/.m8/7Y8Kh8SBeEy.ya1FjgK0e4lM3Gg7KlKnReSq84u5jlG', NULL, NULL, '2024-10-09 19:26:58', NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `authors`
--
ALTER TABLE `authors`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `authors_email_unique` (`email`);
--
-- Indexes for table `cache`
--
ALTER TABLE `cache`
ADD PRIMARY KEY (`key`);
--
-- Indexes for table `cache_locks`
--
ALTER TABLE `cache_locks`
ADD PRIMARY KEY (`key`);
--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `categories_category_name_unique` (`category_name`);
--
-- Indexes for table `comments`
--
ALTER TABLE `comments`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `contact_messages`
--
ALTER TABLE `contact_messages`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `email_verifies`
--
ALTER TABLE `email_verifies`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
--
-- Indexes for table `faqs`
--
ALTER TABLE `faqs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `jobs`
--
ALTER TABLE `jobs`
ADD PRIMARY KEY (`id`),
ADD KEY `jobs_queue_index` (`queue`);
--
-- Indexes for table `job_batches`
--
ALTER TABLE `job_batches`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `model_has_permissions`
--
ALTER TABLE `model_has_permissions`
ADD PRIMARY KEY (`permission_id`,`model_id`,`model_type`),
ADD KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`);
--
-- Indexes for table `model_has_roles`
--
ALTER TABLE `model_has_roles`
ADD PRIMARY KEY (`role_id`,`model_id`,`model_type`),
ADD KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`);
--
-- Indexes for table `password_reset_tokens`
--
ALTER TABLE `password_reset_tokens`
ADD PRIMARY KEY (`email`);
--
-- Indexes for table `pass_resets`
--
ALTER TABLE `pass_resets`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `permissions_name_guard_name_unique` (`name`,`guard_name`);
--
-- Indexes for table `populars`
--
ALTER TABLE `populars`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `posts`
--
ALTER TABLE `posts`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `roles_name_guard_name_unique` (`name`,`guard_name`);
--
-- Indexes for table `role_has_permissions`
--
ALTER TABLE `role_has_permissions`
ADD PRIMARY KEY (`permission_id`,`role_id`),
ADD KEY `role_has_permissions_role_id_foreign` (`role_id`);
--
-- Indexes for table `sessions`
--
ALTER TABLE `sessions`
ADD PRIMARY KEY (`id`),
ADD KEY `sessions_user_id_index` (`user_id`),
ADD KEY `sessions_last_activity_index` (`last_activity`);
--
-- Indexes for table `subscriptions`
--
ALTER TABLE `subscriptions`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `subscriptions_email_unique` (`email`);
--
-- Indexes for table `tags`
--
ALTER TABLE `tags`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `authors`
--
ALTER TABLE `authors`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `comments`
--
ALTER TABLE `comments`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `contact_messages`
--
ALTER TABLE `contact_messages`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `email_verifies`
--
ALTER TABLE `email_verifies`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `faqs`
--
ALTER TABLE `faqs`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `jobs`
--
ALTER TABLE `jobs`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=79;
--
-- AUTO_INCREMENT for table `pass_resets`
--
ALTER TABLE `pass_resets`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `populars`
--
ALTER TABLE `populars`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `posts`
--
ALTER TABLE `posts`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
--
-- AUTO_INCREMENT for table `subscriptions`
--
ALTER TABLE `subscriptions`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `tags`
--
ALTER TABLE `tags`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `model_has_permissions`
--
ALTER TABLE `model_has_permissions`
ADD CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `model_has_roles`
--
ALTER TABLE `model_has_roles`
ADD CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;
--
-- Constraints for table `role_has_permissions`
--
ALTER TABLE `role_has_permissions`
ADD CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
ADD CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;