/* ==========================================================================
   Hero XL Shortcode — Standalone Stylesheet
   Scoped under .hxl-section to avoid conflicts with WordPress themes.
   ========================================================================== */

/* ── Critical reveal (parity with Integrated theme #critical-css + html classes)
      Same idea as: body>[data-cid]{opacity:0} … html.css-ready … {opacity:1}
      Duplicate rules also exist as wp_add_inline_style() in PHP for early paint. ── */
      .hxl-section[data-hxl-root] {
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    html.hxl-css-ready .hxl-section[data-hxl-root],
    html.hxl-has-loaded .hxl-section[data-hxl-root],
    html.css-ready .hxl-section[data-hxl-root],
    html.has-loaded .hxl-section[data-hxl-root] {
        opacity: 1;
    }
    .hd-who p{
      color:#000 !important;
    }
    [data-pgs-featured-root] .e-post-feature .title_el{
      color:#000 !important;
    }
    /* ── Design tokens ── */
    .hxl-section {
        --hxl-color-dark:     #1b2530;
        --hxl-color-light:    #f7f7f5;
        --hxl-color-accent:   #fff;
        --hxl-color-lime:     #a7e26e;
        --hxl-color-white:    #ffffff;
        --hxl-font:           'Aspekta', 'Inter', system-ui, sans-serif;
        --hxl-ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --hxl-duration:       0.7s;
        --hxl-container-max:  1524px;
        --hxl-pad-x:          clamp(20px, 4vw, 60px);
        --hxl-vh:             calc(100svh - 32px);
    }
    
    /* ── Section shell ── */
    .hxl-section {
        position: relative;
        width: 100%;
        min-height: var(--hxl-vh);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        background-color: var(--hxl-color-dark);
        color: var(--hxl-color-white);
        font-family: var(--hxl-font);
        box-sizing: border-box;
        max-width: calc(100% - 24px);
            margin:0 auto;
            border-radius: 20px;
    }
    
    .hxl-section *,
    .hxl-section *::before,
    .hxl-section *::after {
        box-sizing: inherit;
        margin: 0;
        padding: 0;
    }
    
    /* ── Container helper ── */
    .hxl-inner,
    .hxl-scroller-head,
    .hxl-scroller-content {
        width: 100%;
        max-width: var(--hxl-container-max);
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--hxl-pad-x);
        padding-right: var(--hxl-pad-x);
    }
    
    /* ======================================================================
       Hero Main
       ====================================================================== */
    .hxl-main {
        position: relative;
        z-index: 2;
        flex: 1;
        display: flex;
        align-items: center;
        padding-top: clamp(120px, 18vh, 200px);
        padding-bottom: clamp(40px, 6vh, 80px);
    }
    
    .hxl-inner {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 48px);
    }
    
    /* Heading */
    .hxl-heading {
        font-size: clamp(2.4rem, 5.5vw + 1rem, 4rem);
        font-weight: 400;
        line-height: 1.08;
        letter-spacing: -0.03em;
        color: var(--hxl-color-white);
        max-width: 100%;
        will-change: opacity, transform;
    }
    
    /* Bottom row: subtext + button */
    .hxl-bottom {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: clamp(24px, 4vw, 48px);
        justify-content: space-between;
    }
    
    .hxl-subtext {
        font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.25rem);
            font-weight: 300;
            line-height: 1.5;
            letter-spacing: -0.01em;
            color: var(--hxl-color-accent);
            max-width: 62ch;
            will-change: opacity, transform;
    }
    
    /* Hide copy until line-reveal runs (avoids flash of unstyled text). */
    @media (prefers-reduced-motion: no-preference) {
        .hxl-section[data-hxl-root] .hxl-heading,
        .hxl-section[data-hxl-root] .hxl-subtext {
            opacity: 0;
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        .hxl-section[data-hxl-root] .hxl-heading,
        .hxl-section[data-hxl-root] .hxl-subtext {
            opacity: 1;
        }
    }
    
    /* Splitting.js line mask — same motion idea as theme GSAP SplitText `mask: "lines"` */
    .hxl-line-mask {
        display: block;
        overflow: hidden;
    }
    
    .hxl-line-row {
        display: block;
        will-change: transform, filter, opacity;
    }
    
  
    
    @media (prefers-reduced-motion: reduce) {
        [data-hxl-scroll-reveal],
        .hxl-scroll-reveal {
            opacity: 1;
        }
    }
    
    /* Flatsome `.tabs-custon-main-page` — copy inside `.text` before reveal (not inside style/script) */
    @media (prefers-reduced-motion: no-preference) {
        .tabs-custon-main-page .text :where(p, h1, h2, h3, h4, h5, h6, blockquote) {
            opacity: 0;
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        .tabs-custon-main-page .text :where(p, h1, h2, h3, h4, h5, h6, blockquote) {
            opacity: 1;
        }
    }
    
    /*
     * Per-heading scroll reveal tuning (works with `[data-hxl-scroll-reveal]` or `.hxl-scroll-reveal`):
     *
     * Option A — CSS custom properties on the heading:
     *   --hxl-reveal-y            initial lift in px (default 110)
     *   --hxl-reveal-duration    seconds (default 0.8)
     *   --hxl-reveal-stagger     stagger between lines (default 0.05)
     *   --hxl-reveal-ease        GSAP ease string (default power2.out)
     *   --hxl-reveal-variant     default | blur | skew | scale | tilt | elastic | snap
     *   --hxl-reveal-blur        px for blur variant (default 12)
     *   --hxl-reveal-skew        deg for skew variant (default -7)
     *
     * Option B — utility class on the same element (sets variant):
     *   .hxl-reveal--blur | --skew | --scale | --tilt | --elastic | --snap
     *
     * Option C — data attributes (override CSS): data-hxl-reveal-y, -duration,
     *   -stagger, -ease, -variant
     */
    
    /* Example: slow dramatic title */
    :is([data-hxl-scroll-reveal], .hxl-scroll-reveal).hxl-reveal-demo-slow {
        --hxl-reveal-y: 140;
        --hxl-reveal-duration: 1.05;
        --hxl-reveal-stagger: 0.09;
        --hxl-reveal-ease: expo.out;
    }
    
    /* Example: snappy snap-in */
    :is([data-hxl-scroll-reveal], .hxl-scroll-reveal).hxl-reveal-demo-snap {
        --hxl-reveal-y: 90;
        --hxl-reveal-duration: 0.65;
        --hxl-reveal-stagger: 0.04;
    }
    
    /* Example: glassy blur rise (class picks variant; blur amount via var) */
    :is([data-hxl-scroll-reveal], .hxl-scroll-reveal).hxl-reveal-demo-blur.hxl-reveal--blur {
        --hxl-reveal-blur: 16;
        --hxl-reveal-duration: 0.95;
        --hxl-reveal-ease: power3.out;
    }
    
    /* Example: skew slide via CSS only */
    :is([data-hxl-scroll-reveal], .hxl-scroll-reveal).hxl-reveal-demo-skew-css {
        --hxl-reveal-variant: skew;
        --hxl-reveal-skew: -10;
        --hxl-reveal-duration: 0.85;
    }
    
    /* ======================================================================
       Flatsome / UX Builder — `.row.cards` + `.cards_item` (USP-cards parity)
       Clip-path column reveal + icon/text stagger. Desktop ≥1025 only in JS.
       No attributes needed — existing `.row.cards` + `.cards_item` is enough.
       To disable one row: add CSS class `hxl-cards-no-animate` (Row “CSS class” in builder).
       Legacy: `data-hxl-cards-animate="false"` still respected if you can edit HTML.
       ====================================================================== */
    @media (min-width: 1025px) {
        .row.cards:not(.hxl-cards-no-animate):not([data-hxl-cards-animate='false'])
            > .col.cards_item,
        .row.cards:not(.hxl-cards-no-animate):not([data-hxl-cards-animate='false']) > .cards_item {
            clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
            overflow: hidden;
        }
    
        .row.cards:not(.hxl-cards-no-animate):not([data-hxl-cards-animate='false'])
            > .col.cards_item
            .icon-box-img,
        .row.cards:not(.hxl-cards-no-animate):not([data-hxl-cards-animate='false'])
            > .col.cards_item
            .icon-box-text,
        .row.cards:not(.hxl-cards-no-animate):not([data-hxl-cards-animate='false'])
            > .cards_item
            .icon-box-img,
        .row.cards:not(.hxl-cards-no-animate):not([data-hxl-cards-animate='false'])
            > .cards_item
            .icon-box-text {
            opacity: 0;
            transform: translateY(20px);
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        .row.cards > .col.cards_item,
        .row.cards > .cards_item {
            clip-path: none !important;
        }
    
        .row.cards > .col.cards_item .icon-box-img,
        .row.cards > .col.cards_item .icon-box-text,
        .row.cards > .cards_item .icon-box-img,
        .row.cards > .cards_item .icon-box-text {
            opacity: 1 !important;
            transform: none !important;
        }
    
        .hxl-img-reveal-ltr,
        .hxl-img-reveal-rtl {
            clip-path: none !important;
        }
    }
    
    /* ======================================================================
       Opt-in clip-path wipe (same idea as `.row.cards` columns). Any block or
       `img`: class `hxl-img-reveal-ltr` or `hxl-img-reveal-rtl`. Opt out: class
       `hxl-img-reveal-no-animate`. Optional ScrollTrigger `start` via classes on the same element,
       e.g. `hxl-img-reveal-start-top-80`, `hxl-img-reveal-start-bottom-20`, `hxl-img-reveal-start-center`
       (`getImgRevealStartFromClasses`). Optional wipe duration: `hxl-img-reveal-duration-ms-850` (ms)
       or presets `hxl-img-reveal-duration-snappy` | `-fast` | `-slow` | `-slower` (`getImgRevealDurationFromClasses`).
       ====================================================================== */
   
    
    /* ======================================================================
       Button
       ====================================================================== */
    .hxl-btn-wrap {
        flex-shrink: 0;
        will-change: opacity, transform;
    }
    
    .hxl-btn {
        display: inline-flex;
        align-items: center;
        gap: 0;
        text-decoration: none;
        color: var(--hxl-color-white);
        cursor: pointer;
        transition: opacity 0.25s var(--hxl-ease);
    }
    
    .hxl-btn:hover {
        opacity: 0.8;
    }
    
    .hxl-btn-label {
        display: flex;
        align-items: center;
        background-color: var(--hxl-color-white);
        color: var(--hxl-color-dark);
        font-size: clamp(0.85rem, 0.9vw + 0.4rem, 1rem);
        font-weight: 500;
        letter-spacing: -0.01em;
        line-height: 1;
        padding: 14px 20px 14px 24px;
        border-radius: 50px 0 0 50px;
        white-space: nowrap;
    }
    
    .hxl-btn-corner {
        display: inline-flex;
        align-items: center;
        margin-left: 8px;
        height: 48px;
        overflow: visible;
    }
    
    .hxl-btn-corner svg {
        display: block;
        height: 48px;
        width: auto;
    }
    
    .hxl-btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 51px;
        height: 48px;
        color: var(--hxl-color-dark);
        background-color: var(--hxl-color-lime);
        border-radius: 0 12px 12px 0;
        flex-shrink: 0;
    }
    
    .hxl-btn-icon svg {
        display: block;
        width: 51px;
        height: 48px;
    }
    
    /* ======================================================================
       Scroller Strip
       ====================================================================== */
    .hxl-scroller {
        position: relative;
        z-index: 2;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .hxl-scroller-head {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .hxl-scroller-label {
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--hxl-color-accent);
    }
    
    /* Body row: progress bar + content */
    .hxl-scroller-body {
        display: flex;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .hxl-progress {
        width: 4px;
        flex-shrink: 0;
        background-color: rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .hxl-progress-bar {
        position: absolute;
        inset: 0 0 auto 0;
        width: 100%;
        height: 0%;
        background-color: var(--hxl-color-lime);
        transition: height 0.1s linear;
        transform-origin: top center;
    }
    
    .hxl-scroller-content {
        display: flex;
        align-items: flex-start;
        gap: clamp(24px, 5vw, 80px);
        padding-top: clamp(24px, 4vw, 48px);
        padding-bottom: clamp(24px, 4vw, 48px);
        flex: 1;
    }
    
    /* Index counter */
    .hxl-index {
        flex-shrink: 0;
        padding-top: 4px;
    }
    
    .hxl-index-inner {
        display: flex;
        align-items: baseline;
        gap: 4px;
        font-variant-numeric: tabular-nums;
        font-size: clamp(0.8rem, 0.9vw + 0.4rem, 0.95rem);
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.5);
    }
    
    .hxl-index-current {
        color: var(--hxl-color-white);
        font-weight: 500;
        transition: opacity 0.3s var(--hxl-ease);
    }
    
    /* Items */
    .hxl-items {
        flex: 1;
        position: relative;
        min-height: 80px;
    }
    
    .hxl-item {
        position: absolute;
        inset: 0;
        opacity: 0;
        transform: translateY(12px);
        transition:
            opacity 0.45s var(--hxl-ease),
            transform 0.45s var(--hxl-ease);
        pointer-events: none;
    }
    
    .hxl-item.is-active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        position: relative;
    }
    
    .hxl-item p {
        font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.2rem);
        font-weight: 300;
        line-height: 1.55;
        letter-spacing: -0.01em;
        color: rgba(255, 255, 255, 0.75);
        max-width: 60ch;
    }
    
    /* ======================================================================
       Background video
       ====================================================================== */
    .hxl-background {
        position: absolute;
        inset: 0;
        z-index: 0;
        margin: 0;
        padding: 0;
    }
    
    .hxl-bg-frame {
        position: absolute;
        inset: 0;
    }
    
    .hxl-bg-canvas {
        position: absolute;
        inset: 0;
        overflow: hidden;
    }
    
    .hxl-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 0;
        transition: opacity 0.8s var(--hxl-ease);
    }
    
    .hxl-video.is-loaded {
        opacity: 1;
    }
    
    /* Dark overlay to ensure text readability */
    .hxl-bg-canvas::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(34, 47, 48, 0.55) 0%,
            rgba(34, 47, 48, 0.25) 50%,
            rgba(34, 47, 48, 0.70) 100%
        );
        pointer-events: none;
    }
    
    /* ======================================================================
       Entry animations
       ====================================================================== */
    [data-hxl-animate="fade"] {
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity var(--hxl-duration) var(--hxl-ease),
            transform var(--hxl-duration) var(--hxl-ease);
    }
    
    [data-hxl-animate="fade"].is-visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    [data-hxl-animate="fade"]:nth-of-type(1) { transition-delay: 0.1s; }
    [data-hxl-animate="fade"]:nth-of-type(2) { transition-delay: 0.25s; }
    [data-hxl-animate="fade"]:nth-of-type(3) { transition-delay: 0.4s; }
    
    /* ======================================================================
       Responsive
       ====================================================================== */
    @media (max-width: 768px) {
        .hxl-bottom {
            flex-direction: column;
            align-items: flex-start;
        }
    
        .hxl-scroller-content {
            flex-direction: column;
            gap: 16px;
        }
    
        .hxl-index {
            display: flex;
            gap: 12px;
        }
    
        .hxl-progress {
            display: none;
        }
    }
    
    @media (prefers-reduced-motion: reduce) {
        [data-hxl-animate="fade"],
        .hxl-item,
        .hxl-video,
        .hxl-progress-bar {
            transition: none !important;
            animation: none !important;
        }
    
        [data-hxl-animate="fade"] {
            opacity: 1;
            transform: none;
        }
    
        .hxl-section[data-hxl-root] {
            opacity: 1 !important;
        }
    }
    
    
    
    
    
/* Featured post shortcode — scoped; card rules extracted from theme app-styles */

/* Scoped design tokens + layout (from theme :root / posts-grid) */

[data-pgs-featured-root] {
    --color--1: #c9cbbe;
    --color--2: #033752;
    --color--3: #007cba;
    --color--4: #eee;
    --color--5: #e4e3e3;
    --color--6: #f7f7f5;
    --color--7: #222f30;
    --color--8: #f5f8f7;
    --color--9: #445e5f;
    --color--7-rgb: 34, 47, 48;
    --transition-ease--1: cubic-bezier(.16, 1, .3, 1);
    --family--1: "Aspekta", -apple-system, BlinkMacSystemFont, "avenir next", avenir, "segoe ui", "helvetica neue", helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
    --family--2: "Roboto Mono", Menlo, Consolas, Monaco, "Liberation Mono", "Lucida Console", monospace;
    --gap: 20px;
    --base--background-color: #f7f7f5;
    --base--text-color: #222f30;
    --base--font-family: var(--family--1);
    box-sizing: border-box;
  }
  
  [data-pgs-featured-root] *,
  [data-pgs-featured-root] *::before,
  [data-pgs-featured-root] *::after {
    box-sizing: inherit;
  }
  
  [data-pgs-featured-root] .featured {
    margin-bottom: var(--gap);
    width: 100%;
  }
  
  @media (min-width:1025px) {
    [data-pgs-featured-root] .featured {
      margin-bottom: 40px;
    }
  }
  
  [data-pgs-featured-root] .image_el.img-crop,
  [data-pgs-featured-root] img.img-crop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  [data-pgs-featured-root] .u-btn--2 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
  }
  
  [data-pgs-featured-root] .u-btn--2 {
    cursor: pointer;
    display: inline-flex;
    font-weight: 400;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: left;
    -webkit-text-decoration: none;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    width: auto
  }
  
  [data-pgs-featured-root] .u-btn--2:not(:disabled) {
    pointer-events: auto
  }
  
  [data-pgs-featured-root] .u-btn--2 {
    --button-blob-background: var(--color--3);
    --button-blob-background-hover: var(--color--7);
    --button-blob-icon-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none' viewBox='0 0 10 10'%3E%3Cpath fill='%23222F30' d='M7.703 5.8H.398V4.6h7.305l-3.36-3.36.855-.84 4.8 4.8-4.8 4.8-.855-.84 3.36-3.36Z'/%3E%3C/svg%3E");
    --button-blob-icon-image-hover: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none' viewBox='0 0 10 10'%3E%3Cpath fill='%23fff' d='M7.703 5.8H.398V4.6h7.305l-3.36-3.36.855-.84 4.8 4.8-4.8 4.8-.855-.84 3.36-3.36Z'/%3E%3C/svg%3E");
    --button-blob-icon-position: center left calc((100% + 22px)*-1), center left calc(0% + 22px);
    --button-blob-icon-position-hover: center left calc(0% + 22px), center left calc(100% + 22px);
    --button-blob-icon-size: 10px 10px;
    --button-blob-scale: .875;
    --button-transition-duration: .6s;
    --button-transition-timing-function: cubic-bezier(.25, 1, .5, 1);
    align-items: center;
    background: transparent;
    border-radius: 0;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 48px
  }
  
  [data-pgs-featured-root] .u-btn--2 svg {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1
  }
  
  [data-pgs-featured-root] .u-btn--2 svg path {
    transition-property: fill;
    transition-duration: var(--button-transition-duration);
    transition-timing-function: var(--button-transition-timing-function)
  }
  
  [data-pgs-featured-root] .u-btn--2 .btn_icon {
    background-color: transparent;
    overflow: hidden;
    padding: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    transform: scale(1);
    transform-origin: center;
    transition-duration: var(--button-transition-duration);
    transition-property: transform;
    transition-timing-function: var(--button-transition-timing-function)
  }
  
  [data-pgs-featured-root] .u-btn--2 .btn_icon:before {
    background-color: transparent;
    background-image: var(--button-blob-icon-image-hover), var(--button-blob-icon-image);
    background-repeat: no-repeat;
    background-position: var(--button-blob-icon-position);
    background-size: var(--button-blob-icon-size);
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    transition-duration: var(--button-transition-duration);
    transition-property: background-position;
    transition-timing-function: var(--button-transition-timing-function);
    z-index: 2
  }
  
  [data-pgs-featured-root] .u-btn--2 .btn_icon svg path {
    fill: var(--button-blob-background)
  }
  
  [data-pgs-featured-root] .u-ts--1 {
    align-items: center;
    background: #fff;
    background: var(--background-color, #fff);
    border-radius: 8px;
    border-radius: var(--border-radius, 8px);
    color: #222f30;
    color: var(--color, var(--base--text-color));
    display: inline-flex;
    font-family: Roboto Mono, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
    font-family: var(--family--2);
    font-size: max(.75rem, min(calc(.75rem + .002*(100vw - 27.5rem)), .875rem));
    letter-spacing: 0;
    line-height: 1em;
    padding: 8px 12px 8px 8px;
    text-transform: uppercase;
    width: -moz-fit-content;
    width: fit-content
  }
  
  [data-pgs-featured-root] .u-ts--1:before {
    background: #a7e26e;
    background: var(--blob-color, var(--color--2));
    content: "";
    display: inline-flex;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 12px;
    width: 10px;
    height: 10px
  }
  
  [data-pgs-featured-root] .e-post-feature {
    --post-background-color: #f1f4fd;
    --post-border-radius: 12px;
    --post-text-color: var(--base--text-color);
    --post-category-background-color: var(--color--6);
    --post-category-text-color: var(--post-text-color);
    --post-min-height: 240px;
    --post-title-underline-size: 1px;
    align-items: stretch;
    color: #222f30;
    color: var(--post-text-color);
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 240px;
    min-height: var(--post-min-height);
    opacity: 1;
    overflow: hidden;
    padding: 16px;
    position: relative;
    row-gap: 20px;
    width: 100%;
    height: auto;
    -webkit-text-decoration: none !important;
    text-decoration: none !important
  }
  
  @media (min-width: 1025px) {
    [data-pgs-featured-root] .e-post-feature {
      --post-border-radius: 20px;
      --post-min-height: 300px;
      --post-title-underline-size: 2px;
      display: grid;
      grid-gap: 48px;
      gap: 0px;
      grid-template-columns: repeat(2, 1fr);
      padding: 26px 32px;
      grid-row-gap: 24px;
      row-gap: 24px
    }
  }
  
  [data-pgs-featured-root] .e-post-feature .item_image {
    aspect-ratio: 750 / 530;
    border-radius: var(--post-border-radius);
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1
  }
  
  @media (min-width: 1025px) {
    [data-pgs-featured-root] .e-post-feature .item_image {
      border-radius: 16px
    }
  }
  
  @media (min-width: 1025px) and (max-width: 1100px) {
    [data-pgs-featured-root] .e-post-feature .item_image {
      aspect-ratio: unset
    }
  }
  
  [data-pgs-featured-root] .e-post-feature .image_el {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    transition-property: transform;
    transition-duration: .5s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    transition-timing-function: var(--transition-ease--1);
    transform: scale(1)
  }
  
  [data-pgs-featured-root] .e-post-feature .item_content {
    align-items: stretch;
    color: var(--post-text-color);
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 1;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    -webkit-text-decoration: none !important;
    text-decoration: none !important;
    z-index: 1
  }
  
  [data-pgs-featured-root] .e-post-feature .content_inner {
    align-items: stretch;
    display: inline-flex;
    flex: 1 1 auto;
    flex-direction: column;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    min-height: var(--post-min-height);
    row-gap: max(20px, min(calc(20px + .04*(100vw - 440px)), 60px));
    width: 100%
  }
  
  @media (min-width: 1025px) {
    [data-pgs-featured-root] .e-post-feature .content_inner {
      justify-content: flex-start;
      max-width: 90%;
      min-height: var(--post-min-height);
      padding-top: 24px;
      padding-bottom: 24px
    }
  }
  
  [data-pgs-featured-root] .e-post-feature .item_meta {
    align-items: center;
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    z-index: 1
  }
  
  [data-pgs-featured-root] .e-post-feature .meta_type {
    --background-color: var(--post-category-background-color);
    --color: var(--post-category-text-color)
  }
  
  [data-pgs-featured-root] .e-post-feature .meta_date {
    color: var(--post-text-color);
    font-family: Roboto Mono, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
    font-family: var(--family--2);
    font-size: max(.8125rem, min(calc(.8125rem + .002*(100vw - 27.5rem)), .9375rem));
    letter-spacing: -.02em;
    line-height: 1em;
    opacity: .5;
    text-transform: uppercase
  }
  
  [data-pgs-featured-root] .e-post-feature .item_hgroup {
    align-items: flex-start;
    flex: 1 1 auto;
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    row-gap: 0;
    z-index: 1
  }
  
  [data-pgs-featured-root] .e-post-feature .hgroup_title {
    font-size: max(1.375rem, min(calc(1.375rem + .014*(100vw - 27.5rem)), 2.25rem));
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.3em
  }
  
  [data-pgs-featured-root] .e-post-feature .title_el {
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: 0% var(--post-title-underline-size);
    -webkit-text-decoration: none;
    text-decoration: none;
    transition-property: background-size;
    transition-duration: .3s;
    transition-timing-function: cubic-bezier(.16, 1, .3, 1);
    transition-timing-function: var(--transition-ease--1)
  }
  
  [data-pgs-featured-root] .e-post-feature .hgroup_excerpt {
    color: #222f30;
    color: var(--block-color-text, var(--base--text-color));
    font-size: max(.875rem, min(calc(.875rem + .005*(100vw - 27.5rem)), 1.1875rem));
    letter-spacing: -.02em;
    line-height: 1.3em;
    opacity: .8;
    text-wrap: pretty;
    width: 100%
  }
  
  [data-pgs-featured-root] .e-post-feature .item_foot {
    align-items: flex-end;
    -moz-column-gap: 8px;
    column-gap: 8px;
    display: flex;
    flex: 0 0 auto;
    justify-content: space-between;
    position: relative;
    width: 100%;
    z-index: 1
  }
  
  [data-pgs-featured-root] .e-post-feature .foot_label {
    align-items: flex-end;
    display: inline-flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    font-family: Roboto Mono, Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
    font-family: var(--family--2);
    font-size: .8125rem;
    justify-content: flex-start;
    gap: 4px;
    letter-spacing: -.02em;
    line-height: 1em;
    padding-bottom: 4px;
    text-transform: uppercase
  }
  
  @media (min-width: 1025px) {
    [data-pgs-featured-root] .e-post-feature .foot_label {
      padding-bottom: 0
    }
  }
  
  [data-pgs-featured-root] .e-post-feature .item_background {
    background-color: var(--post-background-color);
    border-radius: var(--post-border-radius) var(--post-border-radius) 0 var(--post-border-radius);
    clip-path: polygon(100% 0, 100% calc(100% - 75px), calc(100% - 75px) calc(100% - 75px), calc(100% - 75px) 100%, 0 100%, 0 0);
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0
  }
  
  @media (min-width: 1025px) {
    [data-pgs-featured-root] .e-post-feature .item_background {
      clip-path: polygon(100% 0, 100% calc(100% - 102px), calc(100% - 102px) calc(100% - 107px), calc(100% - 107px) 100%, 0 100%, 0 0)
    }
  }
  
  [data-pgs-featured-root] .e-post-feature .item_btn,
  [data-pgs-featured-root] .e-post-feature .btn_el,
  [data-pgs-featured-root] .e-post-feature .btn_bg {
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 1
  }
  
  [data-pgs-featured-root] .e-post-feature .item_btn {
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='87' height='90' fill='none' viewBox='0 0 87 90'%3E%3Cpath fill='%23f1f4fd' d='M35.43 45.104 23.71 81.57A12.146 12.146 0 0 1 12.145 90C5.438 90 0 84.562 0 77.854V16C0 7.163 7.163 0 16 0h55c8.837 0 16 7.163 16 16v2c0 8.837-7.163 16-16 16H50.663a16 16 0 0 0-15.232 11.104Z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 87px;
    height: 90px
  }
  
  @media (min-width: 1025px) {
    [data-pgs-featured-root] .e-post-feature .item_btn {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='127' height='122' fill='none' viewBox='0 0 127 122'%3E%3Cpath fill='%23f1f4fd' d='m61.06 62.363-14.62 48.274A16 16 0 0 1 31.129 122H16c-8.837 0-16-7.163-16-16V16C0 7.163 7.163 0 16 0h95c8.837 0 16 7.163 16 16v19c0 8.837-7.163 16-16 16H76.372A16 16 0 0 0 61.06 62.363Z'/%3E%3C/svg%3E");
      width: 127px;
      height: 122px
    }
  }
  
  [data-pgs-featured-root] .e-post-feature .btn_el {
    pointer-events: none;
    width: 51px;
    height: 48px
  }
  
  @media (min-width: 1025px) {
    [data-pgs-featured-root] .e-post-feature .btn_el {
      --button-blob-icon-position: center left calc((100% + 30px)*-1), center left calc(0% + 30px);
      --button-blob-icon-position-hover: center left calc(0% + 30px), center left calc(100% + 30px);
      --button-blob-icon-size: 12px 12px;
      width: 65px;
      height: 61px
    }
  }
  
  @media (hover: hover) and (pointer: fine) {
    [data-pgs-featured-root] :is(.e-post-feature: hover, .e-post-feature:focus-visible) .image_el {
      transform:scale(1.05)
    }
    [data-pgs-featured-root] :is(.e-post-feature:hover,
    .e-post-feature:focus-visible) .title_el {
      background-size: 100% var(--post-title-underline-size)
    }
    [data-pgs-featured-root] :is(.e-post-feature:hover,
    .e-post-feature:focus-visible) .item_btn .btn_icon {
      transform: scale(var(--button-blob-scale))
    }
    [data-pgs-featured-root] :is(.e-post-feature:hover,
    .e-post-feature:focus-visible) .item_btn .btn_icon:before {
      background-position: var(--button-blob-icon-position-hover)
    }
    [data-pgs-featured-root] :is(.e-post-feature:hover,
    .e-post-feature:focus-visible) .item_btn .btn_icon svg path {
      fill: #222f30;
      fill: var(--color--7)
    }
  }