/* Enhanced Related Reading Section */
.wp-block-group.rel {
    position: relative;
    padding: 25px 30px 20px 30px;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);	
  	border-top: 1px solid #efefef;
box-shadow: 0 1px 2px rgb(32 32 58 / 25%);
}
/* Decorative corner accent */
.wp-block-group.rel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(29, 53, 87, 0.05) 100%);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}
/* Decorative bottom accent line */
.wp-block-group.rel::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #e63946 0%, 
        #f77f00 25%, 
        #fcbf49 50%, 
        #457b9d 75%, 
        #1d3557 100%);
    opacity: 0.6;
}

/* Heading styling */
.wp-block-group.rel p,
.wp-block-group.rel h2,
.wp-block-group.rel h3,
.wp-block-group.rel h4 {
    font-size: 20px;
  font-weight: 500;}


/* List styling */
.wp-block-group.rel ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.wp-block-group.rel ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    transition: all 0.2s ease;
}
/* Custom bullet with gradient */
.wp-block-group.rel ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #e63946 0%, #f77f00 100%);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
}
/* Animated bullet on hover */
.wp-block-group.rel ul li:hover::before {
    transform: scale(1.2) rotate(90deg);
    background: linear-gradient(135deg, #f77f00 0%, #fcbf49 100%);
}
/* Link styling */
.wp-block-group.rel a {
    position: relative;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #1d3557;
    transition: all 0.3s ease;
    display: inline-block;
}
/* Gradient text on hover */
.wp-block-group.rel a:hover {
    background: linear-gradient(90deg, #e63946 0%, #f77f00 50%, #1d3557 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wp-block-group.rel {
        padding: 20px 20px 15px 20px;
        margin-bottom: 20px;
    }
}

/* --- Fancy Sidebar Widgets --- */
.widget {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft shadow */
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Hover "Lift" Effect */
.widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
/* Modern Gradient Titles */
.widget-title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 60px;
    height: 4px;
    /* Red to Dark Blue Gradient */
    background: linear-gradient(90deg, #ff4d4d, #001f3f); 
    border-radius: 2px;
}


/* Video Gap */

.main-content video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

/* Details Block */

.wp-block-details summary {
    padding: 10px;
    margin-bottom: 15px;
	  margin-top: 10px;
    background-color: #fcf5ed;
	  text-align: center;
    font-size: 18px;
	  font-weight: 500;
	   border: solid 1px #d7d7d7;
	  
}

.wp-block-details p {
	font-size: 16px !important;
  line-height: 1.8 !important;
  }

.wp-block-details figure img {
 margin-bottom: 10px;  }

.wp-block-details  {
    margin-bottom: 20px;
}

.wp-block-details figcaption {
 margin-bottom: 10px;  }

/* summary alignment for details blocks with custom heading classes */
.wp-block-details.details-heading-h2 summary,
.wp-block-details.details-heading-h3 summary,
.wp-block-details.details-heading-h4 summary {
    display: flex; 
    align-items: center; 
    gap: 10px;
    cursor: pointer;
	  background: #f2f2f2;
	  border: solid 1px #d7d7d7;

}

/* Ensure the summary marker stays inline */
.wp-block-details.details-heading-h2 summary h2,
.wp-block-details.details-heading-h3 summary h3,
.wp-block-details.details-heading-h4 summary h4 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
	
}


/* Custom marker styling to ensure proper positioning */
.wp-block-details.details-heading-h2 summary::before,
.wp-block-details.details-heading-h3 summary::before,
.wp-block-details.details-heading-h4 summary::before {
    content: "▶"; 
    font-size: 16px;
    margin-right: 8px;
    transition: transform 0.3s ease; 
}
 
/* Rotate the marker when the details block is open */
.wp-block-details.details-heading-h2[open] summary::before,
.wp-block-details.details-heading-h3[open] summary::before,
.wp-block-details.details-heading-h4[open] summary::before {
    transform: rotate(90deg);
}



/* Key Takeaway */

.wp-block-group.key {
	
    padding: 15px;
    margin-bottom: 20px;
    margin-top: 0px;
    border: 1px solid #f7f7f7;
    background-color: #fffcf7;
    box-shadow: 0 1px 2px rgb(32 32 58 / 25%);
}

.wp-block-group.key p {
	font-size: 16px;
  line-height: 1.8; } 




/* WP Gallery */

.wp-block-gallery {
    gap: 0.1em !important 
}


/*Product Box*/

.wp-block-columns.pb {
    
    border-radius: 2px;
    padding: 20px;
    box-shadow: 0 0 15px 0 hsla(0,0%,44.7%,.08);
    border: 1px solid #efefef;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);	
  	border-top: 1px solid #efefef;
	  line-height: 1.5;
	  border-left: solid 4px #FEBE10;
}

/* Product */

.wp-block-columns.lpb {
	
	 border-radius: 2px;
    padding: 20px;
    box-shadow: 0 0 15px 0 hsla(0,0%,44.7%,.08);
    border: 1px solid #efefef;
    background: #fff;
	  line-height: 1.5;
}
    

/* Button */

.wp-block-button:not(.is-style-outline) .wp-block-button__link:not([class*="has-background"]) {
    background-color: #e31837; 
    border-radius: 7px;
	  font-size: 14px;
	  font-weight:  bold;
	  padding: 12px 24px;
	  margin: 5px;
	  text-decoration: none;
}



.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
background-color: #ca212a !important;
box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
 }


/* FAQ */

.schema-faq-question {
	
font-size: 18px;
font-weight: 600;
line-height: 1.8;

 }

.schema-faq-answer {

	margin-top: 10px;
	font-size: 15px;
}

.schema-faq-section { 

background-color: #fff;
margin-bottom: 15px;
padding: 15px 15px 15px 15px;
box-shadow: 0 1px 7px rgb(32 32 58 / 15%);}


/* Bullet list images */

ul.f li {
list-style-image:url('https://vsctimes.com/wp-content/uploads/2025/02/Features.png');padding: 2px 0 2px 0.5em!important;}


ul.p li {
list-style-image:url('https://vsctimes.com/wp-content/uploads/2025/02/Pros.png');padding: 2px 0 2px 0.5em!important;}

ul.c li {
list-style-image:url('https://vsctimes.com/wp-content/uploads/2025/02/Cons.png');
	padding: 2px 0 2px 0.5em!important;
}

ul.g li {
list-style-image:url('https://vsctimes.com/wp-content/uploads/2025/02/Green-icon.png');
	padding: 2px 0 2px 0.5em!important;
}

ul.l li {
list-style-image:url('https://vsctimes.com/wp-content/uploads/2025/03/list.png');
	padding: 2px 0 2px 0.5em!important;
}



/* Pros and Cons */

/* --- Container (Standard Box) --- */
.wp-block-column.ss {
    border-left: solid 1px #efefef;
    border-right: solid 1px #efefef;
    border-bottom: solid 1px #efefef;
    padding: 0px 10px 20px 15px;
    background: #fff;
}

.wp-block-columns:not(._) {
    gap: var(--wp--style--block-gap, 0.1em); 
}

/* --- PROS Header --- */
.wp-block-column .pros {
    /* Spacing */
    padding: 20px;
    margin: 0px -11px 20px -16px;
    
    /* Border */
    border-top: 4px solid #22c55e;
    
    /* Subtle Horizontal Gradient */
    background: linear-gradient(90deg, #f0fdf4 0%, #ffffff 85%);
    
    /* Text */
    color: #166534;
}

/* --- CONS Header --- */
.wp-block-column .cons {
    /* Spacing */
    padding: 20px;
    margin: 0px -11px 20px -16px;

    /* Border */
    border-top: 4px solid #ef4444;

    /* Subtle Horizontal Gradient */
    background: linear-gradient(90deg, #fef2f2 0%, #ffffff 85%);
    
    /* Text */
    color: #991b1b;
}

/* Block Quote */

.wp-block-quote {
    border-left: 4px solid #f5f5f5;
	  text-align: center;
    font-weight: 600;
    font-size: 18px;
	  color: #e31837;
    text-transform: capitalize;
}




/* Center align images in Gutenberg */
.wp-block-image {
    text-align: center;
}

/* 📌 Custom Styling for Specification Table */
.custom-ac-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #ffffff;
}

.custom-ac-table thead {
    text-transform: uppercase;
    font-size: 16px;
}

.custom-ac-table th, .custom-ac-table td {
    text-align: left;
}

.custom-ac-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.custom-ac-table tbody tr:hover {
    background: #f1f1f1;
    transition: 0.3s;
}

@media only screen and (max-width: 2560px) {
  .custom-ac-table {
    overflow-x: auto;
    display: block;
    white-space: wrap;
  }

  .custom-ac-table th,
  .custom-ac-table td {
    width: 150px  }
}


/* Image Caption styling */

wp-caption-text, figcaption {
    font-style: italic;
    color: #545454;
}


/* Update Homepage Section Headings to match Widget Style */
.home .block-head-e1 {
    display: block !important;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 0px;
    margin-bottom: 24px;
}

.home .block-head-e1 .heading {
    display: inline-block !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important; /* Bold text */
}

/* Create the gradient accent line */
.home .block-head-e1::after {
    content: "" !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 60px !important;
    height: 4px !important;
    /* Red-to-Navy Gradient */
    background: linear-gradient(90deg, #ff4d4d, #001f3f) !important;
    margin-left: 0 !important;
    flex-grow: 0 !important; /* Reset old style */
}


/* --- Move Comments Before Related Posts [SmartMag] --- */

.single .the-post{
  display:flex;
  flex-direction:column;
}

/* Content first */
.single .the-post > article{ order:10; }

/* Share */
.single .the-post > .post-share-bot{ order:20; }

/* Author */
.single .the-post > .author-box{ order:30; }

/* Comments */
.single .the-post > #comments,
.single .the-post > .comments,
.single .the-post > .comments-area{
  order:40;
}

/* Related last */
.single .the-post > .related-posts{
  order:50;
}


/* VSCTimes – Affiliate disclosure fancy card */
.vsct-aff-disclosure {
  position: relative;
  padding: 16px 18px;
  border-radius: 5px;
  background: #fffaf0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.08),
    0 2px 6px rgba(15, 23, 42, 0.06);
  margin: 18px 0;
  overflow: hidden;
}


/* Body */
body{ color:#222222; }

/* Headings */
h1,h2,h3,h4,h5,h6{ color:#111111; }

/* Titles — everywhere */
.post-title,
.post-title a,
.entry-title,
.entry-title a,
.related-posts a{
  color:#1A1A1A;
}

/* Meta text only */
.post-meta span,
.entry-meta span,
.meta span,
.post-meta time,
.entry-meta time,
.meta time,
.post-meta a,
.entry-meta a,
.meta a{
  color:#6B7280;
}

/* Ensure meta rules never override titles */
.post-meta .post-title a,
.entry-meta .post-title a,
.meta .post-title a,
.post-meta .entry-title a,
.entry-meta .entry-title a,
.meta .entry-title a{
  color:#1A1A1A;
}

/* Blog post images – match global roundness */
.single-post .entry-content img,
.single-post .post-thumbnail img {
  border-radius: 5px;
}


/*    Reasons Group Block Custom Styling */
.reasons {
    background-color: #fafbfc;  
    border: 1px solid #eaeaea;
    border-radius: 5px;
    padding: 30px;
    margin: 35px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

/* Headings spacing and styling */
.reasons p strong {
    font-size: 20px;
    display: block;
}

/* Base styling for lists to remove default bullets */
.reasons ul {
    padding-left: 20px !important;
    margin: 0;
}

/* Add breathing space below the first list */
.reasons ul:first-of-type {
    margin-bottom: 30px; 
}

/* Remove bottom margin from very last item */
.reasons ul:last-child li:last-child {
    margin-bottom: 0;
}



/* List Bullet Points Font Size */

ul  {
    font-size: 16px;
}



/* TV Table Container and Base */

.wp-block-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
	  font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
    border-radius: 5px;
    overflow: hidden; /* Required for border-radius to work on tables */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);  
}

/* Table Header Styling */
.wp-block-table thead tr {
    background-color: #f4f4f6; 
    color: #1a1a1a;

    border-bottom: 2px solid #e2e8f0;
}

/* Cell Alignment and Padding */
.wp-block-table th,
.wp-block-table td {
    padding: 10px 20px;
    text-align: left;  
    border: 1px solid #eef2f6;  
    vertical-align: top;

}

/* Make the first column slightly bolder since it usually contains labels */
.wp-block-table tbody td:first-child {
    background-color: #fbfbfc; 
    width: 40%;
}

/* Zebra Striping for readability */
.wp-block-table tbody tr:nth-of-type(even) {
    background-color: #fdfdfd;
}

/* Row Hover Effect for Interactivity */
.wp-block-table tbody tr:hover {
    background-color: #f5f7fa; 
    transition: background-color 0.2s ease-in-out;
}

/* Responsive Handling for Mobile */
@media screen and (max-width: 600px) {
    .wp-block-table th, 
    .wp-block-table td {
        padding: 10px 15px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 2560px) {
  .wp-block-table {
    overflow-x: auto;
    display: block;
    white-space: wrap;
	} }

  .wp-block-table th,
  .wp-block-table td {
    width: 150px  }


.wp-block-table a {
	text-decoration: none !important; }
	
	/* End of TV Table Container and Base */