/*Eptura AI at your service Homepage Fix*/
html :where([style*=border-color]) {
    border-style: none;
}
@media (max-width: 576px) {
  /*Product Announcent - Future of Intelligent Work + Built for Work (Fixes Padding on mobile below navigation)*/
    .page-id-40100 .site-content,
    .page-id-41407 .site-content {
      margin: 0px;
    }
}
.page.page-id-37041 .policy-page.footnote {
    padding: 0px 0;
    position: relative;
}

.condeco_splash .button-1 a {
	 background-color: #c6148c !important;
   color: #fff !important;
}

.banner.engage_banner.condeco_splash .main-banner .image .photo-image {
    mask-image: none !important;
}

.banner.engage_banner.condeco_splash [class*="button-"].icon.play a:before {
    background: none !important;
}

@media (min-width: 768px) {
    .banner.engage_banner.condeco_splash .image {
        max-width: none;
        margin: 0;
        padding: 80px 0;
    }
   }

.inner-banner.platform-banner.our_platform_hero.eptura-history h2{
	
	font-size: 74px;
}

/* ------------------------------------------------------------------ */
/* 1. BASE CALLOUT CARD STYLING */
/* ------------------------------------------------------------------ */
.pod-callout {
    max-width: 900px;
    margin: 4px auto; /* More margin to separate it visually */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 25px;
    
    /* Mimics the table's clean look */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* Stronger shadow than table */
    border: 1px solid #b2ebf2; /* Light border using the header color */
    
    /* Decorative element on the left edge */
    position: relative;
    overflow: hidden;
}

/* ------------------------------------------------------------------ */
/* 2. DECORATION & HEADER */
/* ------------------------------------------------------------------ */

/* The main decorative element (a solid left bar) */
.pod-callout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px; /* Width of the colored bar */
    height: 100%;
    background-color: #00796b; /* Darker teal/brand color */
}

.pod-callout h3 {
    color: #00796b; /* Use brand color for the main title */
    font-size: 1.5em;
    padding-bottom: 10px;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #e0f7fa; /* Light separator */
    padding-left: 10px; /* Space from the decorative bar */
}

/* ------------------------------------------------------------------ */
/* 3. CONTENT & TYPOGRAPHY */
/* ------------------------------------------------------------------ */

.pod-callout p, .pod-callout li {
    font-size: 0.95em;
    line-height: 1.6;
    color: #333333;
    padding-left: 10px;
}

.pod-callout .pod-list {
    margin: 15px 0 25px 0;
    padding-left: 30px; /* Space for the list bullets */
}

/* Blockquote/Quote Styling */
.pod-callout .pod-quote {
    font-style: italic;
    font-size: 1.1em;
    color: #555;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f7f9fa; /* Light background for the quote */
    border-left: 5px solid #b2ebf2; /* Quote indicator line */
    border-radius: 0 8px 8px 0;
    position: relative;
}

.pod-callout .quote-attribution {
    display: block;
    text-align: right;
    font-weight: bold;
    font-style: normal;
    margin-top: 5px;
    color: #00796b;
}

/* Listen Link Styling */
.pod-callout .listen-link {
    text-align: center;
    padding-top: 15px;
    border-top: 1px dashed #e0f7fa;
    margin-top: 20px;
}

.pod-callout .listen-link a {
    color: #00796b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.pod-callout .listen-link a:hover {
    color: #00bcd4; /* Brighter teal on hover */
    text-decoration: underline;
}

/* Mobile Responsiveness for padding */
@media screen and (max-width: 600px) {
    .pod-callout {
        padding: 15px;
        margin: 20px 10px;
    }

    .pod-callout h3 {
        padding-left: 0;
    }
}

/* ------------------------------------------------------------------ */
/* 1. BASE STYLES (Desktop/Tablet) - (No Change) */
/* ------------------------------------------------------------------ */
.fm_tool_table {
    max-width: 900px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: auto;
}

.fm_tool_table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

.fm_tool_table th {
    background-color: #e0f7fa;
    color: #00796b;
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #b2ebf2;
    font-size: 1.05em;
}

.fm_tool_table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    color: #333333;
    line-height: 1.4;
}

.fm_tool_table tbody tr:nth-child(even) {
    background-color: #f7f9fa;
}

.fm_tool_table tbody tr:hover {
    background-color: #e3f2fd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.fm_tool_table tbody tr:last-child td {
    border-bottom: none;
}

.fm_tool_table thead tr th:first-child {
    border-top-left-radius: 12px;
}

.fm_tool_table thead tr th:last-child {
    border-top-right-radius: 12px;
}


/* ------------------------------------------------------------------ */
/* 2. MOBILE-SPECIFIC STYLES (UPDATED FOR STACKED LABELS) 📱 */
/* ------------------------------------------------------------------ */
@media screen and (max-width: 600px) {

    .fm_tool_table table {
        box-shadow: none;
        border-radius: 0;
    }

    /* Hide the original table header */
    .fm_tool_table thead {
        display: none;
    }

    /* Set each row to behave like a block element ('card') */
    .fm_tool_table tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        background-color: #ffffff;
    }

    /* Reset background color and remove hover effect on mobile */
    .fm_tool_table tbody tr:nth-child(even),
    .fm_tool_table tbody tr:hover {
        background-color: #ffffff;
        cursor: default;
    }

    /* Set each cell to behave like a block element */
    .fm_tool_table td {
        /*
         *** KEY CHANGE: Remove relative positioning and padding left ***
         This allows the data to take up the full width.
        */
        display: block;
        text-align: left; /* Align the data value to the left */
        border-bottom: 1px solid #eee;
        padding-left: 20px; /* Reset padding to normal */
        padding-right: 20px;
    }

    /* Remove the last border from the last item in the card */
    .fm_tool_table tr:last-child td:last-child {
        border-bottom: none;
    }

    /* Add the column label back using the data-label attribute */
    .fm_tool_table td:before {
        content: attr(data-label);
        /*
         *** KEY CHANGE: Change display to block and remove absolute positioning ***
         This forces the label onto its own line above the data.
        */
        display: block;
        position: static; /* Remove absolute positioning */
        width: 100%;
        padding-right: 0;
        white-space: normal;
        text-align: left;
        font-weight: bold;
        color: #00796b;
        margin-bottom: 2px; /* Small space between label and data */
        font-size: 0.9em; /* Slightly smaller label */
        padding-top: 5px; /* Add space above the label */
    }
}

/*archibus customer story section styles start*/
.homepage_customer_stories.feature.archibus .quote:after, .homepage_customer_stories.feature.archibus .quote:before{
	color: #f83a59;
}

.homepage_customer_stories.feature.archibus .slick-dots li.slick-active button{
	background-color: #f83a59;
}
.homepage_customer_stories.feature.archibus .slick-dots li button{
	border: 2px solid #f83a59 !important;
}


/*serraview customer story section styles start*/
.homepage_customer_stories.feature.serraview .quote:after, .homepage_customer_stories.feature.serraview .quote:before{
	color: #46a265;
}

.homepage_customer_stories.feature.serraview .slick-dots li.slick-active button{
	background-color: #46a265;
}
.homepage_customer_stories.feature.serraview .slick-dots li button{
	border: 2px solid #46a265 !important;
}

figure.wp-caption:nth-child(2)  {
	float: right;
	margin-left: 15px;
	
}

#caption-attachment-40327{
	font-size: 18px
}
@media screen and (max-width: 600px){
	#attachment_40327{
	display: none !important;
	
	
}
}

/*Hide customer stories quote*/
.postid-40550 .header-testimonial .q-open, 
.postid-40550 .header-testimonial .q-close {
	visibility: hidden;
}

/* Container and Spacing */
.hybrid-workplace-container {
    line-height: 1.6;
    color: #333;
    max-width: 800px; /* Optional: centers the content better */
}

.workplace-section {
    margin-bottom: 40px;
}

/* Benefit Lists (Standard Text) */
.benefit-list {
    margin: 20px 0;
    padding-left: 20px;
}

.benefit-list li {
    margin-bottom: 10px;
}

/* WP Rocket Overide Styles */
[data-wpr-lazyrender] {
	content-visibility: visible;
}

/* Call-out Cards */
.eptura-card {
    background: #f9f9f9;
    border-left: 4px solid #26A199; /* Brand Accent Color */
    border-radius: 4px;
    padding: 25px;
    margin: 25px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}


.cs-card-title {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    font-size: 1.1rem !important;
    color: #0056b3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
} 

.cs-card-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cs-card-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Custom Checkmark Icon */
.cs-card-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #26A199;
    font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .eptura-card {
        padding: 15px;
    }
}

/* Table Container */
.metrics-table-container {
    margin: 30px 0;
    overflow-x: auto; /* Prevents breaking on mobile */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.modern-metrics-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-family: sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Header Styling */
.modern-metrics-table thead {
    background-color: #26a199; /* Match your brand accent */
    color: #ffffff;
    text-align: left;
}

.modern-metrics-table th {
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Cell Styling */
.modern-metrics-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

/* Category Column Accent */
.metric-category {
    font-weight: 700;
    color: #26a199;
    width: 30%; /* Fixed width for the left column on desktop */
    background-color: #fcfcfc;
}

/* Zebra Striping */
.modern-metrics-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover Effect */
.modern-metrics-table tbody tr:hover {
    background-color: #f1f5f9;
    transition: background-color 0.2s ease;
}

/* Mobile Blog Table Beginning */
@media screen and (max-width: 600px) {
    .modern-metrics-table thead {
        display: none; /* Hide headers on tiny screens */
    }
    
    .modern-metrics-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .metric-category {
        background-color: #f1f5f9;
        border-bottom: none;
        padding-bottom: 5px;
    }
}

/*mobile blog table contd*/

@media screen and (max-width: 600px) {
  /* Hide the actual header row */
  .modern-metrics-table thead {
    display: none;
  }

  /* Force table, rows, and cells to stack vertically */
  .modern-metrics-table, 
  .modern-metrics-table tbody, 
  .modern-metrics-table tr, 
  .modern-metrics-table td {
    display: block;
    width: 100%;
  }

  .modern-metrics-table tr {
    margin-bottom: 15px;
    border: 1px solid #ddd; /* Adds definition between "blocks" */
  }

  .modern-metrics-table td {
    text-align: left;
    padding-left: 50%; /* Make room for the header label */
    position: relative;
    border-bottom: 1px solid #eee;
  }

/* Force the table cell to act like a full-width container */
  .modern-metrics-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
    text-align: left; /* Ensure text is left-aligned */
    padding: 15px !important; /* Add some breathing room between blocks */
  }

  /* Style the label to wrap and sit on its own line */
  .modern-metrics-table td::before {
    content: attr(data-label);
    display: block !important; /* This forces it to its own line */
    width: 100%;
    white-space: normal; /* Allows wrapping */
    word-wrap: break-word;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px; /* Space between label and the actual value */
  }

  /* Hide the original table header since we are using labels now */
  .modern-metrics-table thead {
    display: none;
  }

  /* Optional: Force the table row to act as a wrapper */
  .modern-metrics-table tr {
    display: block;
    margin-bottom: 20px; /* Space between the "groups" of data */
    border-bottom: 2px solid #eee;
  }  
  /* Section styling to make the labels pop */
  .modern-metrics-table td::before {
    position: static;
    margin-bottom: 5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
  }
}
/*Mobile blog table end*/

.hybrid-roadmap-container {
    max-width: 900px;
    margin: 40px auto;
    line-height: 1.6;
    color: #333;
}

.roadmap-wrapper {
    position: relative;
    padding-left: 60px;
    margin-top: 40px;
}

/* The Connecting Line */
.roadmap-wrapper::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e1e8ed;
}

.roadmap-step {
    position: relative;
    margin-bottom: 60px;
}

/* The Number Bubble */
.step-number {
    position: absolute;
    left: -60px;
    width: 40px;
    height: 40px;
    background: #26a199;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 6px #fff;
}

.step-content h3 {
    margin: 0 0 10px 0;
    color: #0056b3;
    font-size: 1.5rem;
}

.step-actions {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.step-actions strong {
    color: #555;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.step-actions ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
}

.step-actions li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Outcome Box */
.step-outcome {
    background: #eef9f1;
    border-left: 4px solid #28a745;
    padding: 15px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem;
    color: #1b5e20;
}

@media (max-width: 600px) {
    .roadmap-wrapper { padding-left: 40px; }
    .roadmap-wrapper::before { left: 15px; }
    .step-number { left: -45px; width: 32px; height: 32px; font-size: 0.9rem; }
}

/* Podcast Pull-Quotes */
.podcast-quote {
    position: relative;
    margin: 40px 0;
    padding: 30px 40px;
    background: #f8faff; /* Very light blue tint */
    border-radius: 0 15px 15px 0;
    border-left: 6px solid #26a199;
    box-shadow: 10px 10px 0px #f1f1f1; /* Modern "offset" shadow */
}

.podcast-quote p {
    font-family: "Georgia", serif; /* Serifs make quotes look more authoritative */
    font-size: 1.25rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 15px !important;
}

.podcast-quote cite {
    display: block;
    font-family: sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #26a199;
    font-weight: 700;
}

/* Subtle background for the final vision section */
.eptura-vision {
    background-color: #f4f7f9;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .podcast-quote {
        padding: 20px;
        margin: 30px 0;
    }
    .podcast-quote p {
        font-size: 1.1rem;
    }
}
/*Blog post number input box styles*/
/* Container for spacing */
.asset-audit-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-family: sans-serif;
  cursor: pointer;
}

/* The small square input */
.asset-score-input {
  width: 43px !important;
  height: 30px;
  margin-right: 10px !important;
  text-align: center;
  border: 1px solid #ccc !important;
  border-radius: 4px !important;
  font-size: 16px;
  flex-shrink: 0 !important; /* Prevents the box from squishing */
}

/* Remove arrows from the number input for a cleaner look */
.asset-score-input::-webkit-outer-spin-button,
.asset-score-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.asset-score-input[type=number] {
  -moz-appearance: textfield;
}

/*customer story custom style*/

.postid-41368 .the_solution{
	background: #fff !important; 
}

.postid-41368 div.the_solution:nth-child(12){
	background:#D5D7F4 !important;
}
.postid-41368 div.the_solution:nth-child(12) > div:nth-child(1) > div:nth-child(2){
	flex-direction: row-reverse;
}

.postid-41368 div.the_solution:nth-child(12) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) > div:nth-child(1) > div:nth-child(2){
	padding-left:0px !important;
}

/* Cookiebot Styles */
@media screen and (min-width: 1280px) {
    #CybotCookiebotDialog.CybotEdge {
        box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
        height: auto;
        max-height: 50vh !important;
        max-width: 100vw;
    }
}
/* Branding on the banner */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
  display: none;
}

/* Branding on the Privacy trigger */
#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-main-logo {
    display: none;
}
@media screen and (min-width: 1280px) {
    #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton, #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:not(:last-of-type) {
        margin-bottom: 0;
        background-color: #0c1230;
    }
}
@media screen and (min-width: 1280px) {
    #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton, #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:not(:last-of-type) {
        margin-bottom: 0;
        background-color: #0c1230;
    }
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
    background-color: #0c1230 !important;
    border-color: #0c1230 !important;
    color: #ffffff;
}
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    background-color: #0c1230 !important;
    border: 2px solid #0c1230 !important;
}
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    background-color: #0c1230 !important;
    border: 2px solid #0c1230 !important;
}
/*Cookiebutton styles*/
@media screen and (min-width: 1510px) {
    #CybotCookiebotDialog.CybotEdge:not([lang=ta]):not([lang=bg]):not([lang=is]):not([lang=el]) #CybotCookiebotDialogFooter {
        position: absolute !important;
        top: 100px !important;
        left: 400px !important;
    }
}
@media screen and (min-width: 1280px) {
    #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyButtons {
        max-width: none !important;
        width: 100% !important;
    }
}
#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonsWrapper {
    display: block !important;
    width: 100% !important;
}
@media screen and (min-width: 1280px) {
    #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyButtons {
        align-items: flex-end;
        flex-direction: column-reverse;
        max-width: 0;
        width: 100%;
    }
}
@media screen and (min-width: 601px) {
    #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton, 
    #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:not(:first-of-type), 
    #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyButton:not(:last-of-type), 
    #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyButton:not(:first-of-type) {
        margin-bottom: 0;
        margin-top: 0;
        width: 33%;
        max-width: 230px !important;
    }
}

.CybotEdge button#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
.CybotEdge button#CybotCookiebotDialogBodyLevelButtonCustomize,
.CybotEdge button#CybotCookiebotDialogBodyButtonDecline {
	display: inline-block !important;
	float: left !important;
	margin-top: 0 !important;
}
@media screen and (min-width: 1280px) {
    #CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
        width: 220px !important;
        max-width: none;
    }
}

@media screen and (max-width: 567px) {
	#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton, 
	#CybotCookiebotDialogBodyButtons .CybotCookiebotDialogBodyButton:not(:last-of-type) {
	    margin-bottom: 10px !important;
	}
}	
	
	/*Product announcment minor changes*/

@media screen and (min-width: 800px){
.pa-hero-list-container{
		margin-left:160px;
	}
}

/*Radio Checklist styles*/
/* --- Radio Checklist Styling --- */
ul.radio-checklist {
  list-style-type: none !important; /* Strips default bullets */
  padding-left: 0 !important;       /* Removes default list indentation */
  margin: 20px 0;
}

ul.radio-checklist li {
  display: flex;
  align-items: flex-start;          /* Aligns radio button with the first line of text */
  margin-bottom: 15px;              /* Clean spacing between choices */
}

ul.radio-checklist input[type="radio"] {
  margin-top: 5px;                  /* Fine-tunes vertical alignment with the text */
  margin-right: 12px;               /* Pushes the label text away from the button */
  flex-shrink: 0;                   /* Stops the button from squeezing on mobile screens */
}

ul.radio-checklist label {
  cursor: pointer;                  /* Makes the text feel interactive/clickable */
  line-height: 1.5;
  color: #333;
}

/*FAQ Styles*/

.eptura-faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.eptura-faq-category {
    margin-bottom: 60px;
}

.eptura-faq-category h3 {
    font-size: 32px;
    line-height: 1.2;
    color: #091c5a;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #edf2ff;
}

.eptura-faq-item {
    border: 1px solid #e6ebf6;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    background: #fff;
    transition: all .25s ease;
}

.eptura-faq-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    border-color: #3b82f6;
}

.eptura-faq-question {
    appearance: none;
    -webkit-appearance: none;

    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;

    width: 100%;
    padding: 24px 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
}

.eptura-faq-question:after {
    content: '+';
    font-size: 28px;
    color: #2563eb;
}

.eptura-faq-item.active .eptura-faq-question:after {
    content: '−';
}

.eptura-faq-answer {
    display: none;
    padding: 0 28px 28px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 16px;
}

.eptura-faq-item.active .eptura-faq-answer {
    display: block;
}

/*paragraph spacer(mostly for customer story copy)*/

.paragraph-spacer {
	height: 30px;
}

/*ITAR Compliance blog radio buttons*/

.itar-checklist {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
  }
  .itar-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
  .itar-checklist input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.15rem;
    height: 1.15rem;
    border: 2px solid #4b5563;
    border-radius: 4px;
    margin-top: 0.8rem;
    flex-shrink: 0;
    cursor: pointer;
    display: grid;
    place-content: center;
    transition: all 0.15s ease-in-out;
  }
  .itar-checklist input[type="checkbox"]:checked {
    background-color: #2563eb;
    border-color: #2563eb;
  }
  .itar-checklist input[type="checkbox"]:checked::before {
    content: "";
    width: 0.65rem;
    height: 0.65rem;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    background-color: white;
  }
  .itar-checklist label {
    cursor: pointer;
  }

.wp-caption-text {
    font-family: "Aptos", "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
    text-align: left;
    margin-top: 0.75rem;
    padding-left: 1rem;
    border-left: 3px solid #0b0f3f; /* Eptura navy */
    font-style: normal;
    letter-spacing: 0.01em;
}

.wp-caption-text strong {
    color: #0b0f3f;
    font-weight: 600;
}

     /* ─── EPTURA AI BANNER ───────────────────────────── */
    .ai-banner-section {
      background: #0D122E;
      padding: 72px 24px;
    }

    .ai-banner-card {
      max-width: 1108px;
      margin: 0 auto;
      background:rgba(249, 250, 251, 0.07);
      border: 1px solid var(--neutral-500,#6D7483);
      border-radius: 36px;
      padding: 36px;
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .ai-banner-image {
      width: 350px;
      flex-shrink: 0;
      background: rgba(255,255,255,0.5);
      border-radius: 24px;
      padding: 20px 0 0 25px;
      display: flex;
      align-items: end;
      justify-content: center;
      align-self: stretch;
    }

    .ai-banner-image img {
      width: 100%;
      height: auto;
      display: block;
      border-bottom-right-radius: 24px;
    }

    .ai-banner-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .ai-banner-content h2 {
      color: #fff;
      font-size: 32px;
      font-weight: 500;
      line-height: 40px;
      margin-bottom: 20px;
    }

    .ai-banner-content p {
      color: #fff;
      font-size: 19px;
      font-weight: 400;
      line-height: 28px;
      margin-bottom: 28px;
      max-width: 720px;
    }

    .ai-banner-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 54px;
      padding: 12px 24px;
      border-radius: 50px;
      background: #1B4BC5;
      color: #fff;
      text-decoration: none;
      font-size: 17px;
      font-weight: 600;
      transition: background 0.2s ease;
      width: fit-content;
      margin-top: 25px;
    }

    .ai-banner-btn:hover {
      background: #163fa7;
      color: #fff;
    }

    @media (max-width: 991px) {
      .ai-banner-card {
        flex-direction: column;
        text-align: center;
      }

      .ai-banner-image {
        width: 100%;
        max-width: 420px;
        align-self: auto;
      }

      .ai-banner-content {
        align-items: center;
      }

      .ai-banner-content h2 {
        font-size: 28px;
        line-height: 36px;
      }

      .ai-banner-content p {
        font-size: 18px;
      }
    }

    @media (max-width: 767px) {
      .ai-banner-section {
        padding: 48px 20px;
      }

      .ai-banner-card {
        padding: 24px;
        border-radius: 24px;
        gap: 24px;
      }

      .ai-banner-content h2 {
        font-size: 24px;
        line-height: 32px;
      }

      .ai-banner-content p {
        font-size: 17px;
        line-height: 26px;
      }
    }

/*Integrated workplace ai banner bg color*/

.iwp-ai-banner-section{
	padding: 72px 24px;
}