.elementor-kit-8{--e-global-color-primary:#CB1D24;--e-global-color-secondary:#141C2E;--e-global-color-text:#141C2E;--e-global-color-accent:#62B8D9;--e-global-color-3aa7df3:#F8F8F8;--e-global-color-c5e7ddd:#141C2E;--e-global-color-053d5d3:#FFFFFF;--e-global-color-479d1ac:#E2AA00;--e-global-color-d1e7c3f:#EDF6FA;--e-global-color-bc61697:#F2A93B;--e-global-color-fd3f803:#1CC7B8;--e-global-color-b32ea5e:#3BA7FF;--e-global-color-43c6461:#A86BFF;--e-global-typography-primary-font-family:"Outfit";--e-global-typography-primary-font-size:24px;--e-global-typography-primary-font-weight:600;--e-global-typography-primary-line-height:1.2em;--e-global-typography-secondary-font-family:"Outfit";--e-global-typography-secondary-font-size:48px;--e-global-typography-secondary-font-weight:800;--e-global-typography-secondary-line-height:72px;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:30px;--e-global-typography-accent-font-family:"Outfit";--e-global-typography-accent-font-weight:500;--e-global-typography-700dcc6-font-family:"Heebo";--e-global-typography-700dcc6-font-size:16px;--e-global-typography-700dcc6-font-weight:900;--e-global-typography-700dcc6-text-transform:uppercase;--e-global-typography-700dcc6-letter-spacing:0.1em;--e-global-typography-a1f5229-font-size:16px;--e-global-typography-a1f5229-font-weight:400;--e-global-typography-a1f5229-line-height:1.6em;color:var( --e-global-color-text );font-family:"Outfit", Sans-serif;font-size:17px;font-weight:400;line-height:1.7em;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-kit-8 p{margin-block-end:15px;}.elementor-kit-8 a{color:#CB1D24;font-family:"Outfit", Sans-serif;font-weight:600;}.elementor-kit-8 a:hover{color:var( --e-global-color-479d1ac );}.elementor-kit-8 h1{color:var( --e-global-color-secondary );font-family:"Outfit", Sans-serif;}.elementor-kit-8 h2{color:var( --e-global-color-secondary );font-family:"Outfit", Sans-serif;font-size:45px;font-weight:700;line-height:1.2em;}.elementor-kit-8 h3{font-family:"Outfit", Sans-serif;font-size:45px;font-weight:700;line-height:1.2em;}.elementor-kit-8 h4{font-family:"Outfit", Sans-serif;font-size:45px;font-weight:700;line-height:1.2em;}.elementor-kit-8 h5{font-family:"Outfit", Sans-serif;font-size:35px;}.elementor-kit-8 h6{font-family:"Outfit", Sans-serif;font-size:25px;}.elementor-kit-8 label{font-family:"Outfit", Sans-serif;font-size:18px;font-weight:600;line-height:1.2em;}.elementor-kit-8 input:not([type="button"]):not([type="submit"]),.elementor-kit-8 textarea,.elementor-kit-8 .elementor-field-textual{font-family:"Outfit", Sans-serif;font-size:18px;font-weight:600;line-height:1.2em;border-style:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1300px;}.e-con{--container-max-width:1300px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:25px;}.elementor-element{--widgets-spacing:25px 25px;--widgets-spacing-row:25px;--widgets-spacing-column:25px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-kit-8 h2{font-size:40px;}.elementor-kit-8 h3{font-size:40px;}.elementor-kit-8 h4{font-size:40px;}.elementor-kit-8 h5{font-size:30px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-8 h2{font-size:35px;}.elementor-kit-8 h3{font-size:35px;}.elementor-kit-8 h4{font-size:35px;}.elementor-kit-8 h5{font-size:25px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */body, html {background-color: #edf6fa !important;}

.cascading-text {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(auto, 1fr);
  position: relative;
  overflow: hidden;
  counter-reset: char-counter;
}


/*text and background gradient animations*/
.cascading-text span {
  counter-increment: char-counter;
  animation: fadeIn 0.5s calc(var(--char-index) * 0.01s) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.text-gradient-anim1 {
    background: linear-gradient(270deg,
        var(--e-global-color-secondary) 0%, 
        var(--e-global-color-secondary) 30%,
        var(--e-global-color-primary) 45%,
        var(--e-global-color-secondary) 60%,
        var(--e-global-color-secondary) 100%);
    background-size: 600% 100%;
    animation: gradanim 60s linear infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradanim {
    0%{
        background-position: 0% 50%;
    }
        100%{
        background-position: 600% 50%;
    }
}


/*animations*/

.bg-gradient-anim1 {
    position: relative;
    background: linear-gradient(270deg,
        var(--e-global-color-primary) 0%, 
        var(--e-global-color-primary) 30%,
        var(--e-global-color-secondary) 45%,
        var(--e-global-color-primary) 60%,
        var(--e-global-color-primary) 100%);
    background-size: 600% 100%;
    animation: gradanim 80s linear infinite;
    transform: translate3d(0, 0, 0)
}

.h-clip1 {
	animation: clip auto linear;
	animation-timeline: view(80% 0);
	transform: translate3d(0, 0, 0)
}

@keyframes clip {
	0% {opacity:.2;
		clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
	}
	30% {opacity:1;}
	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}


.h-clip2 {
	animation: clip auto linear;
	animation-timeline: view();
	transform: translate3d(0, 0, 0)
}

@keyframes clip {
	0% {
		clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
	}
	100% {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}
}



.zoom-bg1 {
	animation: bgzoom1 auto linear;
	animation-timeline: view(50% 0);
	transform: translate3d(0, 0, 0)
}

@keyframes bgzoom1 {
	0% {
    background-size:100% !important;
    background-position: -100px -150px !important;
}
50% {
    background-size:120% !important;
    background-position: -250px -350px !important;
}
}

.zoom-bg2 {
	animation: bgzoom2 auto linear;
	animation-timeline: view(50% 0);
}

@keyframes bgzoom2 {
    	0% {
        background-size:100% !important;
    }
    50% {
        background-size:120% !important;
    }
}

.icon-reflection1 i:before{
    background-image: url(https://staging-d489-huanga19911.wpcomstaging.com/wp-content/uploads/2024/08/team-2.jpg);
    background-clip: text;
    color: transparent;
    background-position: 50% 0%;
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: reflect1 auto linear;
        animation-timeline: view();
       transform: translate3d(0);
        text-shadow: 0 5px #09f5;
        }
        
@keyframes reflect1 {
0% {
       background-position: 20% 50%;
}

100% {
       background-position: 90% 50%;
}
    
}

.icon-reflection2 {
    background-image: url(https://staging-d489-huanga19911.wpcomstaging.com/wp-content/uploads/2024/08/team-2.jpg);
    background-clip: text;
    color: transparent;
    background-position: 50% 0%;
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: reflect1 auto linear;
        animation-timeline: view();
       transform: translate3d(0);
        text-shadow: 0 5px #09f5;
        }
        
@keyframes reflect1 {
0% {
       background-position: 20% 50%;
}

100% {
       background-position: 90% 50%;
}
    
}

.bulletlist-dash1 ul{  
  list-style-type: none ;
  list-style-position: outside ;
  list-style-image: none ;
  padding-left: 2em;
  margin:0;
}

.bulletlist-dash1 li {
    margin: 0 0 10px 0 !important;
}

.bulletlist-dash1 li:before { 
    display: block !important;
    position: absolute !important;
    content:"";
    width: 20px !important;
    background-color: var(--e-global-color-primary) !important;
    height: 2px;
    margin-top:.75em !important;
    margin-left:-1.5em !important;
}
/* shrinking header */

.shrinker {
	background: transparent;
        height: 115px;
	transition: all .2s linear!important;
	-webkit-transition: all .2s linear!important;
	-moz-transition: all .2s linear!important;
}

.shrinker.elementor-sticky--effects {
	background: #fff;
        height: 80px!important;
	padding-top: 2px!important;
	padding-bottom: 2px!important;
	box-shadow: 0px 6px 30px -4px rgba(0,0,0,.05);
	transition: all .2s linear!important;
	-webkit-transition: all .2s linear!important;
	-moz-transition: all .2s linear!important;
}

/* shrinking logo image */

.shrinking-logo img {
	width: 150px !important;
	transition: all .2s linear!important;
	-webkit-transition: all .2s linear!important;
	-moz-transition: all .2s linear!important;
}

.shrinker.elementor-sticky--effects img {
	width: 100px!important;
	padding-bottom: 25px;
	transition: all .2s linear!important;
	-webkit-transition: all .2s linear!important;
	-moz-transition: all .2s linear!important;
}

/* shrinking menu */

.shrinker.elementor-sticky--effects ul li a {
	font-size: 14px!important;
	transition: all .2s linear!important;
	-webkit-transition: all .2s linear!important;
	-moz-transition: all .2s linear!important;
}

/* ==========================================================================
   Austin Technology: "Latest news" and "Client success stories" blocks, v2
   Paste once into Elementor > Site Settings > Custom CSS (applies site wide).

   Restyles every copy of the two old post feed blocks (label, heading,
   Posts widget, View More button) in the .at-sv design, using the same
   card as /insights/ and the related posts under each article:
   16:9 greyscale image with the brand corner, red category label, date,
   title, three line excerpt and "Read the article".

   Which blocks: any top level container holding an Icon List, a Heading,
   a Posts widget and a Button (9 blocks on 8 pages as of 24 September 2026),
   or any container given the CSS class at-news. The Insights page and
   single posts are left alone; they have their own card CSS.

   Shows three posts in one row (two on tablet, a swipe row on phones).
   The at-news-blocks.php script sets the widgets to load three posts,
   switches on the category, date and excerpt, and updates the wording.
   ========================================================================== */

body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) {
  --ink: #141C2E; --body: rgba(20,28,46,.74); --muted: rgba(20,28,46,.55); --line: rgba(20,28,46,.14);
  --red: #C8102E; --grey: #F5F5F3;
  --padding-top: 120px; --padding-bottom: 120px; --padding-left: 20px; --padding-right: 20px;
  display: block !important; padding: 120px 20px !important; background: var(--grey) !important; border: 0 !important;
  margin: 0 !important; width: 100% !important; max-width: none !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) > .e-con-inner {
  max-width: 1260px !important; width: 100% !important; margin: 0 auto !important; padding: 0 !important;
}
/* flatten every inner container, so the four widgets sit on one grid whatever
   the nesting (the news and stories blocks are nested differently) */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .e-con.e-child,
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .e-con.e-child > .e-con-inner { display: contents !important; }

/* head: label and heading on the left, "View all" link on the right, posts underneath */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) > .e-con-inner {
  display: grid !important; grid-template-columns: minmax(0, 1fr) auto; column-gap: 48px; row-gap: 0;
  align-items: end; text-align: left !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget {
  width: auto !important; max-width: none !important; margin: 0 !important; padding: 0 !important;
  --container-widget-width: auto; text-align: left !important; align-self: auto;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget > .elementor-widget-container { margin: 0 !important; padding: 0 !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget-icon-list { grid-column: 1; grid-row: 1; justify-self: start; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget-heading { grid-column: 1; grid-row: 2; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget-button { grid-column: 2; grid-row: 1 / span 2; align-self: end; justify-self: end; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget-posts { grid-column: 1 / -1; grid-row: 3; margin-top: 56px !important; }

/* label: short red line and small capitals, like the section numbers on the rebuilt pages */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-icon-list .elementor-icon-list-items { justify-content: flex-start !important; margin: 0 0 22px !important; padding: 0 !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-icon-list .elementor-icon-list-item { display: flex !important; align-items: center; gap: 14px; justify-content: flex-start !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-icon-list .elementor-icon-list-icon { display: none !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-icon-list .elementor-icon-list-text::before {
  content: "" !important; display: inline-block !important; width: 44px; height: 1px; margin-right: 14px;
  vertical-align: middle; position: relative; top: -2px; background: #C8102E;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-icon-list .elementor-icon-list-text {
  padding: 0 !important; font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 12.5px !important; font-weight: 700 !important;
  line-height: 1.4 !important; letter-spacing: .14em !important; text-transform: uppercase !important; color: var(--muted) !important;
}

/* heading */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-heading .elementor-heading-title {
  font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; font-size: clamp(34px, 3.6vw, 54px) !important;
  line-height: 1.04 !important; letter-spacing: -.02em !important; color: var(--ink) !important; text-align: left !important;
  max-width: 760px; text-wrap: balance; margin: 0 !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-heading .elementor-heading-title em { font-style: normal; color: var(--red); }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-heading .elementor-heading-title br { display: none; }

/* "View all" link: bold text with a red line, not a boxed button */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-button .elementor-button-wrapper { text-align: right !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-button .elementor-button {
  display: inline-flex !important; align-items: center; gap: 12px; width: auto !important; padding: 0 0 6px !important;
  background: none !important; border: 0 !important; border-radius: 0 !important; box-shadow: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 15px !important; font-weight: 700 !important;
  line-height: 1.3 !important; letter-spacing: 0 !important; text-transform: none !important; color: var(--ink) !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-button .elementor-button::before {
  content: ""; width: 28px; height: 2px; background: var(--red); flex: none; transition: width .3s ease;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-button .elementor-button:hover::before { width: 48px; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-button .elementor-button:hover { color: var(--red) !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-button .elementor-button-text { color: inherit !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-button .elementor-button-icon { display: none !important; }

/* ---------- cards (same as the Insights feed) ---------- */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-posts {
  --grid-column-gap: 40px !important; --grid-row-gap: 48px !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
/* three posts, one row */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container > .elementor-post:nth-child(n+4) { display: none !important; }

body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card {
  position: relative; display: grid !important; grid-template-columns: auto minmax(0, 1fr); grid-template-rows: auto auto 1fr;
  height: 100%; background: transparent !important; border: 0 !important; border-radius: 0 !important;
  box-shadow: none !important; overflow: visible !important; padding: 0 !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__avatar { display: none !important; }

/* image: 16:9, brand corner, grey until hover */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__thumbnail__link {
  grid-column: 1 / -1; grid-row: 1; width: 100% !important; margin: 0 0 24px !important;
  border-radius: 22px 22px 0 22px; overflow: hidden; background: var(--ink);
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container .elementor-post__thumbnail { position: relative; padding-bottom: 0 !important; aspect-ratio: 16 / 9; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__thumbnail img {
  position: absolute !important; inset: 0 !important; width: 100% !important; height: 100% !important;
  max-width: none !important; object-fit: cover; transform: none !important;
  filter: grayscale(1) contrast(1.05) !important; transition: filter .5s ease, transform .6s ease !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card:hover .elementor-post__thumbnail img { filter: grayscale(0) !important; transform: scale(1.04) !important; }

/* category and date */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card .elementor-post__badge {
  grid-column: 1; grid-row: 2; position: static !important; margin: 0 0 12px !important; padding: 0 !important;
  background: none !important; border-radius: 0 !important; color: var(--red) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 12px !important; font-weight: 700 !important;
  line-height: 1.5 !important; letter-spacing: .12em; text-transform: uppercase;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card .elementor-post__meta-data {
  grid-column: 2; grid-row: 2; border: 0 !important; padding: 0 !important; margin: 0 0 12px !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 12px !important; font-weight: 700 !important;
  line-height: 1.5 !important; letter-spacing: .12em; text-transform: uppercase; color: var(--muted) !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card:has(.elementor-post__badge) .elementor-post__meta-data::before { content: ""; display: inline-block; width: 3px; height: 3px; margin: 0 10px; border-radius: 50%; background: currentColor; vertical-align: middle; position: relative; top: -1px; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card:not(:has(.elementor-post__badge)) .elementor-post__meta-data { grid-column: 1 / -1; }

/* words */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card .elementor-post__text {
  grid-column: 1 / -1; grid-row: 3; display: flex !important; flex-direction: column; padding: 0 !important; margin: 0 !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card .elementor-post__title { margin: 0 0 10px !important; padding: 0 !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) :is(.elementor-post__title, .elementor-post__title a) {
  font-family: 'Outfit', sans-serif !important; font-weight: 700 !important; font-size: clamp(20px, 1.6vw, 23px) !important;
  line-height: 1.22 !important; letter-spacing: -.015em !important; color: var(--ink) !important;
  text-transform: none !important; text-decoration: none !important; transition: color .2s;
}
/* the whole card clicks through to the article */
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card:hover .elementor-post__title a { color: var(--red) !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__title a:focus-visible { outline: none; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__title a:focus-visible::after { outline: 2px solid var(--red); outline-offset: 6px; border-radius: 22px 22px 0 22px; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card .elementor-post__excerpt { margin: 0 0 18px !important; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__excerpt p {
  font-family: 'Roboto', sans-serif !important; font-size: 15.5px !important; font-weight: 400 !important; line-height: 1.6 !important;
  color: var(--body) !important; margin: 0 !important;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card a.elementor-post__read-more {
  display: inline-flex !important; align-items: center; gap: 12px; margin: auto 0 0 !important; padding-top: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif !important; font-size: 14.5px !important; font-weight: 700 !important;
  line-height: 1.3 !important; letter-spacing: 0 !important; text-transform: none !important; text-decoration: none !important; color: var(--ink) !important;
}
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) a.elementor-post__read-more::before { content: ""; width: 28px; height: 2px; background: var(--red); transition: width .3s ease; flex: none; }
body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-post__card:hover a.elementor-post__read-more::before { width: 48px; }

/* ---------- smaller screens ---------- */
@media (max-width: 1024px) {
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) {
    --padding-top: 88px; --padding-bottom: 88px; padding: 88px 20px !important;
  }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container > .elementor-post:nth-child(n+3) { display: none !important; }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget-posts { margin-top: 44px !important; }
}
/* phones: head stacks, link moves under the cards, cards become a swipe row */
@media (max-width: 767px) {
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) {
    --padding-top: 68px; --padding-bottom: 68px; padding: 68px 20px !important; overflow: hidden;
  }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) > .e-con-inner { grid-template-columns: minmax(0, 1fr); }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget-posts { grid-row: 3; margin-top: 36px !important; }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-element.elementor-widget-button { grid-column: 1; grid-row: 4; justify-self: start; margin-top: 32px !important; }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-widget-button .elementor-button-wrapper { text-align: left !important; }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container {
    display: grid !important; grid-template-columns: none !important; grid-auto-flow: column; grid-auto-columns: 84%;
    gap: 20px !important; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory;
    margin-right: -20px !important; padding: 0 20px 6px 0 !important; scrollbar-width: none;
  }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container::-webkit-scrollbar { display: none; }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container > .elementor-post { scroll-snap-align: start; }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) .elementor-posts-container > .elementor-post:nth-child(3) { display: block !important; }
  body:not(.page-id-1006):not(.single) :is(.at-news, .e-con.e-parent:has(.elementor-widget-icon-list):has(.elementor-widget-heading):has(.elementor-widget-posts):has(.elementor-widget-button)) :is(.elementor-post__title, .elementor-post__title a) { font-size: 20px !important; }
}/* End custom CSS */