/* RUBITCUBE BLOG PAGE
   Common header/footer/global styling remains in styles.css. */

.blog-hero {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9ff 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* LEFT CONTENT */
.blog-hero-left {
    position: relative;
    z-index: 2;
}

.blog-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue, #2d5bff);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.blog-section-tag span {
    width: 22px;
    height: 2px;
    background: var(--blue, #2d5bff);
    display: inline-block;
}

.blog-hero-left h1 {
    font-size: 54px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    margin: 20px 0;
    color: #121826;
}

.blog-hero-left h1 span {
    display: inline;
    color: var(--blue, #2d5bff);
}

.blog-hero-left>p {
    max-width: 620px;
    color: var(--muted, #6f7482);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 20px;
}

/* BUTTONS */
.blog-hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.blog-btn-primary,
.blog-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 32px;
    border-radius: 100px;
    font-weight: 700;
    transition: .35s ease;
}

.blog-btn-primary {
    background: #2d5bff;
    color: #fff;
}

.blog-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(45, 91, 255, .35);
}

.blog-btn-outline {
    border: 1px solid #0b1220;
    color: #0b1220;
    background: transparent;
}

.blog-btn-outline:hover {
    background: #0b1220;
    color: #fff;
    transform: translateY(-3px);
}

/* RIGHT IMAGE */
.blog-hero-right {
    position: relative;
    z-index: 1;
}

.blog-hero-right img {
    width: 100%;
    display: block;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
    transition: .4s ease;
    position: relative;
    z-index: 2;
}

.blog-hero-right img:hover {
    transform: scale(1.02);
}

/* BLUE CIRCLE */
.blog-hero-right::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(45, 91, 255, .08);
    top: -30px;
    right: -30px;
    z-index: 0;
}

/* BLUE ROTATED SQUARE */
.blog-hero-right::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #2d5bff;
    opacity: .08;
    border-radius: 30px;
    left: -30px;
    bottom: -30px;
    transform: rotate(25deg);
    z-index: 0;
}

/* SMALL IMAGE BADGE */
.blog-hero-badge {
    position: absolute;
    z-index: 4;
    left: -25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e6e8ef;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.blog-hero-badge strong {
    font-size: 18px;
    color: #2d5bff;
}

.blog-hero-badge span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #6f7482;
}

/* ==================================================
   TABLET
================================================== */
@media (max-width: 992px) {
    .blog-hero {
        padding: 80px 0;
    }

    .blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .blog-hero-left>p {
        margin-left: auto;
        margin-right: auto;
    }

    .blog-hero-buttons {
        justify-content: center;
    }

    .blog-hero-right {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .blog-hero-left h1 {
        font-size: 50px;
    }
}

/* ==================================================
   MOBILE
================================================== */
@media (max-width: 768px) {
    .blog-hero {
        padding: 70px 0;
    }

    .blog-hero-grid {
        gap: 45px;
    }

    .blog-hero-left h1 {
        font-size: 40px;
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .blog-hero-left>p {
        font-size: 16px;
    }

    .blog-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-top: 30px;
    }

    .blog-btn-primary,
    .blog-btn-outline {
        width: 100%;
    }

    .blog-hero-right {
        width: calc(100% - 25px);
        margin-right: 0;
    }

    .blog-hero-right img {
        border-radius: 22px;
    }

    .blog-hero-right::before {
        width: 110px;
        height: 110px;
        top: -20px;
        right: -20px;
    }

    .blog-hero-right::after {
        width: 80px;
        height: 80px;
        left: -20px;
        bottom: -20px;
        border-radius: 20px;
    }

    .blog-hero-badge {
        left: -15px;
        bottom: 15px;
        padding: 10px 13px;
    }

    .blog-hero-badge strong {
        font-size: 15px;
    }

    .blog-hero-badge span {
        font-size: 7px;
    }
}

.blog-category-strip {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.blog-categories {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none
}

.blog-categories::-webkit-scrollbar {
    display: none
}

.category-btn {
    flex: 0 0 auto;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, .15);
    background: transparent;
    color: rgba(255, 255, 255, .52);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    transition: .25s
}

.category-btn:hover,
.category-btn.active {
    color: white;
    background: var(--blue);
    border-color: var(--blue)
}

.featured-blog {
    background: var(--paper)
}

.section-mini-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px
}

.section-mini-head>span {
    font-size: 9px;
    color: var(--muted);
    font-weight: 800;
    letter-spacing: .14em
}

.featured-post {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 570px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 30px;
    overflow: hidden;
    transition: .3s
}

.featured-post:hover {
    box-shadow: 0 35px 90px rgba(11, 16, 32, .1);
    transform: translateY(-5px)
}

.featured-post-visual {
    min-height: 570px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(37, 86, 255, .28), transparent 35%), linear-gradient(135deg, #0b1020, #152450)
}

.featured-grid-lines {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image: linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 45px 45px
}

.featured-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.orbit-1 {
    width: 400px;
    height: 400px;
    animation: blogOrbit 18s linear infinite
}

.orbit-2 {
    width: 260px;
    height: 260px;
    border-color: rgba(139, 165, 255, .4);
    animation: blogOrbitReverse 12s linear infinite
}

.orbit-1:before,
.orbit-2:before {
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    border-radius: 50%;
    background: var(--red);
    top: 50%
}

.orbit-1:before {
    left: -5px
}

.orbit-2:before {
    right: -5px;
    background: #8ba5ff
}

@keyframes blogOrbit {
    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}

@keyframes blogOrbitReverse {
    to {
        transform: translate(-50%, -50%) rotate(-360deg)
    }
}

.featured-center {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 145px;
    height: 145px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 35px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .25)
}

.featured-center i {
    color: #8ba5ff;
    font-size: 42px;
    margin-bottom: 16px
}

.featured-center small {
    font-size: 8px;
    letter-spacing: .16em;
    font-weight: 800;
    color: rgba(255, 255, 255, .55)
}

.visual-label {
    position: absolute;
    z-index: 4;
    bottom: 25px;
    left: 28px;
    color: rgba(255, 255, 255, .45);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .16em
}

.featured-post-content {
    padding: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.post-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.post-meta span {
    font-size: 8px;
    letter-spacing: .12em;
    font-weight: 800;
    color: var(--muted)
}

.post-meta span:first-child {
    color: var(--red)
}

.featured-post-content h2 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: .98;
    letter-spacing: -.06em;
    margin: 0 0 22px
}

.featured-post-content>p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
    margin: 0
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 35px 0;
    padding-top: 25px;
    border-top: 1px solid var(--line)
}

.author-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: white;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 800
}

.post-author strong,
.post-author small {
    display: block
}

.post-author strong {
    font-size: 12px
}

.post-author small {
    color: var(--muted);
    font-size: 9px;
    margin-top: 4px
}

.post-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--line);
    transition: .2s
}

.post-link:hover {
    color: var(--blue);
    gap: 17px
}

.blog-list {
    background: white
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.blog-card {
    border: 1px solid var(--line);
    border-radius: 23px;
    overflow: hidden;
    background: white;
    transition: .3s ease
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 70px rgba(11, 16, 32, .1)
}

.blog-card-image {
    height: 260px;
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none
}

.blog-card-image>span {
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 20px;
    padding: 7px 9px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    background: rgba(11, 16, 32, .35);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, .72);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em
}

.blog-image-ai {
    background: radial-gradient(circle at 50% 50%, rgba(37, 86, 255, .45), transparent 38%), #0b1020
}

.blog-image-cloud {
    background: radial-gradient(circle at 50% 50%, rgba(139, 165, 255, .3), transparent 40%), #10182d
}

.blog-image-business {
    background: linear-gradient(135deg, #0b1020, #23366e)
}

.blog-image-growth {
    background: radial-gradient(circle at 75% 25%, rgba(37, 86, 255, .4), transparent 35%), #0b1020
}

.blog-image-web {
    background: linear-gradient(135deg, #e7ebf8, #b8c5ef)
}

.blog-image-data {
    background: radial-gradient(circle at 50% 50%, rgba(37, 86, 255, .25), transparent 42%), #0b1020
}

.image-art {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center
}

.image-art i {
    color: white;
    font-size: 46px;
    position: relative;
    z-index: 3
}

.ai-art-ring {
    width: 145px;
    height: 145px;
    position: absolute;
    border: 1px solid rgba(139, 165, 255, .6);
    border-radius: 50%;
    box-shadow: 0 0 0 35px rgba(139, 165, 255, .04), 0 0 0 70px rgba(139, 165, 255, .025);
    animation: pulseRing 3s ease-in-out infinite
}

@keyframes pulseRing {
    50% {
        transform: scale(1.08);
        opacity: .65
    }
}

.cloud-shape {
    width: 125px;
    height: 125px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    display: grid;
    place-items: center;
    backdrop-filter: blur(10px)
}

.cloud-node {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #8ba5ff;
    box-shadow: 0 0 0 7px rgba(139, 165, 255, .1)
}

.node-a {
    top: 33%;
    left: 28%
}

.node-b {
    top: 65%;
    left: 31%
}

.node-c {
    top: 49%;
    right: 25%
}

.business-bars {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 12px
}

.business-bars i {
    width: 23px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(to top, #8ba5ff, #d5ddff)
}

.business-bars i:nth-child(1) {
    height: 40px
}

.business-bars i:nth-child(2) {
    height: 68px
}

.business-bars i:nth-child(3) {
    height: 55px
}

.business-bars i:nth-child(4) {
    height: 93px
}

.business-bars i:nth-child(5) {
    height: 118px
}

.business-arrow {
    position: absolute;
    color: white;
    font-size: 42px;
    transform: translate(70px, -50px)
}

.growth-chart {
    width: 190px;
    height: 130px;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25)
}

.growth-chart span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8ba5ff
}

.growth-chart span:nth-child(1) {
    left: 10%;
    bottom: 18%
}

.growth-chart span:nth-child(2) {
    left: 34%;
    bottom: 35%
}

.growth-chart span:nth-child(3) {
    left: 58%;
    bottom: 47%
}

.growth-chart span:nth-child(4) {
    left: 83%;
    bottom: 75%
}

.growth-chart:before {
    content: "";
    position: absolute;
    width: 170px;
    height: 90px;
    left: 5px;
    bottom: 8px;
    border-top: 2px solid #8ba5ff;
    transform: skewY(-22deg)
}

.growth-chart b {
    position: absolute;
    right: -8px;
    top: 2px;
    color: white;
    font-size: 28px
}

.browser-art {
    width: 205px;
    height: 130px;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(11, 16, 32, .13);
    box-shadow: 0 25px 60px rgba(11, 16, 32, .2);
    padding: 22px 15px 15px;
    position: relative
}

.browser-art:before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 9px;
    height: 5px;
    border-radius: 5px;
    background: #e3e6ed
}

.browser-art div {
    height: 12px;
    border-radius: 4px;
    background: #e9ecf3;
    margin-bottom: 10px
}

.browser-art div:first-child {
    width: 55%;
    background: #9eb3ff
}

.browser-art div:nth-child(2) {
    width: 85%
}

.browser-art div:nth-child(3) {
    width: 70%
}

.data-grid {
    width: 160px;
    height: 160px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    transform: rotate(45deg)
}

.data-grid span {
    border: 1px solid rgba(139, 165, 255, .3);
    background: rgba(139, 165, 255, .08);
    border-radius: 5px
}

.data-grid span:nth-child(5) {
    background: #8ba5ff;
    box-shadow: 0 0 30px rgba(139, 165, 255, .35)
}

.blog-card-content {
    padding: 25px
}

.blog-card-content h3 {
    font-size: 24px;
    line-height: 1.08;
    letter-spacing: -.045em;
    margin: 0 0 13px
}

.blog-card-content>p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 25px
}

.no-posts {
    display: none;
    padding: 45px;
    border: 1px solid var(--line);
    text-align: center;
    color: var(--muted);
    border-radius: 18px
}

.no-posts.show {
    display: block
}

/* ==================================================
   BLOG FINAL CTA — PREMIUM DARK VERSION
================================================== */

.blog-cta {
    position: relative;
    background: #ffffff;
    padding: 100px 0;
}

/* ==================================================
   CTA BOX
================================================== */

.blog-cta-box {
    position: relative;
    overflow: hidden;

    padding: 42px 48px 30px;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(45, 91, 255, .20),
            transparent 30%),
        linear-gradient(135deg,
            #080c18 0%,
            #0d1324 55%,
            #111a32 100%);

    border-radius: 28px;

    color: #ffffff;

    isolation: isolate;
}

/* ==================================================
   BACKGROUND GLOW
================================================== */

.blog-cta-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    right: -150px;
    bottom: -230px;

    border-radius: 50%;

    background: rgba(45, 91, 255, .20);

    filter: blur(70px);

    pointer-events: none;

    z-index: -1;
}

/* ==================================================
   LARGE BACKGROUND NUMBER
================================================== */

.blog-cta-number {
    position: absolute;

    right: 20px;
    bottom: -75px;

    font-size: clamp(220px, 25vw, 360px);
    line-height: .8;

    font-weight: 800;
    letter-spacing: -.09em;

    color: rgba(255, 255, 255, .035);

    pointer-events: none;

    z-index: -1;
}

/* ==================================================
   TOP
================================================== */

.blog-cta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.blog-cta-eyebrow {
    color: #ffffff !important;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .16em;
}

.blog-cta-eyebrow span {
    background: var(--blue);
}

.blog-cta-label {
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;

    color: rgba(255, 255, 255, .45);
}

/* ==================================================
   MAIN
================================================== */

.blog-cta-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: minmax(0, 1fr) 220px;

    align-items: end;

    gap: 80px;

    padding: 70px 0 85px;
}

/* ==================================================
   CONTENT
================================================== */

.blog-cta-content h2 {
    max-width: 800px;

    margin: 0 0 28px;

    font-size: clamp(52px, 6vw, 88px);

    line-height: .92;

    letter-spacing: -.07em;

    font-weight: 700;

    color: #ffffff;
}

.blog-cta-content h2 span {
    display: block;

    color: var(--blue);
}

.blog-cta-content p {
    max-width: 570px;

    margin: 0;

    color: rgba(255, 255, 255, .60);

    font-size: 15px;

    line-height: 1.75;
}

/* ==================================================
   CONTACT BUTTON
================================================== */

.blog-contact-link {
    position: relative;

    width: 210px;
    height: 210px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 20px;

    border: 1px solid rgba(255, 255, 255, .20);

    border-radius: 50%;

    color: #ffffff;

    text-decoration: none;

    background: rgba(255, 255, 255, .035);

    backdrop-filter: blur(10px);

    transition:
        transform .4s ease,
        background .4s ease,
        border-color .4s ease;
}

.blog-contact-link:hover {
    transform: translateY(-8px);

    background: var(--blue);

    border-color: var(--blue);
}

/* Arrow */

.blog-contact-circle {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--blue);

    color: #ffffff;

    font-size: 22px;

    transition:
        transform .4s ease,
        background .4s ease;
}

.blog-contact-link:hover .blog-contact-circle {
    background: #ffffff;

    color: var(--blue);

    transform: rotate(45deg);
}

/* Text */

.blog-contact-text {
    font-size: 13px;

    font-weight: 700;

    letter-spacing: .02em;
}

/* ==================================================
   BOTTOM
================================================== */

.blog-cta-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .12);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .16em;

    color: rgba(255, 255, 255, .35);
}

/* ==================================================
   TABLET
================================================== */

@media(max-width:1024px) {
    .blog-cta {
        padding: 80px 0;
    }

    .blog-cta-box {
        padding: 38px 35px 28px;
    }

    .blog-cta-main {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 60px 0 65px;
    }

    .blog-contact-link {
        width: 175px;
        height: 175px;
    }

    .blog-cta-number {
        font-size: 260px;
    }
}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:760px) {
    .blog-cta {
        padding: 65px 0;
    }

    .blog-cta-box {
        padding: 30px 24px 24px;

        border-radius: 20px;
    }

    .blog-cta-top {
        padding-bottom: 20px;
    }

    .blog-cta-label {
        display: none;
    }

    .blog-cta-main {
        gap: 40px;

        padding: 45px 0 50px;
    }

    .blog-cta-content h2 {
        font-size: 48px;

        line-height: .94;

        margin-bottom: 24px;
    }

    .blog-cta-content p {
        font-size: 14px;

        line-height: 1.7;
    }

    .blog-contact-link {
        width: 150px;
        height: 150px;

        justify-self: flex-start;
    }

    .blog-contact-circle {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .blog-contact-text {
        font-size: 12px;
    }

    .blog-cta-number {
        right: -20px;
        bottom: -35px;

        font-size: 180px;
    }

    .blog-cta-bottom {
        font-size: 8px;
    }

    .blog-cta-bottom span:first-child {
        max-width: 160px;
    }
}

@media(max-width:1024px) {
    .blog-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .featured-post {
        grid-template-columns: 1fr
    }

    .featured-post-visual {
        min-height: 470px
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:760px) {
    .blog-hero {
        padding-top: 105px;
        padding-bottom: 70px
    }

    .blog-hero-copy h1 {
        font-size: clamp(55px, 17vw, 80px)
    }

    .blog-hero-copy>p {
        font-size: 16px
    }

    .blog-categories {
        min-height: 75px
    }

    .featured-post {
        border-radius: 22px
    }

    .featured-post-visual {
        min-height: 370px
    }

    .featured-post-content {
        padding: 32px 25px
    }

    .featured-post-content h2 {
        font-size: 36px
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .blog-card-image {
        height: 245px
    }
}

@media(prefers-reduced-motion:reduce) {

    .featured-orbit,
    .ai-art-ring {
        animation: none
    }
}