.elementor-254 .elementor-element.elementor-element-3d3c4be{--display:flex;}/* Start custom CSS for html, class: .elementor-element-03104ac *//* =========================================================
   AI SHIKATAHU — AI NEWS PAGE
   Elementor Safe CSS
   Premium Black + Neon Green
   ========================================================= */


/* ================= ROOT PAGE ================= */

.ai-news-page {
    --bg: #030604;
    --bg-soft: #07100a;
    --card: #0a120d;
    --card-light: #0e1812;

    --green: #35ff86;
    --green-dark: #13d965;
    --green-soft: rgba(53, 255, 134, 0.10);

    --white: #f3f8f4;
    --text: #d2ddd5;
    --muted: #849189;

    --border: rgba(255,255,255,0.08);
    --border-green: rgba(53,255,134,0.25);

    --radius: 20px;

    width: 100%;
    position: relative;

    background:
        radial-gradient(
            circle at 10% 0%,
            rgba(53,255,134,0.08),
            transparent 28%
        ),
        radial-gradient(
            circle at 95% 30%,
            rgba(53,255,134,0.05),
            transparent 25%
        ),
        var(--bg);

    color: var(--white);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;

    overflow: hidden;
}


/* ================= RESET ================= */

.ai-news-page *,
.ai-news-page *::before,
.ai-news-page *::after {
    box-sizing: border-box;
}

.ai-news-page a {
    text-decoration: none;
}

.ai-news-page img {
    max-width: 100%;
}

.ai-news-page button,
.ai-news-page input {
    font-family: inherit;
}


/* ================= CONTAINER ================= */

.ai-news-container {
    width: min(92%, 1180px);
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.ai-news-header {
    position: relative;
    z-index: 50;

    background: rgba(3,6,4,0.88);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.ai-news-nav {
    min-height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


/* ================= LOGO ================= */

.ai-news-logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--white) !important;

    font-size: 20px;
    font-weight: 900;

    letter-spacing: -0.6px;
}

.ai-news-logo-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--green);

    color: #021007;

    font-size: 12px;
    font-weight: 950;

    box-shadow:
        0 0 28px rgba(53,255,134,0.18);
}

.ai-news-logo-text span {
    color: var(--green);
}


/* ================= MENU ================= */

.ai-news-menu {
    display: flex;

    align-items: center;

    gap: 22px;
}

.ai-news-menu a {
    position: relative;

    color: var(--muted) !important;

    font-size: 12px;
    font-weight: 750;

    transition: 0.25s ease;
}

.ai-news-menu a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: width 0.25s ease;
}

.ai-news-menu a:hover,
.ai-news-menu a.active {
    color: var(--green) !important;
}

.ai-news-menu a:hover::after,
.ai-news-menu a.active::after {
    width: 100%;
}


/* ================= HEADER BUTTON ================= */

.ai-news-header-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 17px;

    border-radius: 999px;

    background: var(--green);

    color: #021007 !important;

    font-size: 11px;
    font-weight: 950;

    transition: 0.25s ease;
}

.ai-news-header-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(53,255,134,0.18);
}


/* =========================================================
   HERO
   ========================================================= */

.ai-news-hero {
    position: relative;

    padding: 105px 0 55px;

    text-align: center;
}

.ai-news-hero::before {
    content: "";

    position: absolute;

    left: 50%;
    top: -220px;

    width: 600px;
    height: 600px;

    transform: translateX(-50%);

    border-radius: 50%;

    background: var(--green);

    opacity: 0.055;

    filter: blur(120px);

    pointer-events: none;
}

.ai-news-hero-badge {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 15px;

    margin-bottom: 24px;

    border: 1px solid var(--border-green);

    border-radius: 999px;

    background: var(--green-soft);

    color: var(--green);

    font-size: 11px;
    font-weight: 850;
}

.ai-news-pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 14px var(--green);

    animation: aiNewsPulse 2s infinite;
}

@keyframes aiNewsPulse {

    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.85);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }

}

.ai-news-hero h1 {
    position: relative;

    max-width: 900px;

    margin: 0 auto 22px;

    color: var(--white);

    font-size: clamp(43px, 7vw, 78px);

    line-height: 0.98;

    font-weight: 950;

    letter-spacing: -4px;
}

.ai-news-gradient-text {
    color: var(--green);

    text-shadow:
        0 0 45px rgba(53,255,134,0.12);
}

.ai-news-hero-description {
    position: relative;

    max-width: 690px;

    margin: auto;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   SEARCH
   ========================================================= */

.ai-news-search-area {
    padding-bottom: 27px;
}

.ai-news-search {
    position: relative;

    max-width: 760px;

    margin: auto;
}

.ai-news-search input {
    width: 100%;
    height: 58px;

    padding: 0 58px 0 20px;

    border: 1px solid var(--border);

    border-radius: 15px;

    outline: none;

    background: var(--card);

    color: var(--white);

    font-size: 13px;

    transition: 0.25s ease;
}

.ai-news-search input::placeholder {
    color: #68766d;
}

.ai-news-search input:focus {
    border-color: var(--border-green);

    box-shadow:
        0 0 0 4px rgba(53,255,134,0.04),
        0 20px 50px rgba(0,0,0,0.25);
}

.ai-news-search-icon {
    position: absolute;

    right: 19px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--green);

    font-size: 23px;

    pointer-events: none;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.ai-news-categories {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 70px;
}

.ai-news-category {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 37px;

    padding: 0 14px;

    border: 1px solid var(--border);

    border-radius: 999px;

    background: rgba(255,255,255,0.025);

    color: var(--muted);

    font-size: 11px;
    font-weight: 800;

    transition: 0.25s ease;
}

.ai-news-category:hover,
.ai-news-category.active {
    background: var(--green);

    border-color: var(--green);

    color: #021007;

    transform: translateY(-2px);

    box-shadow:
        0 9px 25px rgba(53,255,134,0.13);
}


/* =========================================================
   SECTION TITLES
   ========================================================= */

.ai-news-section-title {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 25px;
}

.ai-news-section-title h2 {
    margin: 0;

    color: var(--white);

    font-size: clamp(27px, 4vw, 39px);

    line-height: 1.1;

    font-weight: 950;

    letter-spacing: -1.5px;
}

.ai-news-section-title h2 span {
    color: var(--green);
}

.ai-news-section-title p {
    max-width: 450px;

    margin: 0;

    color: var(--muted);

    font-size: 12px;
}


/* =========================================================
   FEATURED SECTION
   ========================================================= */

.ai-news-featured {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(290px, 0.5fr);

    gap: 21px;

    margin-bottom: 80px;
}


/* ================= FEATURED CARD ================= */

.ai-news-featured-card {
    position: relative;

    min-height: 440px;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(53,255,134,0.12),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #0d1811,
            #050806
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,0.35);

    transition:
        border-color 0.3s ease,
        transform 0.3s ease;
}

.ai-news-featured-card:hover {
    border-color: var(--border-green);

    transform: translateY(-4px);
}


/* ================= FEATURED VISUAL ================= */

.ai-news-featured-visual {
    position: absolute;

    width: 420px;
    height: 420px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(53,255,134,0.16),
            transparent 62%
        );
}

.ai-news-orbit {
    position: absolute;

    left: 50%;
    top: 50%;

    border: 1px solid rgba(53,255,134,0.18);

    border-radius: 50%;

    transform:
        translate(-50%, -50%)
        rotate(-20deg);
}

.orbit-one {
    width: 250px;
    height: 110px;

    animation:
        aiNewsOrbit 8s linear infinite;
}

.orbit-two {
    width: 310px;
    height: 145px;

    transform:
        translate(-50%, -50%)
        rotate(55deg);

    animation:
        aiNewsOrbitReverse 10s linear infinite;
}

@keyframes aiNewsOrbit {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}

@keyframes aiNewsOrbitReverse {

    from {
        transform:
            translate(-50%, -50%)
            rotate(55deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(-305deg);
    }

}

.ai-news-ai-symbol {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(53,255,134,0.3);

    border-radius: 28px;

    background: rgba(53,255,134,0.08);

    color: var(--green);

    font-size: 28px;
    font-weight: 950;

    box-shadow:
        0 0 70px rgba(53,255,134,0.12);
}


/* ================= FEATURED CONTENT ================= */

.ai-news-featured-content {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 3;

    padding: 35px;

    background:
        linear-gradient(
            to top,
            #050806 0%,
            rgba(5,8,6,0.92) 55%,
            transparent 100%
        );
}

.ai-news-tag {
    display: inline-flex;

    padding: 5px 10px;

    margin-bottom: 13px;

    border-radius: 999px;

    background: var(--green);

    color: #021007;

    font-size: 9px;
    font-weight: 950;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}

.ai-news-featured-content h3 {
    max-width: 700px;

    margin: 0 0 11px;

    color: var(--white);

    font-size: clamp(25px, 4vw, 42px);

    line-height: 1.07;

    font-weight: 950;

    letter-spacing: -1.5px;
}

.ai-news-featured-content p {
    max-width: 660px;

    margin: 0 0 17px;

    color: #aab8af;

    font-size: 12px;

    line-height: 1.7;
}

.ai-news-meta {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    color: #718078;

    font-size: 10px;
}

.ai-news-meta strong {
    color: var(--green);
}


/* Invisible full-card link */

.ai-news-card-link {
    position: absolute;

    inset: 0;

    z-index: 5;
}


/* =========================================================
   TRENDING
   ========================================================= */

.ai-news-trending {
    padding: 25px;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            rgba(53,255,134,0.05),
            rgba(255,255,255,0.01)
        );
}

.ai-news-trending h3 {
    margin: 0 0 14px;

    color: var(--white);

    font-size: 19px;

    font-weight: 900;
}

.ai-news-trending-item {
    display: grid;

    grid-template-columns: 36px 1fr;

    gap: 11px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.ai-news-trending-item:last-child {
    border-bottom: none;
}

.ai-news-trending-number {
    width: 33px;
    height: 33px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background: var(--green-soft);

    color: var(--green);

    font-size: 10px;
    font-weight: 950;
}

.ai-news-trending-item strong {
    display: block;

    color: var(--text);

    font-size: 11px;

    line-height: 1.45;
}

.ai-news-trending-item small {
    display: block;

    margin-top: 4px;

    color: #66736b;

    font-size: 9px;
}


/* =========================================================
   NEWS GRID
   ========================================================= */

.ai-news-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 55px;
}


/* ================= NEWS CARD ================= */

.ai-news-card {
    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: 17px;

    background: var(--card);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ai-news-card:hover {
    transform: translateY(-7px);

    border-color: var(--border-green);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.32);
}


/* ================= NEWS VISUAL ================= */

.ai-news-card-image {
    position: relative;

    height: 190px;

    display: grid;

    place-items: center;

    overflow: hidden;
}

.ai-news-card-image::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 80px rgba(255,255,255,0.05);

    animation:
        aiNewsVisualFloat 5s ease-in-out infinite;
}

@keyframes aiNewsVisualFloat {

    0%,
    100% {
        transform: scale(0.96) rotate(0deg);
    }

    50% {
        transform: scale(1.04) rotate(8deg);
    }

}

.ai-news-visual-green {
    background:
        radial-gradient(
            circle,
            rgba(53,255,134,0.25),
            transparent 65%
        ),
        #08120c;
}

.ai-news-visual-purple {
    background:
        radial-gradient(
            circle,
            rgba(160,100,255,0.22),
            transparent 65%
        ),
        #0d0915;
}

.ai-news-visual-blue {
    background:
        radial-gradient(
            circle,
            rgba(60,150,255,0.22),
            transparent 65%
        ),
        #071018;
}

.ai-news-visual-orange {
    background:
        radial-gradient(
            circle,
            rgba(255,160,50,0.20),
            transparent 65%
        ),
        #140d06;
}

.ai-news-visual-pink {
    background:
        radial-gradient(
            circle,
            rgba(255,70,150,0.20),
            transparent 65%
        ),
        #140710;
}

.ai-news-visual-cyan {
    background:
        radial-gradient(
            circle,
            rgba(45,240,220,0.20),
            transparent 65%
        ),
        #061313;
}

.ai-news-mini-icon {
    position: relative;
    z-index: 2;

    width: 72px;
    height: 72px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 20px;

    background: rgba(0,0,0,0.35);

    color: var(--green);

    font-size: 13px;
    font-weight: 950;

    backdrop-filter: blur(10px);
}

.ai-news-card-category {
    position: absolute;

    left: 13px;
    top: 13px;

    padding: 5px 8px;

    border: 1px solid rgba(53,255,134,0.2);

    border-radius: 999px;

    background: rgba(3,6,4,0.8);

    color: var(--green);

    font-size: 8px;
    font-weight: 900;

    text-transform: uppercase;
}


/* ================= CARD BODY ================= */

.ai-news-card-body {
    padding: 20px;
}

.ai-news-card-date {
    margin-bottom: 7px;

    color: var(--green);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.8px;
}

.ai-news-card-body h3 {
    margin: 0 0 9px;

    color: var(--white);

    font-size: 17px;

    line-height: 1.3;

    font-weight: 850;

    letter-spacing: -0.4px;

    transition: color 0.25s ease;
}

.ai-news-card:hover
.ai-news-card-body h3 {
    color: var(--green);
}

.ai-news-card-body p {
    margin: 0 0 17px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}

.ai-news-read-more {
    color: var(--green) !important;

    font-size: 10px;

    font-weight: 900;

    transition: 0.25s ease;
}

.ai-news-read-more:hover {
    letter-spacing: 0.3px;
}


/* =========================================================
   LOAD MORE
   ========================================================= */

.ai-news-load-more-wrap {
    text-align: center;

    margin-bottom: 80px;
}

.ai-news-load-more {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 47px;

    padding: 0 22px;

    border: 1px solid var(--border-green);

    border-radius: 999px;

    background: var(--green-soft);

    color: var(--green) !important;

    font-size: 10px;
    font-weight: 900;

    transition: 0.25s ease;
}

.ai-news-load-more:hover {
    background: var(--green);

    color: #021007 !important;

    transform: translateY(-3px);
}


/* =========================================================
   FREE LEARNING BOX
   ========================================================= */

.ai-news-learning-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 45px;

    margin-bottom: 70px;

    border: 1px solid var(--border-green);

    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(53,255,134,0.08),
            transparent 35%
        ),
        #08100b;
}

.ai-news-small-label {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--green);

    font-size: 9px;
    font-weight: 950;

    letter-spacing: 1px;
}

.ai-news-learning-content h2 {
    max-width: 650px;

    margin: 0 0 12px;

    color: var(--white);

    font-size: clamp(26px, 4vw, 42px);

    line-height: 1.05;

    font-weight: 950;

    letter-spacing: -1.4px;
}

.ai-news-learning-content h2 span {
    color: var(--green);
}

.ai-news-learning-content p {
    max-width: 620px;

    margin: 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.7;
}

.ai-news-learning-actions {
    display: flex;

    flex-direction: column;

    gap: 9px;

    flex-shrink: 0;
}

.ai-news-primary-btn,
.ai-news-secondary-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 10px;
    font-weight: 900;

    transition: 0.25s ease;
}

.ai-news-primary-btn {
    background: var(--green);

    color: #021007 !important;
}

.ai-news-secondary-btn {
    border: 1px solid var(--border);

    background: rgba(255,255,255,0.02);

    color: var(--text) !important;
}

.ai-news-primary-btn:hover,
.ai-news-secondary-btn:hover {
    transform: translateY(-2px);
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.ai-news-newsletter {
    position: relative;

    overflow: hidden;

    padding: 60px 25px;

    margin-bottom: 80px;

    text-align: center;

    border: 1px solid var(--border-green);

    border-radius: var(--radius);

    background:
        radial-gradient(
            circle at center,
            rgba(53,255,134,0.10),
            transparent 65%
        ),
        #07100a;
}

.ai-news-newsletter h2 {
    margin: 0 0 10px;

    color: var(--white);

    font-size: clamp(28px, 5vw, 44px);

    line-height: 1.05;

    font-weight: 950;

    letter-spacing: -1.5px;
}

.ai-news-newsletter h2 span {
    color: var(--green);
}

.ai-news-newsletter p {
    max-width: 600px;

    margin: 0 auto 22px;

    color: var(--muted);

    font-size: 12px;
}

.ai-news-newsletter-form {
    display: flex;

    max-width: 570px;

    margin: auto;

    gap: 8px;
}

.ai-news-newsletter-form input {
    flex: 1;

    min-width: 0;

    height: 50px;

    padding: 0 15px;

    border: 1px solid var(--border);

    border-radius: 10px;

    outline: none;

    background: #030604;

    color: var(--white);

    font-size: 11px;
}

.ai-news-newsletter-form input:focus {
    border-color: var(--green);
}

.ai-news-newsletter-form button {
    min-width: 110px;

    height: 50px;

    border: none;

    border-radius: 10px;

    background: var(--green);

    color: #021007;

    font-size: 10px;
    font-weight: 950;

    cursor: pointer;

    transition: 0.25s ease;
}

.ai-news-newsletter-form button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(53,255,134,0.16);
}

.ai-news-newsletter-note {
    display: block;

    margin-top: 12px;

    color: #617067;

    font-size: 9px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.ai-news-footer {
    padding: 55px 0 25px;

    border-top: 1px solid var(--border);

    background: #020403;
}

.ai-news-footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        repeat(3, 1fr);

    gap: 40px;

    padding-bottom: 40px;
}

.ai-news-footer-brand p {
    max-width: 340px;

    margin: 14px 0 0;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.7;
}

.ai-news-footer-column h4 {
    margin: 0 0 14px;

    color: var(--white);

    font-size: 12px;

    font-weight: 900;
}

.ai-news-footer-column a {
    display: block;

    width: fit-content;

    margin-bottom: 9px;

    color: var(--muted) !important;

    font-size: 10px;

    transition: 0.25s ease;
}

.ai-news-footer-column a:hover {
    color: var(--green) !important;

    transform: translateX(3px);
}

.ai-news-footer-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    color: #56625b;

    font-size: 9px;
}

.ai-news-footer-bottom span:last-child {
    color: var(--green);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {

    .ai-news-menu {
        gap: 13px;
    }

    .ai-news-featured {
        grid-template-columns: 1fr;
    }

    .ai-news-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .ai-news-footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .ai-news-learning-box {
        flex-direction: column;

        align-items: flex-start;
    }

    .ai-news-learning-actions {
        flex-direction: row;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .ai-news-container {
        width: min(92%, 620px);
    }

    .ai-news-nav {
        min-height: 67px;
    }

    .ai-news-menu {
        display: none;
    }

    .ai-news-logo {
        font-size: 17px;
    }

    .ai-news-logo-icon {
        width: 34px;
        height: 34px;
    }

    .ai-news-header-btn {
        min-height: 35px;

        padding: 0 13px;

        font-size: 9px;
    }

    .ai-news-hero {
        padding: 75px 0 48px;
    }

    .ai-news-hero h1 {
        font-size: clamp(39px, 12vw, 57px);

        letter-spacing: -2.8px;
    }

    .ai-news-hero-description {
        font-size: 12px;
    }

    .ai-news-categories {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding-bottom: 8px;

        scrollbar-width: none;
    }

    .ai-news-categories::-webkit-scrollbar {
        display: none;
    }

    .ai-news-category {
        flex-shrink: 0;
    }

    .ai-news-section-title {
        display: block;
    }

    .ai-news-section-title h2 {
        margin-bottom: 8px;
    }

    .ai-news-featured-card {
        min-height: 420px;
    }

    .ai-news-featured-visual {
        right: -150px;
        top: -80px;

        transform: scale(0.8);
    }

    .ai-news-featured-content {
        padding: 24px;
    }

    .ai-news-featured-content h3 {
        font-size: 27px;
    }

    .ai-news-grid {
        grid-template-columns: 1fr;
    }

    .ai-news-card-image {
        height: 205px;
    }

    .ai-news-learning-actions {
        width: 100%;

        flex-direction: column;
    }

    .ai-news-primary-btn,
    .ai-news-secondary-btn {
        width: 100%;
    }

    .ai-news-newsletter {
        padding: 45px 18px;
    }

    .ai-news-newsletter-form {
        flex-direction: column;
    }

    .ai-news-newsletter-form input,
    .ai-news-newsletter-form button {
        width: 100%;
    }

    .ai-news-footer-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .ai-news-footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .ai-news-hero h1 {
        font-size: 37px;
    }

    .ai-news-featured-card {
        min-height: 400px;
    }

    .ai-news-featured-content h3 {
        font-size: 23px;
    }

    .ai-news-trending {
        padding: 20px;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.ai-news-page a:focus-visible,
.ai-news-page input:focus-visible,
.ai-news-page button:focus-visible {
    outline: 2px solid var(--green);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ai-news-page *,
    .ai-news-page *::before,
    .ai-news-page *::after {
        animation: none !important;

        transition: none !important;
    }

}/* End custom CSS */