/* ============================================
   Ulises Elementor Addons — Featured Posts
  
   ============================================ */

/* ============================================
   Custom Post Info Widget Styles
   ============================================ */

/* Post info item container */
.uea-custom-post-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.uea-post-info-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Icon styles */
.uea-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.uea-item-icon i,
.uea-item-icon svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
    line-height: 1;
}

/* Avatar styles */
.uea-avatar-container {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    isolation: isolate; /* Creates a new stacking context */
    contain: layout; /* Prevents layout changes from affecting other elements */
    box-sizing: border-box;
}

.uea-custom-avatar,
.uea-avatar-container img {
    display: block;
    border-radius: 50%;
    object-fit: cover;
    margin: 0; /* Reset any default margins */
    padding: 0; /* Reset any default padding */
    box-sizing: border-box;
    max-width: 100%;
    height: auto;
}

/* Author text container */
.uea-author-text {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px; /* Space between avatar and text */
    box-sizing: border-box;
}

/* Ensure post info items don't interfere with each other */
.uea-post-info-item {
    contain: layout; /* Prevents layout changes from affecting other items */
}

/* Divider styles */
.uea-custom-post-info .uea-post-info-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    margin-right: 8px;
}

/* Dot divider (default) */
.uea-custom-post-info[data-divider-type="dot"] .uea-post-info-item:not(:last-child)::after,
.uea-custom-post-info .uea-post-info-item:not(:last-child)::after {
    border-radius: 50%;
    background-color: #3b82f6;
    width: 4px;
    height: 4px;
}

/* Line divider */
.uea-custom-post-info[data-divider-type="line"] .uea-post-info-item:not(:last-child)::after {
    border-radius: 0;
    background-color: #3b82f6;
    width: 1px;
    height: 12px;
    vertical-align: middle;
}

/* Pipe divider */
.uea-custom-post-info[data-divider-type="pipe"] .uea-post-info-item:not(:last-child)::after {
    content: "|";
    background: none;
    color: #3b82f6;
    width: auto;
    height: auto;
    font-size: 14px;
    font-weight: 300;
}

/* Bullet divider */
.uea-custom-post-info[data-divider-type="bullet"] .uea-post-info-item:not(:last-child)::after {
    content: "•";
    background: none;
    color: #3b82f6;
    width: auto;
    height: auto;
    font-size: 16px;
    font-weight: 400;
}

/* Link styles */
.uea-post-info-item a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.uea-post-info-item a:hover {
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .uea-custom-post-info {
         align-items: flex-start;
        gap: 4px;
    }
    
    .uea-post-info-item {
        margin-bottom: 4px;
    }
}

/* ---- Design tokens ---- */
:root{
  --uea-title:#203656;
  --uea-text:#8F9BAD;
  --uea-border:#EBEBEB;
  --uea-card-bg:#fff;
  --uea-grad-1:#2563eb;   /* blue */
  --uea-grad-2:#3b82f6;   /* lighter blue */
  --uea-overlay:#203656;  /* dark blue overlay */
  --uea-radius:12px;
  --uea-gap:24px;
}

/* ========================
   Section header helpers
   ======================== */
.uea-section-header{ margin-bottom:30px; position:relative; }
.uea-section-header img.wave,
.uea-section-header svg{ margin-top:10px; }
.uea-section-title{ font-size:24px; margin:0; color:var(--uea-title); }

/* ========================
   Featured Posts wrapper 
   ======================== */

/* Container card */
.uea-featured-wrap .uea-card{
  background:var(--uea-card-bg);
  border:1px solid var(--uea-border);
  border-radius:16px;
  padding:30px 30px 20px 30px;
  box-shadow:0 2px 10px rgba(32,54,86,.04);
}

/* Grid: left big, right list */
.uea-featured-wrap .uea-grid{
  display:grid;
  grid-template-columns:calc(50% - 8px) calc(50% - 8px);
  gap:5px;
  align-items:start;
  width:100%;
  box-sizing:border-box;
}
@media (max-width:992px){
  .uea-featured-wrap .uea-grid{ grid-template-columns:1fr; }
}

/* Left (featured) */
.uea-left{ 
  width:100%; 
  box-sizing:border-box;
  padding-right:8px;
  border-right: none !important;
}
.uea-left .uea-cover{ 
  position:relative; 
  overflow:hidden; 
  border-radius:var(--uea-radius);
  display:block;
  width:100%;
  height:auto;
}
.uea-left .uea-cover img{
  width:100%; 
  height:auto; 
  display:block; 
  object-fit:cover;
  border-radius:var(--uea-radius);
  transform:scale(1); 
  transition:transform .3s ease-in-out;
  max-width:100%;
  height:auto;
}
.uea-left .uea-cover:hover img{ 
  transform:scale(1.05); /* Reduced scale for internal zoom effect */
}


 




/* Meta row under the featured post */
.uea-meta-row{
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  margin:14px 0 8px; color:var(--uea-text); font-size:14px;
}

.uea-author{ display:inline-flex; align-items:center; gap:8px; }
.uea-author-avatar{ 
  width:28px !important; 
  height:28px !important; 
  border-radius:50% !important; 
  object-fit:cover !important; 
}
.uea-author-name{ color:inherit; font:inherit; text-decoration:none; }
.uea-author-name:hover{ color: #1a75e2;  }

/* Dot separator between author and date */
.uea-dot{
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1a75e2;
  opacity: .6;
  display: inline-block;
}

/* Date */
.uea-date{
  opacity: .9;
}

/* Inherit meta color/typography from your Style tab */
.uea-meta,
.uea-meta a,
.uea-date{
  color: #1a75e2;
  font: inherit;
}

/* Author/category chip (circular logo) */
.uea-chip{
  display:inline-flex !important; 
  align-items:center !important; 
  justify-content:center !important;
  width:32px !important; 
  height:32px !important; 
  border-radius:50% !important;
  font-weight:700 !important; 
  font-size:10px !important; 
  color:#fff !important;
  background:var(--uea-grad-1) !important;
  margin-right:8px !important;
  text-align:center !important;
  line-height:1.1 !important;
  flex-direction:column !important;
  gap:0 !important;
  padding:0 !important;
  min-width:32px !important;
  min-height:32px !important;
}

/* Title + excerpt */
.uea-title{ font-size:26px; line-height:1.25; margin:6px 0 10px; }
.uea-title, .uea-title a, .uea-title h3, .uea-title h3 a{ 
  color:#1a1a1a !important; 
  text-decoration:none; 
  transition:color .2s; 
}
.uea-title a:hover, .uea-title h3 a:hover{ color:var(--uea-grad-1) !important; }

 

/* Right side list */
.uea-right{ 
  display:grid; 
  gap:18px; 
  width:100%; 
  box-sizing:border-box;
  padding-left:8px;
}
.uea-sep{
  border:0; height:1px;
  background:linear-gradient(to left,var(--uea-border) 0%, transparent 100%);
}
.uea-mini{
  display:grid; grid-template-columns:120px 1fr;
  gap:14px; align-items:start;
}
.uea-mini-thumb{
  position:relative; overflow:hidden; border-radius:var(--uea-radius);
}
.uea-mini-thumb img{
  width:100%; height:80px; object-fit:cover; display:block; border-radius:var(--uea-radius);
  transform:scale(1); transition:transform .3s ease-in-out;
}
.uea-mini-thumb:hover img{ transform:scale(1.07); }
.uea-mini-title{ font-size:16px; line-height:1.3; margin:0 0 3px; }
.uea-mini-title, .uea-mini-title a, .uea-mini-title h4, .uea-mini-title h4 a{ 
  color:#1a1a1a !important; 
  text-decoration:none; 
  transition:color .2s; 
}
.uea-mini-title a:hover, .uea-mini-title h4 a:hover{ color:var(--uea-grad-1) !important; }
.uea-mini-date{ color:var(--uea-text) !important; font-size:12px; }

@media (max-width:767px){
  .uea-mini{ grid-template-columns:110px 1fr; }
}

/* Optional category badge (for over-image or above titles) */
.uea-cat-badge{
  display:inline-block; padding:6px 11px; line-height:1;
  color:#fff; font-size:13px; border-radius:25px; font-weight:500;
  background:var(--uea-grad-1);
}

/* Optional "View all" link next to section title */
.uea-viewall{ color:var(--uea-text); font-weight:700; text-decoration:none; transition:color .2s; }
.uea-viewall:hover{ color:var(--uea-grad-1); }

/* ========================
   Extras adapted from main.scss
   (only pieces relevant to the News block)
   ======================== */

/* Over-content card variant (dark overlay text on image) */
.uea-over{
  position:relative;
}
.uea-over .uea-cover{ position:relative; overflow:hidden; border-radius:var(--uea-radius); }
.uea-over .uea-cover::after{
  content:""; position:absolute; inset:0;
  background:var(--uea-overlay); opacity:.6; pointer-events:none;
}
.uea-over .uea-cover img{ height:300px; width:100%; object-fit:cover; display:block; }
.uea-over .uea-details{
  position:absolute; left:20px; right:20px; bottom:20px; z-index:1;
}
.uea-over .uea-title{ font-size:22px; margin:6px 0 8px; }
.uea-over .uea-title a{ color:#fff; }
.uea-over .uea-title a:hover{ color:#fff; }
.uea-over .uea-meta,
.uea-over .uea-meta a{ color:#1a75e2;  }
.uea-over .uea-dot{ background:rgba(255,255,255,.5); }

/* Small-list divider style from main.scss (.post-list-sm) */
.uea-list-sm + .uea-list-sm{
  position:relative;
}
.uea-list-sm + .uea-list-sm::before{
  content:""; display:block; height:1px; margin:20px 0;
  background:linear-gradient(to left,#EBEBEB 0%, transparent 100%);
}

/* Carousel nav button baseline (if you add a slick carousel later) */
.uea-slick-prev,
.uea-slick-next{
  width:30px; height:30px; line-height:30px; text-align:center;
  background:transparent; border-radius:50%; border:1px solid var(--uea-border);
  position:absolute; top:50%; transform:translateY(-50%); z-index:1;
  transition:all .3s ease-in-out;
}
.uea-slick-prev:hover,
.uea-slick-next:hover{ background:#fff; border-color:var(--uea-border); }

/* Utility: solid blue button chip feel (used for numbered items if needed) */
.uea-circle-badge{
  color:#FFF; display:inline-block; border:2px solid #FFF; border-radius:50%;
  font-size:12px; font-weight:700; width:24px; height:24px; line-height:22px; text-align:center;
  box-shadow:0 2px 4px rgba(0,0,0,.15);
  background:var(--uea-grad-1);
}

/* Smooth transitions baseline */
.uea-featured-wrap a,
.uea-featured-wrap img{ transition:all 0.3s ease-in-out; }


/* Meta row — inline, no bullets, custom dot separator */
.uea-meta,
.post .meta{
  margin: 0;
  padding: 0 !important;
  list-style: none !important;
  display: flex;
  align-items: center;
  gap: 10px;            /* space between items (author • date) */
  font-size: 14px;
  color: var(--uea-text, #8F9BAD);
}

/* Each item inline */
.uea-meta li,
.post .meta li{
  display: inline-flex;
  align-items: center;
  margin: 0;           /* kill theme defaults */
}

/* Dot separator between items */
.uea-meta li + li,
.post .meta li + li{
  position: relative;
  padding-left: 14px;   /* room for the dot */
}
.uea-meta li + li::before,
.post .meta li + li::before{
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;  /* dot color */
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}


/* Links & hover color */
.uea-meta a,
.post .meta a{
  color: var(--uea-text, #1a75e2);
  text-decoration: none;
  font-weight: 400;
}
.uea-meta a:hover,
.post .meta a:hover{
  color: var(--uea-dark, #1a75e2);
}

/* Optional: author avatar (if present) */
.uea-meta img.author,
.post .meta img.author{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  vertical-align: middle;
}

/* Ensure Elementor/global UL rules don’t interfere */
.uea-wrap .uea-meta{ padding-left: 0 !important; }
.uea-wrap ul.uea-meta{ list-style: none !important; }

/* === Meta row: make it match the reference screenshot === */

/* Container (UL) */
.uea-meta,
.post .meta{
  display:flex;
  align-items:center;
  gap:15px;                         /* we’ll manage spacing via items */
  margin:0;
  padding:0 !important;
  list-style:none !important;
  font-size:14px;
  color:#8F9BAD;
}

/* Author item (avatar + name) */
.uea-meta li:first-child,
.post .meta li:first-child{
  display:inline-flex;
  align-items:center;
  margin:0;
  padding:0;
}

/* Avatar */
.uea-meta img.author,
.post .meta img.author{
  width:28px;
  height:28px;
  border-radius:50%;
  object-fit:cover;
  margin-right:10px;
  display:inline-block;
}

/* Author link – kill any pills/backgrounds coming from theme */
.uea-meta a,
.post .meta a{
  color:#8F9BAD;
  text-decoration:none;
  font-weight:400;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  padding:0 !important;
  border-radius:0 !important;
}
.uea-meta a:hover,
.post .meta a:hover{
  color:#1a75e2;
}

/* Separator dot before the date */
.uea-meta li + li,
.post .meta li + li{
  position:relative;
  margin-left:16px;              /* space after author */
  padding-left:16px;             /* room for the dot */
}
.uea-meta li + li::before,
.post .meta li + li::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:4px;
  height:4px;
  border-radius:50%;
  background:#cbd5e1;            /* dot color */
  transform:translateY(-50%);
}

/* Date text */
.uea-meta .uea-date,
.post .meta .uea-date{
  color:#8F9BAD;
  white-space:nowrap;            /* keep date on one line */
}

/* Ensure no default UL padding leaks in from Elementor/global CSS */
.uea-wrap .uea-meta{ padding-left:0 !important; }

/* Gravatar avatar circular styling */
.avatar.avatar-28.photo.uea-author-avatar,
.uea-author-avatar.avatar,
.uea-meta .avatar,
.uea-meta img.avatar{
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: inline-block !important;
}

/* ========================
   Post Thumbnail Styling
   ======================== */
.post .thumb img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* ========================
   Elementor Image Styling
   ======================== */
.elementor img {
    border-width: initial;
    border-style: none;
    border-color: initial;
    box-shadow: none;
}

.elementor img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    max-width: 100%;
}

/* === Featured Post — overlay style (SCOPED TO WIDGET) === */
.elementor-widget-uea-featured-post { 
/* widget-scoped design tokens */
--uea-pad-x: 28px;
--uea-pad-y: 26px;
--uea-gap-sm: 10px;
--uea-gap-lg: 14px;
}

/* Card's outer radius and subtle ring */
.elementor-widget-uea-featured-post .uea-featured-wrap{
border-radius: 22px;
background: rgba(255,255,255,.06);
}

/* Core stacked layout */
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-card > .uea-left{
display: grid;
border-radius: 10px;
overflow: hidden;
position: relative;
isolation: isolate;
box-shadow: 0 10px 30px rgba(0,0,0,.22);
background: #0b0f14;
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-card > .uea-left > *{
grid-area: 1 / 1;
}

/* Cover */
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-cover{ 
line-height: 0; 
z-index: 1; 
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-cover img{
width: 100%;
height: auto;
display: block;
aspect-ratio: 16/9;
object-fit: cover;
filter: brightness(.9) saturate(1.05);
transition: transform .6s ease, filter .25s ease;
}

/* Gradient overlay */
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-card > .uea-left::after{
content: "";
z-index: 2;
grid-area: 1 / 1;
pointer-events: none;
 
}

/* Hover */
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-card > .uea-left:hover .uea-cover img{
transform: scale(1.02);
filter: brightness(.95);
}

/* Category badge row */
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-cat-row{
z-index: 3;
align-self: end;
justify-self: start; 
}

/* Category chip */
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-cat-badge{
display: inline-block;
padding: 6px 11px;
font-size: 13px;
line-height: 1;
color: #fff;
background: linear-gradient(45deg, #ff9933, #ff6600) !important;
border-color: #ff6600 !important;
border-radius: 999px;
text-decoration: none;
box-shadow: 0 4px 18px rgba(0,0,0,.25);
transition: transform .2s ease, opacity .2s ease;
}



.elementor-widget-uea-featured-post .uea-featured-wrap .uea-cat-badge:hover{
transform: translateY(-1px);
opacity: .95;
}

/* Title (SCOPED!) */
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-title{
z-index: 3;
align-self: end;

max-width: min(54ch, 92%);
font-weight: 800;
line-height: 1.15;
letter-spacing: .2px;
text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-title a{
color: #fff !important;
text-decoration: none;
}

/* Meta row */
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-meta{
z-index: 3;
align-self: end;
display: inline-flex;
align-items: center;
gap: 12px;
 
color: rgba(255,255,255,.92);
font-weight: 600;
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-author{
display: inline-flex; align-items: center; gap: 8px;
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-author-avatar{
width: 28px; height: 28px; border-radius: 50%;
box-shadow: 0 0 0 2px rgba(255,255,255,.15);
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-author-name{
color: rgba(255,255,255,.95); text-decoration: none;
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-dot{
width: 6px; height: 6px; border-radius: 50%;
background: rgb(26, 117, 226);
display: inline-block;
}

/* MOBILE */
@media (max-width: 767px){
.elementor-widget-uea-featured-post{
  --uea-pad-x: 18px;
  --uea-pad-y: 18px;
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-title{ 
  font-size: 1.5rem; 
  line-height: 1.2;
}
.elementor-widget-uea-featured-post .uea-featured-wrap .uea-cat-row{ 
 
}
}



/* =========================
   Tabbed Posts (SCOPED)
   ========================= */
   .elementor-widget-uea-tabbed-posts {
    --tp-border: #EBEBEB;
    --tp-pill-bg: #ff7a00;
    --tp-pill-fg: #fff;
    --tp-title: #203656;   /* like Poppins headings */
    --tp-date:  #8F9BAD;
  }
  
  /* Card frame */
  .elementor-widget-uea-tabbed-posts .uea-tabs-card{
    background:#fff;
    border:1px solid var(--tp-border);
    border-radius:10px;             /* .rounded */
    padding:30px 30px 10px 30px;
    /* .post-tabs { padding:30px } */
  }
  
  /* Tabs (single “Recent” pill) */
  .elementor-widget-uea-tabbed-posts .uea-tabs-nav{
    gap:12px; padding:0; margin:0; list-style:none;
  }
  .elementor-widget-uea-tabbed-posts .uea-tabs-item{ display:inline-flex; }
  .elementor-widget-uea-tabbed-posts .uea-tabs-button{

  border: none;
  border-radius: 0;
  background: none;
  color: #1F2A44;
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  line-height: 1.2;
  cursor: default;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;


   }


   .elementor-widget-uea-tabbed-posts .uea-tabs-divider {
    display: block;
    width: 80%;
    height: 1.2px;
    margin: 25px auto;
    background: linear-gradient(90deg, transparent, #1A75E2, transparent);
    border: none;
    outline: none;
  }
 



  

  
  /* Tab content */
  .elementor-widget-uea-tabbed-posts .uea-tabs-content{ 
    position:relative; 
    margin-top:20px;                /* .post-tabs .tab-content { margin-top:30px } */
  }
  
  /* Row layout (float thumb like source; 60px circle) */
  .elementor-widget-uea-tabbed-posts .uea-tabs-mini-row{
    clear:both; 
    padding:25px 0;

  }
  .elementor-widget-uea-tabbed-posts .uea-tabs-mini-row.has-sep{


    
    border-top:0;                             /* replace solid line with gradient */
    background-image: linear-gradient(to left, var(--tp-border) 0%, transparent 100%);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% 1px;   
    
    /* 1px high separator at top */
  }
  
  /* thumb circle (60x60) */
  .elementor-widget-uea-tabbed-posts .uea-tabs-thumb{
    float:left; position:relative; max-width:60px; width:60px; height:60px;
    border-radius:50%; overflow:hidden; display:block; line-height:0;
  }
  .elementor-widget-uea-tabbed-posts .uea-tabs-thumb img{
    width:100%; 
    border-radius:50%;
    transform: scale(1);
    transition: 0.3s ease-in-out;
  }
  .elementor-widget-uea-tabbed-posts .uea-tabs-thumb:hover img{
    transform: scale(1.08);
  }
  
  /* details block to the right of thumb */
  .elementor-widget-uea-tabbed-posts .uea-tabs-mini-body{
    margin-left:80px; /* 60 thumb + 20 gap like source */
  }
  
  /* Title (15px, bold) */
  .elementor-widget-uea-tabbed-posts .uea-tabs-mini-title{
    margin:0;                        /* .my-0 */
    font-size:15px; 
    font-weight:700;
    line-height:1.4;
    color:var(--tp-title);
  }
  .elementor-widget-uea-tabbed-posts .uea-tabs-mini-title a{
    color:inherit; text-decoration:none;
    transition: color 0.3s ease;
  }
  .elementor-widget-uea-tabbed-posts .uea-tabs-mini-title a:hover{

    color:#1a75e2;
  }
  
  /* Date (14px, gray) */
  .elementor-widget-uea-tabbed-posts .uea-tabs-mini-date{
    display:block;
    margin-top:.25rem;               /* .mt-1 */
    margin-bottom:0;                 /* .mb-0 */
    font-size:14px;
    color:var(--tp-date);            /* .post .meta { color:#8F9BAD } */
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
  }
  
  /* Small screens: tighten spacing a bit */
  @media (max-width:575px){
    .elementor-widget-uea-tabbed-posts .uea-tabs-button{ 
      padding:15px 45px; 
 
    }


    .elementor-widget-uea-tabbed-posts .uea-tabs-mini-row{ padding:14px 0; }
    .elementor-widget-uea-tabbed-posts .uea-tabs-mini-title{ font-size:14.5px; }
  }
  
  
  
  
  
  /* =========================
   About Box (SCOPED)
   ========================= */
.elementor-widget-uea-about-box .uea-about-card{
  position: relative;
  isolation: isolate;
  border: 1px solid #E5E7EB;           /* subtle border */
  border-radius: 14px;                  /* rounded corners */
  /* box-shadow: 0 6px 18px rgba(16,24,40,.06); */
  text-align: center;
  padding: 28px 24px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Map bg (optional) */
.elementor-widget-uea-about-box .uea-about-card::before{
  content:"";
  position:absolute; inset:0; z-index:0;
  background:
    var(--uea-about-map, none) center/95% no-repeat;
  opacity:.10;
  filter: grayscale(100%) contrast(110%);
  pointer-events:none;
}
.elementor-widget-uea-about-box .uea-about-card::after{
  content:"";
  position:absolute; inset:0; z-index:0;
  pointer-events:none;
}
.elementor-widget-uea-about-box .uea-about-card > *{ position:relative; z-index:1; }

/* Logo */
.elementor-widget-uea-about-box .uea-about-logo{
  display:inline-block; margin-bottom:16px;
}

/* Description */
.elementor-widget-uea-about-box .uea-about-desc{
  margin: 0 auto 22px;
  max-width: 520px;
  color: #6B7280;
  font-size: 16px;
  line-height: 1.6;
}

/* Socials */
.elementor-widget-uea-about-box .uea-about-social{
  display:flex; flex-wrap:wrap; justify-content:center; gap:14px;
}
.elementor-widget-uea-about-box .uea-about-social-btn{
  --uea-about-primary: #1a75e2;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--uea-about-primary);
  display:flex; align-items:center; justify-content:center;
  color: var(--uea-about-primary);
  background: transparent;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.elementor-widget-uea-about-box .uea-about-social-btn i,
.elementor-widget-uea-about-box .uea-about-social-btn svg{
  font-size:18px; line-height:1;
  fill: currentColor; color: currentColor;
}
.elementor-widget-uea-about-box .uea-about-social-btn:hover{
  transform: translateY(-2px);
  background: var(--uea-about-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(26,117,226,.25);
}
.elementor-widget-uea-about-box .uea-about-social-btn:focus-visible{
  outline: 3px solid rgba(26,117,226,.3);
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 480px){
  .elementor-widget-uea-about-box .uea-about-card{ padding:22px 18px; }
  .elementor-widget-uea-about-box .uea-about-social-btn{ width:44px; height:44px; }
}



  
  

/* =========================
   App Box (SCOPED)
   ========================= */
   .elementor-widget-uea-app-box .uea-app-card{
    background:#fff;
    border:1px solid #E5E7EB;
    border-radius:12px;
     text-align:center;
    padding:24px;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  }
  
  /* Title */
  .elementor-widget-uea-app-box .uea-app-title{
    margin: 0 0 12px 0;
    font-weight: 800;
    font-size: 28px;            /* tweak in Style tab via Typography */
    line-height: 1.25;
    color:#1F2A44;
  }
  
  /* Divider */
  .elementor-widget-uea-app-box .uea-app-divider{
    display:block;
    width:70%;
    height:2px;
    margin: 25px auto;
    background: linear-gradient(90deg, transparent, #1A75E2, transparent) !important;
    background-image: linear-gradient(90deg, var(--darkreader-background-00000000, rgba(0, 0, 0, 0)), var(--darkreader-background-1a75e2, #155eb5), var(--darkreader-background-00000000, rgba(0, 0, 0, 0))) !important;
    background-color: initial !important;
    border: none !important;
    outline: none !important;
  }
  
  /* Additional specificity for gradient override */
  .elementor-widget.elementor-widget-uea-app-box .uea-app-divider{
    display:block;
    width:80%;
    height:1.2px;
    margin: 25px auto;
    background: linear-gradient(90deg, transparent, #1A75E2, transparent) !important;
    background-image: linear-gradient(90deg, var(--darkreader-background-00000000, rgba(0, 0, 0, 0)), var(--darkreader-background-1a75e2, #1A75E2), var(--darkreader-background-00000000, rgba(0, 0, 0, 0))) !important;
    background-color: initial !important;
    border: none !important;
    outline: none !important;  
  



  }
  
  /* Badges row */
  .elementor-widget-uea-app-box .uea-app-badges{
    display:flex; justify-content:center; align-items:center; gap:14px;
    margin: 8px 0 14px;
  }
  .elementor-widget-uea-app-box .uea-app-badge{
    display:inline-flex; line-height:0; filter: drop-shadow(0 3px 8px rgba(0,0,0,.08));
    transition: transform .15s ease, filter .15s ease;
  }
  .elementor-widget-uea-app-box .uea-app-badge:hover{
    transform: translateY(-1px); filter: drop-shadow(0 6px 14px rgba(0,0,0,.12));
  }
  .elementor-widget-uea-app-box .uea-app-badge img{
    display:block; height:auto; max-width:100%;
  }
  
  /* Optional social icons */
  .elementor-widget-uea-app-box .uea-app-social{
    display:flex; justify-content:center; gap:12px; margin-top: 6px;
  }
  .elementor-widget-uea-app-box .uea-app-social-btn{
    --uea-app-primary:#1a75e2;
    width:44px; height:44px;
    border-radius:50%;
    border:2px solid var(--uea-app-primary);
    display:flex; align-items:center; justify-content:center;
    color:var(--uea-app-primary);
    background:transparent; text-decoration:none;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  }
  .elementor-widget-uea-app-box .uea-app-social-btn i,
  .elementor-widget-uea-app-box .uea-app-social-btn svg{
    font-size:18px; line-height:1; color:currentColor; fill:currentColor;
  }
  .elementor-widget-uea-app-box .uea-app-social-btn:hover{
    transform: translateY(-2px);
    background: var(--uea-app-primary);
    color:#fff;
    box-shadow:0 8px 18px rgba(26,117,226,.25);
  }
  
  /* Responsive tweaks */
  @media (max-width:480px){
    .elementor-widget-uea-app-box .uea-app-title{ font-size:24px; }
    .elementor-widget-uea-app-box .uea-app-card{ padding:20px; }
  }

  

  /* Stack app badges vertically in App Box */
.elementor-widget-uea-app-box .uea-app-badges {
  flex-direction: column !important;  /* stack vertically */
}

/* Optional: center and add spacing */
.elementor-widget-uea-app-box .uea-app-badges .uea-app-badge {
  margin: 6px 0; /* space between badges */
}










/* Explore Topics — scoped */

.elementor-widget-uea-explore-topics .uea-topics-card{
  background:#fff;
  border:1px solid #E5E7EB;
  border-radius:12px;
  padding:22px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.elementor-widget-uea-explore-topics .uea-topics-title{
  margin:0 0 8px 0;
  font-weight:800;
  font-size:24px;
  line-height:1.25;
  text-align:center;
  color:#1F2A44;
}

.elementor-widget-uea-explore-topics .uea-topics-divider{
  display:block;
  width:80%;
  height:1.2px;
  margin: 25px auto;
  background: linear-gradient(90deg, transparent, #1A75E2, transparent) !important;
  background-image: linear-gradient(90deg, var(--darkreader-background-00000000, rgba(0, 0, 0, 0)), var(--darkreader-background-1a75e2, #1A75E2), var(--darkreader-background-00000000, rgba(0, 0, 0, 0))) !important;
  background-color: initial !important;
  border: none !important;
  outline: none !important;  
}

/* List */
.elementor-widget-uea-explore-topics .uea-topics-list{
  list-style:none; margin:8px 0 0; padding:0;
}
.elementor-widget-uea-explore-topics .uea-topic-item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 !important;
  padding: 14px 0 !important;


  border-top: 0 !important; /* border would cover the gradient */
  background-image: linear-gradient(to left, var(--tp-border, #EBEBEB ) 0%, transparent 100%);
  background-repeat: no-repeat;
  background-position: 0 0;      /* top-left */
  background-size: 100% 1px;     /* full width, 1px tall */

   
}

/* Add missing bottom divider */
.elementor-widget-uea-explore-topics .uea-topics-list::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0;
  background-image: linear-gradient(to left, var(--tp-border, #EBEBEB) 0%, transparent 100%);
}




/* Hover (subtle, no shifting) */
.elementor-widget-uea-explore-topics .uea-topic-item:hover{
  background-color: #f5f9ff !important;
  border-color: transparent !important;
}




/* Replace SVG chevron with CSS arrow like original */
.elementor-widget-uea-explore-topics .uea-topic-link {
  position: relative;
  padding-left: 18px;
}

/* CSS arrow FIXED */
.elementor-widget-uea-explore-topics .uea-topic-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  display: inline-block;          /* ✅ REQUIRED for rotate */
  box-sizing: border-box;         /* ✅ Matches original */
  border-top: 2px solid #0D49B9;
  border-right: 2px solid #0D49B9;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  transition: transform .2s ease;
}

/* Hover nudge like original */
.elementor-widget-uea-explore-topics .uea-topic-item:hover .uea-topic-link::before {
  transform: translateY(-50%) translateX(3px) rotate(45deg);
}

.elementor-widget-uea-explore-topics .uea-topic-item:last-child{ border-bottom:0; }

/* Link (text + chevron) */
.elementor-widget-uea-explore-topics .uea-topic-link{

  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;           /* take the left side */
  min-width: 0;
  text-decoration: none !important;
  color: #2c3e50 !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  background: none !important;
  /* allow ellipsis on long names */
  overflow: hidden;


}
.elementor-widget-uea-explore-topics .uea-topic-link:hover{ color:#0F62FE; }

 
.elementor-widget-uea-explore-topics .uea-topic-name{
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
  padding-left: 10px;
}

/* Count */
.elementor-widget-uea-explore-topics .uea-topic-count{

  flex: 0 0 auto;
  margin-left: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #9099a5 !important;
  white-space: nowrap;
  background: none !important;


}

/* Small screens tweaks */
@media (max-width:480px){
  .elementor-widget-uea-explore-topics .uea-topics-title{ font-size:20px; }
  .elementor-widget-uea-explore-topics .uea-topics-card{ padding:18px; }
} 
 






 
/* Popular Posts — scoped */

.elementor-widget-uea-popular-posts .uea-pop-card{
  background:#fff;
  border:1px solid #E5E7EB;
  border-radius:12px;
  padding:18px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Header */
.elementor-widget-uea-popular-posts .uea-pop-head{ text-align:center; margin-bottom:10px; }
.elementor-widget-uea-popular-posts .uea-pop-title{
  margin:0 0 8px 0; font-weight:800; font-size:22px; line-height:1.25; color:#1F2A44;
}
.elementor-widget-uea-popular-posts .uea-pop-divider{
  display:block;
  width:80%;
  height:1.2px;
  margin: 25px auto;
  background: linear-gradient(90deg, transparent, #1A75E2, transparent) !important;
  background-image: linear-gradient(90deg, var(--darkreader-background-00000000, rgba(0, 0, 0, 0)), var(--darkreader-background-1a75e2, #1A75E2), var(--darkreader-background-00000000, rgba(0, 0, 0, 0))) !important;
  background-color: initial !important;
  border: none !important;
  outline: none !important;  



}

/* List */
.elementor-widget-uea-popular-posts .uea-pop-list{ margin:0; padding:0; }
.elementor-widget-uea-popular-posts .uea-pop-item{
  display:flex; align-items:center; gap:14px;
  padding:20px 0;
}
.elementor-widget-uea-popular-posts .uea-pop-item + .uea-pop-item{

 
  /* border-top:1px solid #E8E8E8; */
  /* editable via Style tab */

}
/* Thumb with circular image + rank badge */
.elementor-widget-uea-popular-posts .uea-pop-thumb {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  overflow: hidden; /* This clips the scaled image */
  line-height: 0;
}

.elementor-widget-uea-popular-posts .uea-pop-img {
  width: 100%;
  height: 100%; /* Add this to ensure proper sizing */
  object-fit: cover; /* Add this to maintain aspect ratio */
  transform: scale(1);
  transition: transform 0.3s ease-in-out; /* Only transition transform */
  display: block; /* Remove any inline spacing */
}

.elementor-widget-uea-popular-posts .uea-pop-thumb:hover .uea-pop-img {
  transform: scale(1.08);
}









/* Numbered badge using CSS counters */
.elementor-widget-uea-popular-posts .uea-pop-list{
  counter-reset: uea-rank;              /* start at 0 */
}

.elementor-widget-uea-popular-posts .uea-pop-item{
  counter-increment: uea-rank;          /* 1,2,3… per row */
  position: relative;                   /* safety, not strictly needed */
}

/* Draw the badge on top of the circular thumb */
.elementor-widget-uea-popular-posts .uea-pop-thumb{
  position: relative;                    /* anchor for the badge */
}

.elementor-widget-uea-popular-posts .uea-pop-thumb::before{
  content: counter(uea-rank);
  position: absolute;
  top: -6px;
  left: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 700 12px/1 "Poppins", Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #fff;
  z-index: 2;

  /* ring & shadow like the reference */
  border: 2px solid #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,.15);

  /* gradient/solid brand color */
  background: #1a75e2;
  background: linear-gradient(to top, #1a75e2 0%, #1a75e2 100%);
}



/* Allow the number badge to sit outside the circle */
.elementor-widget-uea-popular-posts .uea-pop-thumb{
  overflow: visible !important; /* was hidden */
}

/* keep the image circular, above/below layers are correct */
.elementor-widget-uea-popular-posts .uea-pop-img{
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 1;
}

/* make sure the badge sits on top */
.elementor-widget-uea-popular-posts .uea-pop-thumb::before{
  z-index: 2;
}














/* Body */
.elementor-widget-uea-popular-posts .uea-pop-body{ flex:1 1 auto; min-width:0; }
.elementor-widget-uea-popular-posts .uea-pop-item-title{
  margin:0; font-size:16px; line-height:1.3; font-weight:700; color:#1C2B39;
}
.elementor-widget-uea-popular-posts .uea-pop-item-title a{
  color:inherit; text-decoration:none;
  transition: color 0.3s ease;
}
.elementor-widget-uea-popular-posts .uea-pop-item-title a:hover{ color:#0F62FE; }
.elementor-widget-uea-popular-posts .uea-pop-date{
  margin-top:6px; font-size:14px; color:#8FA0B4;
}

/* Small screens */
@media (max-width:480px){
  .elementor-widget-uea-popular-posts .uea-pop-title{ font-size:20px; }
  .elementor-widget-uea-popular-posts .uea-pop-card{ padding:16px; }
}















/************************************************************
MOVE ME SOMEWHERE ELSE
  UEA Single Post — Elementor mapping of the original styles
  Scope: WordPress single posts built with Elementor
*************************************************************/


/* Breadcrumbs (Elementor / WooCommerce markup) */
.single-post .woocommerce-breadcrumb{
  font-size:14px;
  margin:0 0 20px;
  padding:0;
  background:transparent;
  border-radius:0;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  /* base color like original */
  color:#8F9BAD;
  /* allow clean wrapping on small screens */
  gap:.25rem;
  word-break:break-word;
  white-space:normal;
}

/* Links */
.single-post .woocommerce-breadcrumb a{
  color:#8F9BAD;
  text-decoration:none;
  transition:color .2s ease;
}
.single-post .woocommerce-breadcrumb a:hover{
  color:#FE4F70;
}

/* Optional: tighten the built-in " / " separators that are in your HTML */
.single-post .woocommerce-breadcrumb{
  /* the non-breaking spaces are already in the HTML; this just keeps spacing tidy */
  letter-spacing:0;
}

/* Variant for “cover/on-image” sections (light on dark) */
.single-post .katen-single .woocommerce-breadcrumb{
  color:rgba(255,255,255,.7);
}
.single-post .katen-single .woocommerce-breadcrumb a{
  color:rgba(255,255,255,.7);
}
.single-post .katen-single .woocommerce-breadcrumb a:hover{
  color:#FFF;
}









.single-post .elementor { /* overall scope anchor */ }

/* ----------------------------
   Title (theme-post-title)
----------------------------- */


/* Post Title – Match original .post-single .post-header .title */
.single-post .elementor-widget-theme-post-title .elementor-heading-title {
  font-size: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #203656;
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Desktop scaling like original theme */
@media (min-width: 1200px) {
  .single-post .elementor-widget-theme-post-title .elementor-heading-title {
      font-size: 40px; /* Optional: keep exactly 36px or adjust slightly */
  }
}





/* ============================
   Post Meta (Elementor mapping)
   Original: .post .meta { ... }
   Target:   .elementor-widget-post-info .elementor-post-info
   Scope:    single posts only
============================ */
.single-post .elementor .elementor-widget-post-info .elementor-post-info{
  /* match original look */
  font-size:14px;
  color:#8F9BAD;

  /* behave like .list-inline */
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  margin:0;                  /* reset default ul margin */
  padding:0;                 /* reset default ul padding */
  list-style:none;
}

/* individual meta items (author, date, time, comments, terms, etc.) */
.single-post .elementor .elementor-widget-post-info .elementor-post-info li{
  display:inline-flex;
  align-items:center;
  position:relative;
}

/* spacing between items like .meta li:not(:last-child) */
.single-post .elementor .elementor-widget-post-info .elementor-post-info li:not(:last-child){
  margin-right:.8rem;
}










/* Dot separator – match original .post .meta li:after */
.single-post .elementor .elementor-widget-post-info .elementor-post-info li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #1a75e2; /* Same as original */
  border-radius: 50%;
  margin-left: 1rem;
  position: relative;
  top: -1px;
  vertical-align: middle;
}












/* icons alignment (Elementor puts SVGs inside .elementor-icon-list-icon) */
.single-post .elementor .elementor-widget-post-info .elementor-post-info .elementor-icon-list-icon{
  display:inline-flex;
  line-height:0;
  margin-right:.5rem;
}
.single-post .elementor .elementor-widget-post-info .elementor-post-info .elementor-icon-list-icon svg{
  width:1em; height:1em;
  vertical-align:middle;
}

/* links: base + hover (original meta link colors) */
.single-post .elementor .elementor-widget-post-info .elementor-post-info a{
  color:#8F9BAD;
  font-weight:400;
  text-decoration:none;
  transition:color .2s ease;
}
.single-post .elementor .elementor-widget-post-info .elementor-post-info a:hover{
  color:#FE4F70;
}

/* author avatar (if any image gets injected) */
.single-post .elementor .elementor-widget-post-info .elementor-post-info img{
  width:32px;
  /* height:32px; */
  border-radius:50%;
  object-fit:cover;
  margin-right:12px;
  vertical-align:middle;
}

/* optional: lighten for dark/cover sections */
.single-post .katen-single .elementor-widget-post-info .elementor-post-info{
  color:rgba(255,255,255,.6);
}
.single-post .katen-single .elementor-widget-post-info .elementor-post-info a{
  color:rgba(255,255,255,.6);
}
.single-post .katen-single .elementor-widget-post-info .elementor-post-info li:not(:last-child)::after{
  background-color:rgba(255,255,255,.6);
}
.single-post .katen-single .elementor-widget-post-info .elementor-post-info a:hover{
  color:#FFF;
}











/* ----------------------------
   Featured Image (theme-post-featured-image)
   -> rounded, cover, hover zoom like `.post .thumb:hover img`
----------------------------- */
.single-post .elementor .elementor-widget-theme-post-featured-image .elementor-widget-container {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: none;
}
.single-post .elementor .elementor-widget-theme-post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1);
  transition: transform .3s ease-in-out;
  display: block;
}
.single-post .elementor .elementor-widget-theme-post-featured-image:hover img {
  transform: scale(1.07);
}

/* Optional: dark overlay variant (for "over content" layouts) */
.single-post .elementor .katen-single .elementor-widget-theme-post-featured-image .elementor-widget-container::after {
  content: "";
  position: absolute; inset: 0;
  background: #203656;
  opacity: 0; /* set to .6 if you want the overlay */
  pointer-events: none;
  transition: opacity .3s ease;
}

/* ----------------------------
   Post Content (theme-post-content)
   -> paragraphs, headings etc. adopt original color/spacing
----------------------------- */
.single-post .elementor .elementor-widget-theme-post-content {
  color: #707a88;
  font-size: 16px;
}
.single-post .elementor .elementor-widget-theme-post-content p {
  margin: 0 0 1.1em;
}
.single-post .elementor .elementor-widget-theme-post-content .wp-block-heading,
.single-post .elementor .elementor-widget-theme-post-content h2,
.single-post .elementor .elementor-widget-theme-post-content h3 {
  color: rgb(32, 54, 86);
}
.single-post .elementor .elementor-widget-theme-post-content img {
  border-radius: 10px;
}

/* ----------------------------
   Share Buttons (elementor-share-buttons)
----------------------------- */
.single-post .elementor .elementor-widget-share-buttons .elementor-grid {
  gap: .75rem;
}
.single-post .elementor .elementor-widget-share-buttons .elementor-share-btn {
  font-size: 16px;
  border: 0;
  transition: filter .2s ease;
}
.single-post .elementor .elementor-widget-share-buttons .elementor-share-btn:hover {
  filter: brightness(1.05);
}

/* ----------------------------
   Post Navigation (post-navigation)
   -> separator & text tweaks
----------------------------- */
.single-post .elementor .elementor-widget-post-navigation .elementor-post-navigation__separator {
  height: 1px;
  background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}
.single-post .elementor .elementor-widget-post-navigation a {
  color: #203656;
  text-decoration: none;
  transition: color .2s ease;
}
.single-post .elementor .elementor-widget-post-navigation a:hover {
  color: #FE4F70;
}

/* ----------------------------
   Author Box (author-box)
----------------------------- */
.single-post .elementor .elementor-widget-author-box .elementor-author-box {
  background: #F1F8FF;
  border-radius: 10px;
  padding: 30px;
}
.single-post .elementor .elementor-widget-author-box .elementor-author-box__avatar img {
  border-radius: 50%;
  width: 100px; height: 100px; object-fit: cover;
}
.single-post .elementor .elementor-widget-author-box .elementor-author-box__name {
  color: #203656;
  font-size: 20px;
  margin: 0 0 10px;
}

/* ----------------------------
   Comments (post-comments)
   -> separators, avatar, name/date like original
----------------------------- */
.single-post .elementor .elementor-widget-post-comments .comments-area {
  margin-top: 50px;
}
.single-post .elementor .elementor-widget-post-comments .comment-list > li {
  list-style: none;
}
.single-post .elementor .elementor-widget-post-comments .comment-list > li:not(:first-child) {
  border-top: 0; /* reset */
}
.single-post .elementor .elementor-widget-post-comments .comment-list > li::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(to left, #EBEBEB 0%, transparent 100%);
}
.single-post .elementor .elementor-widget-post-comments .comment-body {
  padding: 30px 0;
}
.single-post .elementor .elementor-widget-post-comments .comment-author img {
  border-radius: 50%;
  width: 70px; height: 70px; object-fit: cover;
  margin-right: 16px;
}
.single-post .elementor .elementor-widget-post-comments .comment-author .fn,
.single-post .elementor .elementor-widget-post-comments .comment-author .fn a {
  color: #203656;
  font-size: 18px;
  text-decoration: none;
}
.single-post .elementor .elementor-widget-post-comments .comment-metadata,
.single-post .elementor .elementor-widget-post-comments .comment-metadata a {
  color: #8F9BAD;
  font-size: 13px;
  text-decoration: none;
}

/* ----------------------------
   “Featured over content” block (if you use #cover-content section)
----------------------------- */
.single-post .elementor #cover-content {
  position: relative;
}
.single-post .elementor #cover-content .elementor-widget-wrap {
  position: relative;
  z-index: 1;
}
.single-post .elementor #cover-content .title a { color: #FFF; }

/* ----------------------------
   Small list items (if you emulate `.post.post-list-sm`)
   Map to Popular Posts widget you already have
----------------------------- */
.elementor-widget-uea-popular-posts .uea-pop-item {
  position: relative;
}
.elementor-widget-uea-popular-posts .uea-pop-thumb {
  position: relative;
  display: block;
  width: 60px; height: 60px; flex: 0 0 60px;
  border-radius: 50%; overflow: hidden; line-height: 0;
}
.elementor-widget-uea-popular-posts .uea-pop-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1); transition: transform .3s ease-in-out;
  border-radius: 50%;
}
.elementor-widget-uea-popular-posts .uea-pop-thumb:hover .uea-pop-img {
  transform: scale(1.07);
}
/* optional row divider like original */
.elementor-widget-uea-popular-posts .uea-pop-item + .uea-pop-item {
  border-top: 1px solid rgba(235,235,235,1);
  margin-top: 12px; padding-top: 12px;
}

/* ----------------------------
   Utility: large “format” badge (if you add one in Elementor)
----------------------------- */
.single-post .elementor .uea-post-format {
  position: absolute;
  right: 20px; bottom: -25px;
  width: 50px; height: 50px; line-height: 54px;
  font-size: 20px; text-align: center; color: #FFF;
  border-radius: 50%;
  box-shadow: 0px 2px 4px rgba(0,0,0,.15);
  background: linear-gradient(to top, #FE4F70 0%, #FFA387 100%);
  z-index: 1;
}

/* ----------------------------
   Spacing and containers (match the original feel)
----------------------------- */
.single-post .elementor .elementor-inner-section.elementor-section-boxed > .elementor-container,
.single-post .elementor .elementor-section.elementor-section-boxed > .elementor-container {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1025px) {
  .single-post .elementor .elementor-column.elementor-col-70 { 
    padding-right: 0px;
   }
  .single-post .elementor .elementor-col-30 { padding-left: 24px; }
}

/* ----------------------------
   Links inside content (hover color)
----------------------------- */
.single-post .elementor .elementor-widget-theme-post-content a:hover {
  color: #FE4F70;
}

/* ----------------------------
   Breadcrumbs inside your cover (if you render any)
----------------------------- */
.single-post .elementor .breadcrumbs,
.single-post .elementor nav[aria-label="breadcrumb"] {
  margin-bottom: 10px;
}
.single-post .elementor .breadcrumbs a { color: #FFF; text-decoration: none; }
.single-post .elementor .breadcrumbs a:hover { color: #FFF; }

 



















