/*
Theme Name: Kadence Child
Theme URI: https://www.easeautomations.com/
Description: Custom child theme for Ease Automations – professional B2B aesthetics.
Author: Ease Automations
Template: kadence
Version: 1.0.1
*/

/* ==========================================================================
   INSIGHTS ARCHIVE PAGE STYLES
   All rules scoped to .insights-archive-main to avoid affecting other pages.
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,600;1,700&family=Source+Sans+Pro:wght@400;600&display=swap');

/* --- Insights Page: Base --- */
.insights-archive-main {
    font-family: 'Source Sans Pro', sans-serif;
    color: #FFFFFF;
    background: #FFFFFF;
    padding: 0;
    margin: 0;
}

.insights-archive-main *,
.insights-archive-main *::before,
.insights-archive-main *::after {
    box-sizing: border-box;
}

.insights-archive-main a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.insights-archive-main a:hover {
    opacity: 0.85;
}

.insights-archive-main a:focus-visible,
.insights-archive-main button:focus-visible,
.insights-detail-main a:focus-visible,
.insights-detail-main button:focus-visible,
.ease-home-insights-grid a:focus-visible {
    outline: 3px solid rgba(0, 92, 230, 0.55);
    outline-offset: 4px;
}

/* --- Hero Banner --- */
.insights-hero-banner {
    background: #0056D6;
    text-align: center;
    padding: 150px 20px 100px;
    position: relative;
    overflow: hidden;
}

.insights-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 102, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.insights-hero-banner h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 4rem;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -0.5px;
}

/* --- Content Wrapper --- */
.insights-content-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 20px 100px;
    background: #FFFFFF;
}

/* --- Featured Post Card (Hero) --- */
.insights-featured-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    height: 420px;
    display: flex;
    align-items: flex-end;
}

.insights-featured-card .featured-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.insights-featured-card .featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0.85) 70%);
    z-index: 2;
}

.insights-featured-card .featured-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
}

.insights-featured-card .category-tag {
    display: inline-block;
    background: #0056D6;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.insights-featured-card .featured-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: regular;
    font-size: 3rem;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 14px 0;
}

.insights-featured-card .featured-excerpt {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.insights-featured-card .featured-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #ACCDFF;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.insights-featured-card .featured-link .arrow {
    transition: transform 0.2s ease;
}

.insights-featured-card .featured-link:hover .arrow {
    transform: translateX(4px);
}

/* --- Layout Grid (Cards + Sidebar) --- */
.insights-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
}

/* --- Cards Grid (2 columns inside the left area) --- */
.insights-posts-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* --- Individual Post Card --- */
.insight-card {
    background: #005CE6;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.insight-card .insight-thumbnail {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.insight-card .insight-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-card .insight-thumbnail .category-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-block;
    background: #0056D6;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 8px;
    z-index: 2;
}

.insight-card .insight-content {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.insight-card .insight-meta {
    font-size: 0.75rem;
    color: #ACCDFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-family: 'Source Sans Pro', sans-serif;
}

.insight-card .insight-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.35;
    color: #FFFFFF;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-card .insight-title a {
    color: #FFFFFF;
}

.insight-card .insight-excerpt {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.insight-card .insight-excerpt p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* --- Sidebar --- */
.insights-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Category Filter Tabs */
.sidebar-filters {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 24px;
}

.sidebar-filters .filter-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-filters .filter-tab {
    display: block;
    padding: 10px 16px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    color: #374151;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.15s ease;
    border: none;
    background: none;
    text-align: left;
}

.sidebar-filters .filter-tab:hover {
    background: #F3F4F6;
}

.sidebar-filters .filter-tab.active,
.sidebar-filters .filter-tab[aria-pressed="true"] {
    background: #0056D6;
    color: #FFFFFF;
    font-weight: 600;
}

/* Newsletter Box */
.sidebar-newsletter {
    background: #E9F2FF;
    border-radius: 24px;
    padding: 50px 28px 32px;
    color: #FFFFFF;
}

.sidebar-newsletter h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 40px;
    margin: 0 0 10px 0;
    color: #005CE6;
}

.sidebar-newsletter p {
    font-size: 20px;
    color: #2e2e2e;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.sidebar-newsletter .newsletter-form-wrap input[type="email"],
.sidebar-newsletter .newsletter-form-wrap input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 0.9rem;
    margin-bottom: 14px;
    outline: none;
}

.sidebar-newsletter .newsletter-form-wrap input[type="email"]::placeholder,
.sidebar-newsletter .newsletter-form-wrap input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-newsletter .newsletter-form-wrap button,
.sidebar-newsletter .newsletter-form-wrap input[type="submit"],
.sidebar-newsletter .newsletter-form-wrap .forminator-button {
    width: 100%;
    padding: 12px 16px;
    background: #0066FF;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.sidebar-newsletter .newsletter-form-wrap button:hover,
.sidebar-newsletter .newsletter-form-wrap input[type="submit"]:hover,
.sidebar-newsletter .newsletter-form-wrap .forminator-button:hover {
    background: #0052CC;
}

.sidebar-newsletter .newsletter-privacy {
    font-size: 14px;
    color: #2e2e2e;
    text-align: center;
    margin-top: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.sidebar-newsletter .forminator-ui#forminator-module-941.forminator-design--default .forminator-button-submit,
.sidebar-newsletter .forminator-ui#forminator-module-941.forminator-design--default .forminator-input {
    border-radius: 8px;
	width: 100%;
}

/* ==========================================================================
   INSIGHTS DETAIL PAGE STYLES  (scoped to .insights-detail-main / idh-*)
   ========================================================================== */

.insights-detail-main {
    font-family: 'Source Sans Pro', sans-serif;
    color: #1A1A2E;
    background: #FFFFFF;
    padding: 0;
    margin: 0;
}

.insights-detail-main *,
.insights-detail-main *::before,
.insights-detail-main *::after {
    box-sizing: border-box;
}

/* ---- Hero ---- */
.idh-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: flex-end;
    background-color: #051C35;       /* fallback when no image */
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.idh-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(5,  28,  53,  0.55) 0%,
        rgba(40, 76, 151,  0.70) 50%,
        rgba(4,  26,  48,  0.92) 100%);
    z-index: 1;
}

.idh-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px 60px;
}

/* Breadcrumb */
.idh-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    flex-wrap: wrap;
	line-height:15px;
}

.idh-breadcrumb a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.idh-breadcrumb a:hover {
    color: #FFFFFF;
}

.idh-sep {
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
}

.idh-bc-current {
    color: #ACCDFF;
    max-width: 320px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Category tag */
.idh-cat-tag {
    display: inline-block;
    background: #0066FF;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 16px;
}

/* Title */
.idh-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: regular;
    font-size: 4rem;
    line-height: 1.12;
    color: #FFFFFF;
    margin: 0 0 24px;
}

/* Meta row */
.idh-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    flex-wrap: wrap;
}

.idh-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.idh-author {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.82rem;
}

.idh-dot {
    color: rgba(255,255,255,0.4);
}

.idh-read-time,
.idh-date,
.idh-read-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ---- Content body ---- */
.idh-body-wrap {
    display: flex;
    max-width: 1280px;
    margin: 0 auto;
    gap: 40px;
	padding: 70px 20px 70px;
}

.idh-body {
    background: #FFFFFF;
    padding: 60px 20px;
}

.idh-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.5;
    color: #374151;
}

.idh-content h2,
.idh-content h3,
.idh-content h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #0A1628;
    margin-top: 36px;
    margin-bottom: 12px;
}

.idh-content h2 { font-size: 1.75rem; }
.idh-content h3 { font-size: 1.4rem; }

.idh-content p { margin-bottom: 1.4em; }

.idh-content blockquote {
    border-left: 4px solid #0066FF;
    margin: 32px 0;
    padding: 10px 24px;
    background: #F8FAFC;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.25;
    color: #0A1628;
}

.idh-content a {
    color: #0066FF;
    text-decoration: underline;
}

.idh-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

aside.idh-author-sidebar {
    max-width: 100%;
}

.idh-author-box {
    background: #005CE6;
    border-radius: 12px;
    padding: 24px;
    color: #fff;
}

button#idh-share-btn {
    border-radius: 50px;
    width: 50px;
    height: 50px;
    line-height: 10px;
}

button#idh-share-btn[aria-expanded="true"] {
    background: #0A2540;
    color: #FFFFFF;
}

aside.idh-share-col {
    text-align: left;
    position: sticky;
    top: 110px;
    align-self: flex-start;
    z-index: 5;
}

span.idh-share-label,
p.idh-author-box-label {
    font-size: 14px;
    font-weight: 600;
}

/* ---- Related Insights ---- */
.idh-related {
    background: #E9F2FF;
    padding: 72px 20px 80px;
}

.idh-related-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.idh-related-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #0A1628;
    margin: 0 0 40px;
    text-align: left;
}

.idh-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Related card */
.idh-card {
    background: #005CE6;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.idh-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.idh-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.idh-card-thumb {
    height: 190px;
    background-size: cover;
    background-position: center;
    background-color: #1a2f4e;
}

.idh-card-body {
    padding: 22px 22px 26px;
}

.idh-card-cat {
    display: inline-block;
    background: #0066FF;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.idh-card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0 0 12px;
}

.idh-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}

a.idh-view-all {
    display: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1280px) {
    .insights-layout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .idh-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Archive */
    .insights-hero-banner h1 { font-size: 2rem; }
    .insights-featured-card { height: 320px; }
    .insights-featured-card .featured-title { font-size: 1.6rem; }
    .insights-featured-card .featured-content { padding: 24px; }
    .insights-posts-col { grid-template-columns: 1fr; }
	.idh-related-heading {margin-bottom:20px;}

    /* Detail hero */
    .idh-hero { min-height: 420px; }
    .idh-inner { padding: 80px 20px 48px; }
    .idh-title { font-size: 2.5rem; }

    /* Related grid */
    .idh-related-grid { grid-template-columns: 1fr; }
    .idh-related-heading { font-size: 1.5rem; }

    /* Content */
    .idh-body { padding: 40px 16px; }
	.idh-body-wrap { display: block; padding: 50px 20px 50px; }
    aside.idh-share-col {
        position: static;
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .idh-title { font-size: 2rem; }
    .idh-inner { padding: 32px 16px 40px; }
}

/* ==========================================================================
   HOMEPAGE INSIGHTS SHORTCODE
   Scoped to .ease-home-insights-grid only.
   ========================================================================== */

.ease-home-insights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

.ease-home-insights-grid .insights-left-col,
.ease-home-insights-grid .insights-right-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.ease-home-insights-grid .ease-insight-empty {
    border: 1px solid rgba(10, 37, 64, 0.12);
    padding: 18px 18px;
    color: rgba(10, 37, 64, 0.75);
    background: #FFFFFF;
    font-size: 0.95rem;
}

.ease-home-insights-grid .ease-insight-card {
    border: 1px solid rgba(10, 37, 64, 0.12);
    background: #FFFFFF;
    color: #0A2540;
    padding: 40px;
    transition: border-color 0.18s ease, transform 0.18s ease;
	border-radius: 24px;
}

.ease-home-insights-grid .ease-insight-card:hover {
    border-color: rgba(0, 92, 230, 0.45);
    transform: translateY(-2px);
}

.ease-home-insights-grid .ease-insight-card__meta {
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #005CE6;
    margin-bottom: 10px;
	font-weight:700;
}

.ease-home-insights-grid .ease-insight-card__title {
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 10px 0;
    font-weight: 650;
}

.ease-home-insights-grid .ease-insight-card__title-link {
    color: inherit;
    text-decoration: none;
}

.ease-home-insights-grid .ease-insight-card__excerpt {
    font-size: 20px;
    line-height: 1.55;
    color: rgba(10, 37, 64, 0.78);
    margin-bottom: 14px;
}

.ease-home-insights-grid .ease-insight-card__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #005CE6;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
	font-size:16px;
}

.ease-home-insights-grid .ease-insight-card__cta-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.ease-home-insights-grid .ease-insight-card__arrow {
    transition: transform 0.18s ease;
}

.ease-home-insights-grid .ease-insight-card__cta-link:hover .ease-insight-card__arrow {
    transform: translateX(2px);
}

.site-footer a.social-button[href=""],
.site-footer a.social-button:not([href]) {
    display: none !important;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
    }
}

/* Featured card (right) */
.ease-home-insights-grid .ease-insight-card--featured {
    padding: 0;
    background: #0A2540;
    min-height: 578px;
	border: 0;
}

.ease-home-insights-grid .ease-insight-card__featured-link {
    position: relative;
    display: block;
    height: 100%;
    min-height: 420px;
    background-color: #0A2540;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    text-decoration: none;
	border-radius: 24px;
}

.ease-home-insights-grid .ease-insight-card__featured-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 37, 64, 0.25) 0%, rgba(10, 37, 64, 0.92) 72%);
    pointer-events: none;
	border-radius:24px;
}

.ease-home-insights-grid .ease-insight-card__featured-content {
    position: relative;
    z-index: 1;
    padding: 26px 26px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
}

.ease-home-insights-grid .ease-insight-card__meta--on-dark,
.ease-home-insights-grid .ease-insight-card__title--on-dark,
.ease-home-insights-grid .ease-insight-card__excerpt--on-dark,
.ease-home-insights-grid .ease-insight-card__cta--on-dark {
    color: #FFFFFF;
}

.ease-home-insights-grid .ease-insight-card__excerpt--on-dark {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.ease-home-insights-grid .ease-insight-card__cta--on-dark .ease-insight-card__cta-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ACCDFF;
    font-weight: 650;
	font-size:16px;
}

.ease-home-insights-grid .ease-insight-card__featured-link:hover .ease-insight-card__cta-text {
    color: #fff;
}

.ease-home-insights-grid .ease-insight-card__featured-link:hover .ease-insight-card__arrow {
    transform: none;
}

@media (max-width: 1024px) {
    .ease-home-insights-grid {
        grid-template-columns: 1fr;
    }
    .ease-home-insights-grid .insights-right-col {
        order: -1;
    }
    .ease-home-insights-grid .ease-insight-card--featured,
    .ease-home-insights-grid .ease-insight-card__featured-link {
        min-height: 360px;
    }
}

/* ==========================================================================
   GLOBAL COLOR STABILITY FIXES
   Prevent non-brand blue flashes in footer/Elementor hover-scroll states.
   ========================================================================== */

/* Force Elementor global primary/accent to the site's brand blue. 
body[class*="elementor-kit-"] {
    --e-global-color-primary: #005CE6;
    --e-global-color-accent: #005CE6;
}*/

/* Lock layout base layers so overscroll/compositing does not reveal stray blue. 
html,
body,
.site,
.site-container {
    background-color: #FFFFFF;
}*/

/* Keep footer background stable even during hover/transform repaint. 
#colophon,
.site-footer-wrap,
.site-footer-wrap .site-footer-row-container,
.site-footer-wrap .site-footer-row-container-inner {
    background-color: #041A30 !important;
}*/

/* ==========================================================================
   EASE Careers details page COLOR STABILITY FIXES
   ========================================================================== */

.ease-careers-job__hero {
    background: #005CE6;
}

.ease-careers-job__hero-pill {
    background: #E9F2FF;
    color: #2e2e2e;
}

.ease-careers-job__cta {
	background: #E9F2FF;
}

.ease-careers-job__nav-link.is-active, .ease-careers-job__nav-link:hover, .ease-careers-job__nav-link:focus {
    background: #E9F2FF;
}

.ease-careers-job__cta-title {
    color: #111;
}

.ease-careers-pill {
    background: #E9F2FF !important;
}

.ease-careers-job__cta-copy, .ease-careers-pill {
    color: #2e2e2e;
}

/* 1. Define the fade-in keyframes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 2. Apply it to your class */
.insights-hero-banner, .insights-content-wrap, .idh-hero, .idh-body-wrap {
  animation: fadeIn 1s ease-in forwards;
}

.ease-home-insights-grid .ease-insight-card__cta-link:hover {
	    animation-name: elementor-animation-push;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    text-decoration: none;
    text-decoration-thickness: 0;
    text-underline-offset: 0;
}

/* 1. Define the keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); /* Starts 20px lower than its actual position */
  }
  to {
    opacity: 1;
    transform: translateY(0);    /* Moves to its original position */
  }
}

/* 2. Create the animation utility class */
.insights-featured-card, .insights-layout-grid, .insights-hero-banner h1, .idh-related-inner, .idh-inner, .idh-body-wrap {
  opacity: 0;                    /* Keeps the element hidden until the animation starts */
  animation: fadeInUp 1s ease-out forwards;
}

.ease-careers-job__nav-link:hover {
  color: #2e2e2e;
}

/* ==========================================================================
   Responsive Fixes CSS
   ========================================================================== */


@media (max-width: 834px) {
	.footer-widget-area.content-align-left .footer-navigation {
    	padding-left: 0 !important;
	}
	.insights-hero-banner h1 {
    	font-size: 3rem;
  	}
	.idh-related {
  		padding: 50px 20px 50px;
	}
	.contact-details {
  		padding-left: 20px !important;
  		padding-right: 20px !important;
	}
	.idh-inner { padding: 100px 20px 48px; }
	.insights-featured-card .featured-excerpt {  display: none;}
}

 .insights-featured-card .featured-title {
    letter-spacing: 2px;
  }
.idh-content h2, .idh-content h3, .idh-content h4 {line-height:34px; letter-spacing: 2px;}