/* Malinio / extreme inner pages. The CMS markup stays editable; this file is the visual system. */

.theme-malinio:not(.page-home) {
    --mx-black: #08080a;
    --mx-black-soft: #111116;
    --mx-ink: #15151a;
    --mx-cream: #f3f0e9;
    --mx-white: #fffdf9;
    --mx-pink: #e30b5d;
    --mx-hot: #ff4b92;
    --mx-violet: #7655ff;
    --mx-cyan: #75f2ed;
    --mx-acid: #d9ff46;
    --mx-line: rgba(255, 255, 255, .14);
    --page-bg: var(--mx-cream);
    --page-surface: var(--mx-white);
    --page-text: var(--mx-ink);
    --page-muted: #646169;
    --page-primary: var(--mx-black);
    --page-accent: var(--mx-pink);
    --page-border: rgba(8, 8, 10, .16);
    --page-radius: 26px;
    --page-font: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
    --page-heading-font: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
    margin: 0;
    background: var(--mx-black) !important;
    color: var(--mx-white);
    font-family: var(--page-font);
    overflow-x: clip;
}

.theme-malinio:not(.page-home)::selection {
    background: var(--mx-acid);
    color: var(--mx-black);
}

.theme-malinio:not(.page-home) *,
.theme-malinio:not(.page-home) *::before,
.theme-malinio:not(.page-home) *::after {
    box-sizing: border-box;
}

.theme-malinio:not(.page-home) .container {
    width: min(1380px, calc(100% - 72px));
}

/* Floating pill navigation */
.theme-malinio:not(.page-home) .site-header {
    position: sticky;
    z-index: 300;
    top: 0;
    padding: 14px 0;
    border: 0;
    background: rgba(8, 8, 10, .94);
    backdrop-filter: blur(22px) saturate(140%);
}

.theme-malinio:not(.page-home) .site-header__inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    padding: 8px 9px 8px 14px;
    background: rgba(17, 17, 22, .82);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .32), inset 0 1px rgba(255, 255, 255, .07);
}

.theme-malinio:not(.page-home) .site-logo {
    width: 164px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    padding: 6px 13px;
    background: #fff;
    color: var(--mx-black);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .22);
}

.theme-malinio:not(.page-home) .site-logo img {
    width: 100%;
    max-width: 140px;
    height: 38px;
    object-fit: contain;
}

.theme-malinio:not(.page-home) .site-nav {
    gap: 2px;
    justify-content: center;
}

.theme-malinio:not(.page-home) .site-nav a {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 12px;
    color: rgba(255, 255, 255, .62);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: color .22s ease, background .22s ease;
}

.theme-malinio:not(.page-home) .site-nav a:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.theme-malinio:not(.page-home) .site-phone {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 20px;
    background: var(--mx-acid);
    color: var(--mx-black);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .04em;
    transition: background .2s ease, box-shadow .2s ease;
}

.theme-malinio:not(.page-home) .site-phone:hover {
    background: #fff;
    box-shadow: 0 0 0 6px rgba(217, 255, 70, .12);
}

/* Cinematic subpage hero */
.theme-malinio:not(.page-home) .cms-hero,
.theme-malinio:not(.page-home) .shop-hero {
    position: relative;
    min-height: min(780px, 78vh);
    display: grid;
    align-items: center;
    padding: clamp(110px, 14vw, 190px) 0 clamp(90px, 11vw, 150px);
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(118, 85, 255, .38), transparent 26rem),
        radial-gradient(circle at 12% 84%, rgba(227, 11, 93, .3), transparent 30rem),
        var(--mx-black) !important;
    color: var(--mx-white);
}

.theme-malinio:not(.page-home) .cms-hero::before,
.theme-malinio:not(.page-home) .shop-hero::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 4%;
    right: -7vw;
    width: clamp(300px, 44vw, 720px);
    aspect-ratio: 1;
    border: clamp(40px, 7vw, 108px) solid var(--mx-pink);
    border-radius: 48% 52% 38% 62%;
    opacity: .88;
    filter: drop-shadow(0 0 80px rgba(227, 11, 93, .2));
    animation: mxInnerOrbit 16s ease-in-out infinite alternate;
}

.theme-malinio:not(.page-home) .cms-hero::after,
.theme-malinio:not(.page-home) .shop-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 7%;
    left: 7%;
    width: 110px;
    height: 24px;
    border-radius: 999px;
    background: var(--mx-acid);
    box-shadow: 140px -36px 0 var(--mx-cyan), 255px 46px 0 var(--mx-hot);
    transform: rotate(-14deg);
}

@keyframes mxInnerOrbit {
    from { transform: rotate(-10deg) scale(.94); border-radius: 48% 52% 38% 62%; }
    to { transform: rotate(18deg) scale(1.05); border-radius: 63% 37% 56% 44%; }
}

.theme-malinio:not(.page-home) .cms-hero__grid,
.theme-malinio:not(.page-home) .shop-hero .container {
    position: relative;
    z-index: 2;
    display: block;
    max-width: none;
    margin: 0 auto;
    text-align: left;
    min-width: 0;
}

.theme-malinio:not(.page-home) .cms-hero__copy {
    max-width: 1080px;
    min-width: 0;
    margin: 0;
}

.theme-malinio:not(.page-home) .cms-hero h1,
.theme-malinio:not(.page-home) .shop-hero h1 {
    width: 100%;
    display: block;
    max-width: 1000px;
    margin: 10px 0 28px;
    padding: 0;
    background: none;
    color: var(--mx-white);
    font-size: clamp(3.3rem, 6.2vw, 7rem);
    font-weight: 800;
    letter-spacing: -.055em;
    text-align: left;
    text-transform: none;
}

.theme-malinio:not(.page-home) .cms-hero .eyebrow,
.theme-malinio:not(.page-home) .shop-hero .eyebrow {
    color: var(--mx-acid);
}

.theme-malinio:not(.page-home) .cms-hero__copy > p:not(.eyebrow),
.theme-malinio:not(.page-home) .shop-hero .container > p:not(.eyebrow) {
    max-width: 58ch;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.5vw, 1.28rem);
    line-height: 1.72;
}

.theme-malinio:not(.page-home) .cms-hero .actions {
    justify-content: flex-start;
}

/* Global editorial rhythm */
.theme-malinio:not(.page-home) main {
    background: var(--mx-cream);
}

.theme-malinio:not(.page-home) .section {
    position: relative;
    padding: clamp(88px, 10vw, 150px) 0;
    overflow: hidden;
    background: var(--mx-cream);
    color: var(--mx-ink);
}

.theme-malinio:not(.page-home) .section-tinted {
    background: var(--mx-black-soft) !important;
    color: var(--mx-white);
}

.theme-malinio:not(.page-home) .section-tinted > .container > h2,
.theme-malinio:not(.page-home) .section-tinted > .container > .eyebrow,
.theme-malinio:not(.page-home) .section-tinted .section-lead {
    color: var(--mx-white);
}

.theme-malinio:not(.page-home) .section > .container > h2 {
    max-width: 1050px;
    margin: 0 auto clamp(44px, 6vw, 78px);
    font-size: clamp(3rem, 7vw, 7.2rem);
    font-weight: 800;
    letter-spacing: -.07em;
    text-align: center;
    text-transform: none;
}

.theme-malinio:not(.page-home) .eyebrow {
    margin-bottom: 18px;
    color: var(--mx-pink);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .17em;
    line-height: 1.5;
    text-transform: uppercase;
}

.theme-malinio:not(.page-home) .section p,
.theme-malinio:not(.page-home) .contact-lines,
.theme-malinio:not(.page-home) .blog-article-content {
    line-height: 1.75;
}

.theme-malinio:not(.page-home) .section-lead,
.theme-malinio:not(.page-home) .section-intro {
    max-width: 64ch;
    margin-right: auto;
    margin-left: auto;
}

.theme-malinio:not(.page-home) .button,
.theme-malinio:not(.page-home) button:not(.site-menu-toggle):not(.service-popup__close):not(.legal-links__button) {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--mx-black);
    border-radius: 999px;
    padding: 0 24px;
    background: var(--mx-black);
    color: #fff;
    box-shadow: none;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.theme-malinio:not(.page-home) .button:hover,
.theme-malinio:not(.page-home) button:not(.site-menu-toggle):not(.service-popup__close):not(.legal-links__button):hover {
    border-color: var(--mx-pink);
    background: var(--mx-pink);
    color: #fff;
    box-shadow: 0 0 0 7px rgba(227, 11, 93, .12);
    transform: translateY(-2px);
}

.theme-malinio:not(.page-home) .button.secondary {
    border-color: rgba(8, 8, 10, .22);
    background: transparent;
    color: var(--mx-ink);
}

.theme-malinio:not(.page-home) .cms-hero .button {
    border-color: var(--mx-acid);
    background: var(--mx-acid);
    color: var(--mx-black);
}

.theme-malinio:not(.page-home) .cms-hero .button.secondary {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .05);
    color: #fff;
}

/* Services as poster-like editorial cards */
.theme-malinio:not(.page-home) .feature-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.theme-malinio:not(.page-home) .feature-card {
    position: relative;
    min-height: 300px;
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(8, 8, 10, .16);
    border-radius: 32px;
    padding: clamp(26px, 3vw, 42px);
    overflow: hidden;
    background: var(--mx-white);
    color: var(--mx-ink);
    box-shadow: none;
}

.theme-malinio:not(.page-home) .feature-card:nth-child(6n + 1),
.theme-malinio:not(.page-home) .feature-card:nth-child(6n + 5) {
    grid-column: span 5;
    background: var(--mx-acid);
}

.theme-malinio:not(.page-home) .feature-card:nth-child(6n + 2),
.theme-malinio:not(.page-home) .feature-card:nth-child(6n + 6) {
    grid-column: span 7;
    background: var(--mx-black);
    color: #fff;
}

.theme-malinio:not(.page-home) .feature-card:nth-child(6n + 3) {
    background: var(--mx-pink);
    color: #fff;
}

.theme-malinio:not(.page-home) .feature-card::after {
    content: attr(data-preview-block);
    position: absolute;
    top: 20px;
    right: 24px;
    color: currentColor;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .7rem;
    opacity: .32;
}

.theme-malinio:not(.page-home) .feature-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: auto;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
}

.theme-malinio:not(.page-home) .feature-card h3 {
    margin: 28px 0 14px;
    color: inherit;
    font-size: clamp(1.6rem, 2.8vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -.055em;
}

.theme-malinio:not(.page-home) .feature-card p {
    max-width: 50ch;
    margin: 0;
    color: inherit;
    opacity: .72;
}

.theme-malinio:not(.page-home) .feature-card:hover {
    border-color: var(--mx-violet);
    box-shadow: 0 28px 70px rgba(8, 8, 10, .15);
    transform: translateY(-8px) rotate(-.35deg);
}

/* Console / feature panel */
.theme-malinio:not(.page-home) .feature-panel-section {
    padding: clamp(88px, 10vw, 150px) 0;
    background: var(--mx-black) !important;
}

.theme-malinio:not(.page-home) .feature-panel {
    gap: clamp(42px, 8vw, 120px);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 38px;
    padding: clamp(38px, 7vw, 96px);
    background:
        linear-gradient(rgba(117, 242, 237, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(117, 242, 237, .055) 1px, transparent 1px),
        var(--mx-black-soft);
    background-size: 34px 34px;
    color: #fff;
}

.theme-malinio:not(.page-home) .feature-panel__copy h2 {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(3rem, 5.7vw, 6.2rem);
    font-style: normal;
    font-weight: 800;
    letter-spacing: -.07em;
    text-align: left;
}

.theme-malinio:not(.page-home) .feature-panel__copy p:not(.eyebrow) {
    color: rgba(255, 255, 255, .64);
    line-height: 1.75;
}

.theme-malinio:not(.page-home) .feature-panel__grid {
    gap: 12px;
}

.theme-malinio:not(.page-home) .feature-panel-card {
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    padding: 28px;
    background: rgba(8, 8, 10, .78);
    box-shadow: none;
}

.theme-malinio:not(.page-home) .feature-panel-card h3 {
    color: #fff;
    font-size: 1.18rem;
    font-style: normal;
    letter-spacing: -.02em;
}

.theme-malinio:not(.page-home) .feature-panel-card p {
    color: rgba(255, 255, 255, .58);
}

.theme-malinio:not(.page-home) .feature-panel-card:hover {
    border-color: var(--mx-cyan);
    box-shadow: inset 0 0 36px rgba(117, 242, 237, .08);
    transform: translateY(-5px);
}

/* Text + image landing-page sections */
.theme-malinio:not(.page-home) .split-block,
.theme-malinio:not(.page-home) .image-text-panel {
    gap: clamp(44px, 8vw, 120px);
}

.theme-malinio:not(.page-home) .split-block h2,
.theme-malinio:not(.page-home) .image-text-panel__copy h2 {
    margin: 0 0 30px;
    font-size: clamp(2.8rem, 5.5vw, 6rem);
    font-weight: 800;
    letter-spacing: -.065em;
    text-align: left;
}

.theme-malinio:not(.page-home) .split-block p,
.theme-malinio:not(.page-home) .image-text-panel__copy p {
    max-width: 56ch;
}

/* A text_image block without media must not reserve an empty second column. */
.theme-malinio:not(.page-home) .split-block--text-only {
    grid-template-columns: minmax(0, 1fr);
}

.theme-malinio:not(.page-home) .split-block--text-only .split-block__copy,
.theme-malinio:not(.page-home) .split-block--text-only h2 {
    width: 100%;
    max-width: 1200px;
}

.theme-malinio:not(.page-home) .split-block--text-only .split-block__copy {
    order: initial;
}

.theme-malinio:not(.page-home) .split-block--text-only .split-block__copy > p:not(.eyebrow) {
    max-width: 78ch;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
    line-height: 1.75;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.theme-malinio:not(.page-home) .split-block img,
.theme-malinio:not(.page-home) .image-text-panel__media img {
    aspect-ratio: 4 / 4.6;
    border: 1px solid rgba(8, 8, 10, .2);
    border-radius: 34px;
    box-shadow: 24px 24px 0 var(--mx-violet);
    transform: rotate(2deg);
}

.theme-malinio:not(.page-home) .split-block--reverse img,
.theme-malinio:not(.page-home) .image-text-panel--reverse .image-text-panel__media img {
    box-shadow: -24px 24px 0 var(--mx-pink);
    transform: rotate(-2deg);
}

.theme-malinio:not(.page-home) .split-block--showcase {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(54px, 7vw, 94px);
    align-items: start;
}

.theme-malinio:not(.page-home) .split-block--showcase .split-block__copy {
    display: grid;
    max-width: 1080px;
    justify-items: center;
    margin: 0 auto;
    text-align: center;
}

.theme-malinio:not(.page-home) .split-block--showcase .split-block__copy .eyebrow,
.theme-malinio:not(.page-home) .split-block--showcase .split-block__copy h2 {
    text-align: center;
}

.theme-malinio:not(.page-home) .split-block--showcase .split-block__copy h2 {
    max-width: 13ch;
    margin-bottom: 34px;
    font-size: clamp(3.4rem, 6.5vw, 7.35rem);
    line-height: .94;
}

.theme-malinio:not(.page-home) .split-block--showcase .split-block__copy p:not(.eyebrow) {
    max-width: 68ch;
    margin-right: auto;
    margin-left: auto;
    color: rgba(8, 8, 10, .62);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    line-height: 1.72;
    text-align: center;
}

.theme-malinio:not(.page-home) .split-block--showcase .block-buttons {
    justify-content: center;
}

.theme-malinio:not(.page-home) .split-showcase-grid {
    display: grid;
    width: min(100%, 1180px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-self: auto;
    margin: 0 auto;
}

.theme-malinio:not(.page-home) .split-showcase-card {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(8, 8, 10, .18);
    border-radius: 30px;
    background: var(--mx-black);
    color: #fff;
    box-shadow: 0 24px 56px rgba(8, 8, 10, .13);
    isolation: isolate;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.theme-malinio:not(.page-home) .split-showcase-card:nth-child(2),
.theme-malinio:not(.page-home) .split-showcase-card:nth-child(4) {
    transform: none;
}

.theme-malinio:not(.page-home) .split-showcase-card:hover {
    border-color: var(--mx-pink);
    box-shadow: 0 30px 70px rgba(118, 85, 255, .25);
    transform: translateY(-5px);
}

.theme-malinio:not(.page-home) .split-showcase-card:nth-child(2):hover,
.theme-malinio:not(.page-home) .split-showcase-card:nth-child(4):hover {
    transform: translateY(-5px);
}

.theme-malinio:not(.page-home) .split-showcase-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
    filter: saturate(.84) contrast(1.04);
    object-position: center top;
    transform: none;
    transition: filter .35s ease, transform .55s cubic-bezier(.2, .8, .2, 1);
}

.theme-malinio:not(.page-home) .split-showcase-card:hover img {
    filter: saturate(1) contrast(1.07);
    transform: scale(1.045);
}

.theme-malinio:not(.page-home) .split-showcase-card__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 8, 10, .02) 20%, rgba(8, 8, 10, .9) 100%),
        linear-gradient(135deg, transparent 50%, rgba(118, 85, 255, .15));
}

.theme-malinio:not(.page-home) .split-showcase-card__copy {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
    display: grid;
    gap: 5px;
}

.theme-malinio:not(.page-home) .split-showcase-card__copy small {
    color: var(--mx-acid);
    font: 800 .65rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.theme-malinio:not(.page-home) .split-showcase-card__copy strong {
    max-width: calc(100% - 40px);
    color: #fff;
    font-size: clamp(1.35rem, 2.1vw, 2rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: 1.06;
}

.theme-malinio:not(.page-home) .split-showcase-card__arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--mx-acid);
    color: var(--mx-black);
    font-size: 1.1rem;
    font-weight: 900;
    transition: background .2s ease, transform .2s ease;
}

.theme-malinio:not(.page-home) .split-showcase-card:hover .split-showcase-card__arrow {
    background: var(--mx-cyan);
    transform: rotate(45deg);
}

.theme-malinio:not(.page-home) .split-block--reverse > .split-block__copy {
    order: 2;
}

.theme-malinio:not(.page-home) .split-block--reverse > .split-showcase-grid {
    order: 1;
}

/* Pricing */
.theme-malinio:not(.page-home) .price-card-grid {
    gap: 16px;
    align-items: stretch;
}

.theme-malinio:not(.page-home) .price-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 30px;
    padding: clamp(28px, 3vw, 42px);
    background: #18181f;
    color: #fff;
}

.theme-malinio:not(.page-home) .price-card:nth-child(2) {
    border-color: var(--mx-acid);
    background: var(--mx-acid);
    color: var(--mx-black);
    transform: translateY(-20px) rotate(.7deg);
}

.theme-malinio:not(.page-home) .price-card h3 {
    color: inherit;
    font-size: clamp(1.65rem, 2.6vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.05em;
}

.theme-malinio:not(.page-home) .price-card > strong {
    margin: 16px 0 24px;
    color: var(--mx-hot);
    font-size: clamp(2.5rem, 4vw, 4.7rem);
    font-weight: 800;
    letter-spacing: -.07em;
}

.theme-malinio:not(.page-home) .price-card:nth-child(2) > strong {
    color: var(--mx-black);
}

.theme-malinio:not(.page-home) .price-card p,
.theme-malinio:not(.page-home) .price-card ul {
    color: inherit;
    opacity: .7;
}

.theme-malinio:not(.page-home) .price-card ul {
    margin-top: auto;
}

/* Portfolio */
.theme-malinio:not(.page-home) .portfolio-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
}

.theme-malinio:not(.page-home) .portfolio-card {
    grid-column: span 6;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 32px;
    background: #18181f;
    color: #fff;
}

.theme-malinio:not(.page-home) .portfolio-card:nth-child(3n) {
    grid-column: span 12;
}

.theme-malinio:not(.page-home) .portfolio-card img {
    aspect-ratio: 16 / 10;
    filter: saturate(.86) contrast(1.05);
}

.theme-malinio:not(.page-home) .portfolio-card > div {
    padding: clamp(28px, 4vw, 48px);
}

.theme-malinio:not(.page-home) .portfolio-card h3 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -.055em;
}

.theme-malinio:not(.page-home) .portfolio-card p:not(.eyebrow) {
    color: rgba(255, 255, 255, .62);
}

.theme-malinio:not(.page-home) .portfolio-card .button.secondary {
    border-color: rgba(255, 255, 255, .22);
    color: #fff;
}

.theme-malinio:not(.page-home) .portfolio-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.theme-malinio:not(.page-home) .portfolio-card__actions .portfolio-card__link {
    margin-top: 0;
}

.theme-malinio:not(.page-home) .portfolio-card__admin-link {
    border-color: var(--mx-acid);
    background: var(--mx-acid);
    color: var(--mx-black);
}

.theme-malinio:not(.page-home) .portfolio-card__credentials {
    display: grid;
    gap: 7px;
    margin: 18px 0 0;
    border: 1px solid rgba(217, 255, 70, .42);
    border-radius: 18px;
    padding: 16px 18px;
    background: rgba(217, 255, 70, .07);
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    line-height: 1.5;
}

.theme-malinio:not(.page-home) .portfolio-card__credentials strong {
    color: var(--mx-acid);
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.theme-malinio:not(.page-home) .portfolio-card__credentials span {
    min-width: 0;
}

.theme-malinio:not(.page-home) .portfolio-card__credentials code {
    color: #fff;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    overflow-wrap: anywhere;
}

@media (min-width: 981px) {
    .theme-malinio:not(.page-home) .portfolio-grid.portfolio-grid--custom {
        grid-template-columns: var(--block-grid-template, repeat(3, minmax(0, 1fr)));
        gap: 16px;
    }

    .theme-malinio:not(.page-home) .portfolio-grid--custom .portfolio-card,
    .theme-malinio:not(.page-home) .portfolio-grid--custom .portfolio-card:nth-child(n) {
        grid-column: auto;
        min-width: 0;
        border-radius: 24px;
    }

    .theme-malinio:not(.page-home) .portfolio-grid--custom .portfolio-card img {
        aspect-ratio: 16 / 9;
    }

    .theme-malinio:not(.page-home) .portfolio-grid--custom .portfolio-card > div {
        padding: 24px;
    }

    .theme-malinio:not(.page-home) .portfolio-grid--custom .portfolio-card h3 {
        font-size: clamp(1.35rem, 1.8vw, 2rem);
        letter-spacing: -.035em;
        line-height: calc(1em + 4px);
    }

    .theme-malinio:not(.page-home) .portfolio-grid--custom .portfolio-card p:not(.eyebrow) {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }
}

/* FAQ */
.theme-malinio:not(.page-home) .faq-list {
    max-width: 1040px;
    display: grid;
    gap: 12px;
}

.theme-malinio:not(.page-home) .faq-list details {
    border: 1px solid rgba(8, 8, 10, .16);
    border-radius: 22px;
    padding: 0 28px;
    background: var(--mx-white);
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.theme-malinio:not(.page-home) .faq-list details[open] {
    border-color: var(--mx-pink);
    background: #fff;
    transform: translateX(8px);
}

.theme-malinio:not(.page-home) .faq-list summary {
    padding: 25px 44px 25px 0;
    color: var(--mx-ink);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 800;
    line-height: calc(1em + 4px);
}

.theme-malinio:not(.page-home) .faq-list details p {
    max-width: 68ch;
    padding-bottom: 26px;
}

.theme-malinio:not(.page-home) .faq-list--cards {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-malinio:not(.page-home) .faq-link {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(8, 8, 10, .16);
    border-radius: 28px;
    padding: 34px;
    background: var(--mx-white);
    color: var(--mx-ink);
    text-decoration: none;
}

.theme-malinio:not(.page-home) .faq-link:nth-child(3n + 1) {
    background: var(--mx-acid);
}

.theme-malinio:not(.page-home) .faq-link h3 {
    margin: 0 0 18px;
    font-size: clamp(1.5rem, 2.6vw, 2.7rem);
    letter-spacing: -.05em;
}

.theme-malinio:not(.page-home) .faq-link span {
    margin-top: auto;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* CTA */
.theme-malinio:not(.page-home) .section:has(.cta-band) {
    padding: 0;
    background: var(--mx-black);
}

.theme-malinio:not(.page-home) .cta-band {
    width: 100%;
    max-width: none;
    min-height: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    padding: clamp(90px, 13vw, 180px) max(36px, calc((100vw - 1300px) / 2));
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, var(--mx-hot), transparent 28%),
        radial-gradient(circle at 82% 80%, var(--mx-violet), transparent 30%),
        var(--mx-pink);
    color: #fff;
}

.theme-malinio:not(.page-home) .cta-band::before {
    content: "\2197";
    position: absolute;
    right: 5vw;
    bottom: -8vw;
    color: rgba(255, 255, 255, .16);
    font-size: clamp(14rem, 30vw, 34rem);
    line-height: 1;
}

.theme-malinio.page-reference .cta-band::before {
    content: none;
    display: none;
}

.theme-malinio:not(.page-home) .cta-band h2 {
    position: relative;
    z-index: 1;
    max-width: 970px;
    margin: 0 auto 30px;
    color: #fff;
    font-size: clamp(3.7rem, 8.8vw, 9rem);
    font-weight: 800;
    letter-spacing: -.08em;
    text-align: center;
}

.theme-malinio:not(.page-home) .cta-band p,
.theme-malinio:not(.page-home) .cta-band .actions,
.theme-malinio:not(.page-home) .cta-band .eyebrow {
    position: relative;
    z-index: 1;
}

.theme-malinio:not(.page-home) .cta-band p {
    max-width: 58ch;
    color: rgba(255, 255, 255, .76);
    text-align: center;
}

.theme-malinio:not(.page-home) .cta-band .button {
    border-color: var(--mx-acid);
    background: var(--mx-acid);
    color: var(--mx-black);
}

/* Contact */
.theme-malinio:not(.page-home) .contact-grid {
    gap: clamp(44px, 8vw, 120px);
    align-items: center;
}

.theme-malinio:not(.page-home) .contact-grid h2 {
    margin: 0 0 28px;
    font-size: clamp(3.2rem, 6.4vw, 7rem);
    font-weight: 800;
    letter-spacing: -.075em;
    text-align: left;
}

.theme-malinio:not(.page-home) .contact-lines {
    margin-top: 38px;
    border-top: 1px solid rgba(8, 8, 10, .18);
}

.theme-malinio:not(.page-home) .contact-lines p {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    margin: 0;
    border-bottom: 1px solid rgba(8, 8, 10, .18);
    padding: 14px 0;
}

.theme-malinio:not(.page-home) .contact-form {
    gap: 18px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 32px;
    padding: clamp(28px, 5vw, 54px);
    background: var(--mx-black-soft);
    box-shadow: 28px 28px 0 var(--mx-violet);
}

.theme-malinio:not(.page-home) .contact-form label {
    color: rgba(255, 255, 255, .72);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.theme-malinio:not(.page-home) .contact-form input,
.theme-malinio:not(.page-home) .contact-form textarea {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
    border-radius: 0;
    padding: 15px 0;
    background: transparent;
    color: #fff;
    font-size: 1rem;
}

.theme-malinio:not(.page-home) .contact-form input:focus,
.theme-malinio:not(.page-home) .contact-form textarea:focus {
    border-bottom-color: var(--mx-acid);
    outline: none;
}

.theme-malinio:not(.page-home) .contact-form button {
    border-color: var(--mx-acid) !important;
    background: var(--mx-acid) !important;
    color: var(--mx-black) !important;
}

/* Blog */
.theme-malinio.page-blog .shop-hero {
    min-height: 620px;
}

.theme-malinio:not(.page-home) .page-list {
    display: grid;
    gap: 0;
}

.theme-malinio:not(.page-home) .page-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(8, 8, 10, .18);
    border-radius: 0;
    padding: clamp(34px, 5vw, 66px) 0;
    background: transparent;
}

.theme-malinio:not(.page-home) .page-row:first-child {
    border-top: 1px solid rgba(8, 8, 10, .18);
}

.theme-malinio:not(.page-home) .page-row h2 {
    max-width: 900px;
    margin: 0 0 14px;
    font-size: clamp(2rem, 4.4vw, 5rem);
    font-weight: 800;
    letter-spacing: -.065em;
    text-align: left;
}

.theme-malinio:not(.page-home) .page-row p {
    max-width: 68ch;
    margin: 0;
}

.theme-malinio.page-blog-post .shop-page > .section {
    background:
        linear-gradient(90deg, transparent calc(50% - .5px), rgba(8, 8, 10, .08) 50%, transparent calc(50% + .5px)),
        var(--mx-cream);
}

.theme-malinio:not(.page-home) .text-block {
    max-width: 920px;
    padding: clamp(70px, 10vw, 140px) clamp(20px, 5vw, 70px);
    background: var(--mx-white);
}

.theme-malinio:not(.page-home) .text-block > h1 {
    margin: 12px 0 30px;
    color: var(--mx-ink);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 800;
    letter-spacing: -.075em;
}

.theme-malinio:not(.page-home) .blog-article-content {
    margin: 58px 0;
    color: #36333a;
    font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}

.theme-malinio:not(.page-home) .blog-article-content p {
    max-width: 70ch;
    margin: 0 0 1.4em;
}

.theme-malinio:not(.page-home) .blog-subheading {
    padding-top: 1.2em;
    color: var(--mx-ink);
    font-size: clamp(1.4rem, 2.4vw, 2.2rem);
    line-height: calc(1em + 4px);
}

.theme-malinio:not(.page-home) .blog-article-content a,
.theme-malinio:not(.page-home) .admin-link {
    color: var(--mx-pink);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Malinio editorial blog */
.theme-malinio.page-blog .blog-magazine,
.theme-malinio.page-blog-post .blog-post-page {
    background: var(--mx-cream);
}

.theme-malinio.page-blog .blog-magazine-hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(105px, 11vw, 165px) 0 clamp(84px, 9vw, 130px);
    background:
        radial-gradient(circle at 18% 78%, rgba(227, 11, 93, .26), transparent 29rem),
        radial-gradient(circle at 82% 18%, rgba(118, 85, 255, .28), transparent 31rem),
        var(--mx-black);
    color: var(--mx-white);
}

.theme-malinio.page-blog .blog-magazine-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.theme-malinio.page-blog .blog-magazine-hero__orbit {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: -7vw;
    width: min(48vw, 680px);
    aspect-ratio: 1;
    border: clamp(38px, 6vw, 86px) solid var(--mx-pink);
    border-radius: 50%;
    opacity: .83;
    transform: translateY(-50%);
    box-shadow: inset 0 0 90px rgba(8, 8, 10, .5), 0 0 120px rgba(227, 11, 93, .14);
}

.theme-malinio.page-blog .blog-magazine-hero__orbit::before,
.theme-malinio.page-blog .blog-magazine-hero__orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.theme-malinio.page-blog .blog-magazine-hero__orbit::before {
    inset: -24%;
}

.theme-malinio.page-blog .blog-magazine-hero__orbit::after {
    inset: 22%;
    background: rgba(8, 8, 10, .8);
}

.theme-malinio.page-blog .blog-magazine-hero__inner {
    position: relative;
    z-index: 1;
}

.theme-malinio.page-blog .blog-magazine-hero__meta {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: clamp(50px, 7vw, 96px);
}

.theme-malinio.page-blog .blog-magazine-hero__meta .eyebrow {
    margin: 0;
    color: var(--mx-acid);
}

.theme-malinio.page-blog .blog-magazine-hero__meta > span {
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    padding: 10px 14px;
    color: rgba(255, 255, 255, .55);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .66rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.theme-malinio.page-blog .blog-magazine-hero__copy {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(280px, .58fr);
    gap: clamp(46px, 8vw, 120px);
    align-items: end;
}

.theme-malinio.page-blog .blog-magazine-hero h1 {
    max-width: 10ch;
    margin: 0;
    color: var(--mx-white);
    font-size: clamp(3.3rem, 6.2vw, 7rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: calc(1em + 4px);
}

.theme-malinio.page-blog .blog-magazine-hero h1 span {
    display: block;
    color: var(--mx-hot);
}

.theme-malinio.page-blog .blog-magazine-hero__copy > div > p {
    max-width: 34ch;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, .65);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.72;
}

.theme-malinio.page-blog .blog-magazine-scroll {
    min-height: 58px;
    display: inline-flex;
    gap: 38px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    padding: 0 22px;
    color: var(--mx-white);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.theme-malinio.page-blog .blog-magazine-scroll:hover {
    background: var(--mx-acid);
    color: var(--mx-black);
    transform: translateY(-3px);
}

.theme-malinio.page-blog .blog-magazine-scroll b {
    font-size: 1.1rem;
}

.theme-malinio.page-blog .blog-magazine-hero__signals {
    position: absolute;
    bottom: -23px;
    left: 0;
    display: flex;
    gap: 22px;
    align-items: center;
}

.theme-malinio.page-blog .blog-magazine-hero__signals i {
    width: 106px;
    height: 22px;
    border-radius: 999px;
    background: var(--mx-acid);
    transform: rotate(-13deg);
}

.theme-malinio.page-blog .blog-magazine-hero__signals i:nth-child(2) {
    background: var(--mx-cyan);
    transform: rotate(8deg);
}

.theme-malinio.page-blog .blog-magazine-hero__signals i:nth-child(3) {
    background: var(--mx-hot);
    transform: rotate(-9deg);
}

.theme-malinio.page-blog .blog-magazine-list {
    padding: clamp(100px, 11vw, 170px) 0;
    background: var(--mx-cream);
    color: var(--mx-ink);
}

.theme-malinio.page-blog .blog-magazine-list__head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    gap: clamp(38px, 8vw, 120px);
    align-items: end;
    margin-bottom: clamp(56px, 8vw, 100px);
}

.theme-malinio.page-blog .blog-magazine-list__head .eyebrow {
    margin-bottom: 16px;
}

.theme-malinio.page-blog .blog-magazine-list__head h2 {
    max-width: 9ch;
    margin: 0;
    font-size: clamp(3.8rem, 7.2vw, 7.8rem);
    font-weight: 800;
    letter-spacing: -.075em;
    line-height: calc(.84em + 4px);
}

.theme-malinio.page-blog .blog-magazine-list__head > p {
    max-width: 39ch;
    margin: 0;
    color: var(--page-muted);
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.72;
}

.theme-malinio.page-blog .blog-magazine-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 14px;
}

.theme-malinio.page-blog .blog-magazine-card {
    grid-column: span 6;
    min-width: 0;
}

.theme-malinio.page-blog .blog-magazine-card > a {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(8, 8, 10, .16);
    border-radius: 30px;
    padding: clamp(25px, 3.2vw, 44px);
    background: var(--mx-white);
    color: var(--mx-ink);
    text-decoration: none;
    box-shadow: 0 24px 60px rgba(33, 25, 43, .07);
    transition: transform .32s cubic-bezier(.2, .8, .2, 1), box-shadow .32s ease, border-color .32s ease;
}

.theme-malinio.page-blog .blog-magazine-card > a::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: -80px;
    bottom: -115px;
    width: 250px;
    height: 250px;
    border: 54px solid var(--mx-pink);
    border-radius: 50%;
    opacity: .12;
    transition: transform .45s ease, opacity .45s ease;
}

.theme-malinio.page-blog .blog-magazine-card > a:hover {
    z-index: 2;
    border-color: rgba(8, 8, 10, .32);
    box-shadow: 0 34px 80px rgba(33, 25, 43, .15);
    transform: translateY(-8px);
}

.theme-malinio.page-blog .blog-magazine-card > a:hover::before {
    opacity: .24;
    transform: scale(1.18) rotate(12deg);
}

.theme-malinio.page-blog .blog-magazine-card--lead {
    grid-column: 1 / -1;
}

.theme-malinio.page-blog .blog-magazine-card--lead > a {
    min-height: 610px;
    background:
        radial-gradient(circle at 82% 38%, rgba(118, 85, 255, .35), transparent 23rem),
        var(--mx-black);
    color: var(--mx-white);
}

.theme-malinio.page-blog .blog-magazine-card--lead > a::before {
    right: 5%;
    bottom: -33%;
    width: min(48vw, 620px);
    height: min(48vw, 620px);
    border-width: clamp(50px, 7vw, 96px);
    opacity: .76;
}

.theme-malinio.page-blog .blog-magazine-card:nth-child(4n + 2) > a {
    background: var(--mx-acid);
}

.theme-malinio.page-blog .blog-magazine-card:nth-child(4n + 3) > a {
    background: var(--mx-white);
}

.theme-malinio.page-blog .blog-magazine-card:nth-child(4n + 4) > a {
    background: var(--mx-black-soft);
    color: var(--mx-white);
}

.theme-malinio.page-blog .blog-magazine-card:nth-child(4n + 5) > a {
    background: #efe9ff;
}

.theme-malinio.page-blog .blog-magazine-card__top,
.theme-malinio.page-blog .blog-magazine-card__body,
.theme-malinio.page-blog .blog-magazine-card__link {
    position: relative;
    z-index: 1;
}

.theme-malinio.page-blog .blog-magazine-card__top {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 62px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.theme-malinio.page-blog .blog-magazine-card__top > span {
    width: 40px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 999px;
    color: var(--mx-pink);
}

.theme-malinio.page-blog .blog-magazine-card--lead .blog-magazine-card__top > span,
.theme-malinio.page-blog .blog-magazine-card:nth-child(4n + 4) .blog-magazine-card__top > span {
    color: var(--mx-acid);
}

.theme-malinio.page-blog .blog-magazine-card__top time {
    color: currentColor;
    opacity: .48;
}

.theme-malinio.page-blog .blog-magazine-card__body {
    max-width: 900px;
}

.theme-malinio.page-blog .blog-magazine-card__body h2 {
    margin: 0 0 24px;
    color: inherit;
    font-size: clamp(2.35rem, 4.1vw, 4.9rem);
    font-weight: 800;
    letter-spacing: -.035em;
    line-height: calc(.98em + 4px);
    hyphens: none;
    overflow-wrap: normal;
    text-align: left;
    text-wrap: balance;
    word-break: normal;
}

.theme-malinio.page-blog .blog-magazine-card:not(.blog-magazine-card--lead) .blog-magazine-card__body h2 {
    font-size: clamp(2rem, 3.2vw, 3.55rem);
}

.theme-malinio.page-blog .blog-magazine-card__body p {
    max-width: 67ch;
    margin: 0;
    color: currentColor;
    font-size: .98rem;
    line-height: 1.68;
    opacity: .67;
}

.theme-malinio.page-blog .blog-magazine-card__link {
    width: fit-content;
    min-height: 48px;
    display: inline-flex;
    gap: 18px;
    align-items: center;
    margin-top: auto;
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 0 17px;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.theme-malinio.page-blog .blog-magazine-card__link b {
    font-size: 1rem;
}

.theme-malinio.page-blog .blog-magazine-cta {
    padding: 0;
    background: var(--mx-black);
    color: var(--mx-white);
}

.theme-malinio.page-blog .blog-magazine-cta__inner {
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: clamp(90px, 11vw, 150px) 36px;
    text-align: center;
}

.theme-malinio.page-blog .blog-magazine-cta__inner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(80vw, 1050px);
    aspect-ratio: 1;
    border: clamp(50px, 8vw, 110px) solid var(--mx-pink);
    border-radius: 50%;
    opacity: .18;
    transform: translate(-50%, -50%);
}

.theme-malinio.page-blog .blog-magazine-cta__inner > * {
    position: relative;
    z-index: 1;
}

.theme-malinio.page-blog .blog-magazine-cta .eyebrow {
    color: var(--mx-acid);
}

.theme-malinio.page-blog .blog-magazine-cta h2 {
    max-width: 12ch;
    margin: 0 0 28px;
    color: var(--mx-white);
    font-size: clamp(3.8rem, 7.6vw, 8.4rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: calc(.92em + 6px);
}

.theme-malinio.page-blog .blog-magazine-cta p:not(.eyebrow) {
    max-width: 52ch;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .64);
    line-height: 1.7;
}

.theme-malinio.page-blog .blog-magazine-cta .button {
    border-color: var(--mx-acid);
    background: var(--mx-acid);
    color: var(--mx-black);
}

/* Blog article */
.theme-malinio.page-blog-post .blog-post-hero {
    position: relative;
    min-height: 760px;
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(118px, 8vw, 145px) 0 clamp(74px, 6vw, 95px);
    background:
        radial-gradient(circle at 13% 82%, rgba(227, 11, 93, .26), transparent 30rem),
        radial-gradient(circle at 83% 18%, rgba(118, 85, 255, .24), transparent 29rem),
        var(--mx-black);
    color: var(--mx-white);
}

.theme-malinio.page-blog-post .blog-post-hero::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 72px 100%;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.theme-malinio.page-blog-post .blog-post-hero__orb {
    position: absolute;
    z-index: -1;
    top: -24%;
    right: -10%;
    width: min(52vw, 760px);
    aspect-ratio: 1;
    border: clamp(48px, 7vw, 100px) solid var(--mx-pink);
    border-radius: 50%;
    opacity: .62;
}

.theme-malinio.page-blog-post .blog-post-hero__inner {
    position: relative;
    z-index: 1;
}

.theme-malinio.page-blog-post .blog-post-back {
    width: fit-content;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-bottom: clamp(46px, 6vw, 78px);
    color: rgba(255, 255, 255, .58);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.theme-malinio.page-blog-post .blog-post-back:hover {
    color: var(--mx-acid);
}

.theme-malinio.page-blog-post .blog-post-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.theme-malinio.page-blog-post .blog-post-hero__meta > * {
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    padding: 0 11px;
    color: rgba(255, 255, 255, .58);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .62rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.theme-malinio.page-blog-post .blog-post-hero__meta > :first-child {
    border-color: var(--mx-acid);
    color: var(--mx-acid);
}

.theme-malinio.page-blog-post .blog-post-hero h1 {
    max-width: 14ch;
    margin: 0 0 36px;
    color: var(--mx-white);
    font-size: clamp(3.3rem, 6.2vw, 7rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: calc(1em + 4px);
    text-wrap: balance;
}

.theme-malinio.page-blog-post .blog-post-hero__inner > p {
    max-width: 62ch;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.75;
}

.theme-malinio.page-blog-post .blog-story {
    padding: clamp(90px, 11vw, 160px) 0;
    background: var(--mx-cream);
    color: var(--mx-ink);
}

.theme-malinio.page-blog-post .blog-story__layout {
    display: grid;
    grid-template-columns: minmax(210px, .34fr) minmax(0, 1fr);
    gap: clamp(50px, 9vw, 140px);
    align-items: start;
}

.theme-malinio.page-blog-post .blog-story__rail {
    position: sticky;
    top: 130px;
    display: grid;
    gap: 42px;
}

.theme-malinio.page-blog-post .blog-story__rail-number {
    width: fit-content;
    border: 1px solid rgba(8, 8, 10, .22);
    border-radius: 999px;
    padding: 9px 12px;
    color: var(--mx-pink);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.theme-malinio.page-blog-post .blog-story__rail strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.theme-malinio.page-blog-post .blog-story__rail p {
    max-width: 23ch;
    margin: 0;
    color: var(--page-muted);
    font-size: .9rem;
    line-height: 1.65;
}

.theme-malinio.page-blog-post .blog-story__rail > a {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    color: var(--mx-ink);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1.4;
    text-decoration: none;
    text-transform: uppercase;
}

.theme-malinio.page-blog-post .blog-story__rail > a:hover {
    color: var(--mx-pink);
}

.theme-malinio.page-blog-post .blog-story__main {
    width: 100%;
    max-width: 940px;
    overflow: hidden;
    border: 1px solid rgba(8, 8, 10, .12);
    border-radius: 34px;
    background: var(--mx-white);
    box-shadow: 0 30px 80px rgba(33, 25, 43, .08);
}

.theme-malinio.page-blog-post .blog-story__main .blog-article-content {
    margin: 0;
    padding: clamp(42px, 7vw, 94px);
    color: #36333a;
    font-size: clamp(1.04rem, 1.35vw, 1.17rem);
    line-height: 1.85;
}

.theme-malinio.page-blog-post .blog-story__main .blog-article-content p {
    max-width: 68ch;
    margin: 0 0 1.5em;
}

.theme-malinio.page-blog-post .blog-story__main .blog-article-content > p:first-child {
    color: var(--mx-ink);
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    font-weight: 700;
    line-height: 1.68;
}

.theme-malinio.page-blog-post .blog-story__main .blog-subheading {
    margin: 2.3em 0 .85em;
    padding: 0;
    color: var(--mx-ink);
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: calc(1em + 8px);
    word-spacing: .12em;
}

.theme-malinio.page-blog-post .blog-story__footer {
    display: grid;
    gap: 30px;
    padding: clamp(38px, 6vw, 70px);
    background:
        radial-gradient(circle at 88% 25%, rgba(118, 85, 255, .35), transparent 18rem),
        var(--mx-black);
    color: var(--mx-white);
}

.theme-malinio.page-blog-post .blog-story__footer > p {
    max-width: 14ch;
    margin: 0;
    color: var(--mx-white);
    font-size: clamp(2.2rem, 4.5vw, 4.7rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: calc(.98em + 4px);
}

.theme-malinio.page-blog-post .blog-story__footer > div {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.theme-malinio.page-blog-post .blog-story__footer .button {
    border-color: var(--mx-acid);
    background: var(--mx-acid);
    color: var(--mx-black);
}

.theme-malinio.page-blog-post .blog-post-back-link {
    color: rgba(255, 255, 255, .68);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-underline-offset: 5px;
    text-transform: uppercase;
}

/* Legal pages */
.theme-malinio.page-legal .shop-page > .section {
    padding-top: clamp(70px, 9vw, 120px);
}

.theme-malinio:not(.page-home) .legal-document {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(8, 8, 10, .16);
    border-radius: 34px;
    padding: clamp(32px, 7vw, 90px);
    background: var(--mx-white);
    box-shadow: 24px 24px 0 var(--mx-acid);
}

.theme-malinio:not(.page-home) .legal-document h1 {
    margin: 10px 0 42px;
    font-size: clamp(2.8rem, 6vw, 6rem);
    font-weight: 800;
    letter-spacing: -.07em;
}

.theme-malinio:not(.page-home) .legal-document__content {
    color: #413e45;
    line-height: 1.8;
    white-space: normal;
}

.theme-malinio:not(.page-home) .legal-links {
    max-width: 1000px;
    margin: 60px auto 0;
}

/* Footer and floating controls */
.theme-malinio:not(.page-home) .site-footer {
    border: 0;
    padding: 0;
    background: var(--mx-black);
    color: rgba(255, 255, 255, .58);
}

.theme-malinio:not(.page-home) .site-footer .container {
    min-height: 190px;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.theme-malinio:not(.page-home) .site-footer strong {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -.05em;
}

.theme-malinio:not(.page-home) .floating-action {
    z-index: 350;
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: var(--mx-black);
    color: var(--mx-acid);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .3);
}

.theme-malinio:not(.page-home) .floating-action .fa-whatsapp {
    width: 1.35em;
    height: 1.35em;
    display: block;
    flex: 0 0 auto;
    background: currentColor;
    font-size: 1rem;
    -webkit-mask: url("/assets/icons/whatsapp.svg") center / contain no-repeat;
    mask: url("/assets/icons/whatsapp.svg") center / contain no-repeat;
}

.theme-malinio:not(.page-home) .floating-action .fa-whatsapp::before {
    content: none;
}

.theme-malinio:not(.page-home) .floating-action:hover {
    background: var(--mx-pink);
    color: #fff;
}

.theme-malinio:not(.page-home) .service-popup,
.theme-malinio:not(.page-home) .cookie-banner {
    border-color: rgba(255, 255, 255, .15);
    border-radius: 28px;
    background: rgba(17, 17, 22, .96);
    color: #fff;
}

/* Typography collision guard: every display line gets at least 4 px real leading. */
.theme-malinio:not(.page-home) :is(
    .cms-hero h1,
    .shop-hero h1,
    .section > .container > h2,
    .feature-panel__copy h2,
    .split-block h2,
    .image-text-panel__copy h2,
    .cta-band h2,
    .contact-grid h2,
    .page-row h2,
    .empty-state h2,
    .text-block > h1,
    .legal-document h1,
    .service-popup h2
) {
    line-height: calc(1em + 4px) !important;
    text-wrap: balance;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}

.theme-malinio:not(.page-home) :is(
    .feature-card h3,
    .feature-panel-card h3,
    .price-card h3,
    .price-card > strong,
    .portfolio-card h3,
    .faq-link h3,
    .faq-list summary,
    .blog-subheading
) {
    line-height: calc(1em + 3px) !important;
    text-wrap: balance;
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;
}

@media (max-width: 1100px) {
    .theme-malinio:not(.page-home) .site-nav a { padding-inline: 8px; font-size: .6rem; }
    .theme-malinio:not(.page-home) .feature-card,
    .theme-malinio:not(.page-home) .feature-card:nth-child(n) { grid-column: span 6; }
    .theme-malinio:not(.page-home) .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
    .theme-malinio.cms-page:not(.page-home) .container {
        width: calc(100% - 36px) !important;
        max-width: 760px !important;
    }
    .theme-malinio:not(.page-home) .site-header { padding: 10px 0; }
    .theme-malinio:not(.page-home) .site-header__inner {
        position: relative;
        min-height: 66px;
        grid-template-columns: auto minmax(0, 1fr) auto;
        justify-content: space-between;
        border-radius: 28px;
        padding: 7px;
    }
    .theme-malinio:not(.page-home) .site-logo { width: 148px; height: 50px; }
    .theme-malinio:not(.page-home) .site-menu-toggle {
        width: 50px;
        height: 50px;
        display: grid;
        place-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        background: transparent;
        color: #fff;
    }
    .theme-malinio:not(.page-home) .site-menu-toggle span {
        width: 19px;
        height: 2px;
        display: block;
        background: #fff;
        transition: transform .25s ease, opacity .25s ease;
    }
    .theme-malinio:not(.page-home) .site-menu-toggle strong { display: none; }
    .theme-malinio:not(.page-home) .site-menu-toggle {
        grid-column: 3;
        grid-row: 1;
    }
    .theme-malinio:not(.page-home) .site-header.is-menu-open .site-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .theme-malinio:not(.page-home) .site-header.is-menu-open .site-menu-toggle span:nth-child(2) { opacity: 0; }
    .theme-malinio:not(.page-home) .site-header.is-menu-open .site-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .theme-malinio:not(.page-home) .site-nav {
        position: static;
        grid-column: 1 / -1;
        grid-row: 2;
        display: none;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        align-items: stretch;
        margin: 0;
        border: 0;
        border-top: 1px solid rgba(255, 255, 255, .12);
        border-radius: 0;
        padding: 13px 2px 4px;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }
    .theme-malinio:not(.page-home) .site-header.is-menu-open .site-nav { display: grid; }
    .theme-malinio:not(.page-home) .site-header.is-menu-open .site-header__inner {
        background: rgba(17, 17, 22, .98);
    }
    .theme-malinio.cms-page:not(.page-home) .site-header.is-menu-open .site-menu-toggle {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
        border-color: rgba(255, 255, 255, .2);
        border-radius: 50%;
        background: rgba(255, 255, 255, .06);
        color: #fff;
        box-shadow: none;
    }
    .theme-malinio.cms-page:not(.page-home) .site-header.is-menu-open .site-menu-toggle span {
        background: #fff;
    }
    .theme-malinio:not(.page-home) .site-nav a {
        min-height: 44px;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, .1);
        background: rgba(255, 255, 255, .04);
        color: rgba(255, 255, 255, .78);
        font-size: .7rem;
    }
    .theme-malinio:not(.page-home) .site-phone { display: none; }
    .theme-malinio:not(.page-home) .cms-hero,
    .theme-malinio:not(.page-home) .shop-hero { min-height: 650px; }
    .theme-malinio:not(.page-home) .cms-hero::before,
    .theme-malinio:not(.page-home) .shop-hero::before { right: -28vw; opacity: .6; }
    .theme-malinio:not(.page-home) .feature-panel,
    .theme-malinio:not(.page-home) .split-block,
    .theme-malinio:not(.page-home) .image-text-panel,
    .theme-malinio:not(.page-home) .contact-grid { grid-template-columns: 1fr; }
    .theme-malinio:not(.page-home) .feature-panel-section--reverse .feature-panel__copy,
    .theme-malinio:not(.page-home) .split-block--reverse > div,
    .theme-malinio:not(.page-home) .image-text-panel--reverse .image-text-panel__copy { order: initial; }
    .theme-malinio:not(.page-home) .feature-panel-section--reverse .feature-panel__grid,
    .theme-malinio:not(.page-home) .split-block--reverse > img,
    .theme-malinio:not(.page-home) .image-text-panel--reverse .image-text-panel__media { order: initial; }
    .theme-malinio:not(.page-home) .split-showcase-grid { min-height: 0; }
    .theme-malinio:not(.page-home) .split-block--reverse > .split-block__copy,
    .theme-malinio:not(.page-home) .split-block--reverse > .split-showcase-grid { order: initial; }
    .theme-malinio:not(.page-home) .portfolio-card,
    .theme-malinio:not(.page-home) .portfolio-card:nth-child(n) { grid-column: span 12; }
    .theme-malinio:not(.page-home) .price-card:nth-child(2) { transform: none; }
    .theme-malinio.page-blog .blog-magazine-hero__copy,
    .theme-malinio.page-blog .blog-magazine-list__head {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .theme-malinio.page-blog .blog-magazine-hero__copy > div > p { max-width: 48ch; }
    .theme-malinio.page-blog .blog-magazine-hero__orbit {
        right: -24vw;
        width: min(72vw, 570px);
        opacity: .55;
    }
    .theme-malinio.page-blog .blog-magazine-card,
    .theme-malinio.page-blog .blog-magazine-card--lead {
        grid-column: 1 / -1;
    }
    .theme-malinio.page-blog .blog-magazine-card--lead > a::before {
        right: -18%;
        width: min(70vw, 520px);
        height: min(70vw, 520px);
    }
    .theme-malinio.page-blog-post .blog-story__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .theme-malinio.page-blog-post .blog-story__rail {
        position: static;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 24px;
    }
    .theme-malinio.page-blog-post .blog-story__rail p { max-width: 34ch; }
}

@media (max-width: 640px) {
    .theme-malinio.cms-page:not(.page-home) .container {
        width: calc(100% - 22px) !important;
        max-width: 560px !important;
    }
    .theme-malinio.cms-page:not(.page-home) .site-menu-toggle,
    .theme-malinio.cms-page:not(.page-home) .site-header.is-menu-open .site-menu-toggle {
        width: 47px;
        height: 47px;
        min-width: 47px;
        min-height: 47px;
    }
    .theme-malinio:not(.page-home) .cms-hero,
    .theme-malinio:not(.page-home) .shop-hero {
        min-height: 590px;
        padding: 92px 0 82px;
    }
    .theme-malinio:not(.page-home) .cms-hero h1,
    .theme-malinio:not(.page-home) .shop-hero h1 {
        max-width: 100%;
        font-size: clamp(3.05rem, 15vw, 4.5rem);
        letter-spacing: -.055em;
    }
    .theme-malinio:not(.page-home) .cms-hero::after,
    .theme-malinio:not(.page-home) .shop-hero::after { display: none; }
    .theme-malinio:not(.page-home) .split-showcase-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .theme-malinio:not(.page-home) .split-showcase-card,
    .theme-malinio:not(.page-home) .split-showcase-card:nth-child(n) {
        min-height: 240px;
        aspect-ratio: auto;
        transform: none;
    }
    .theme-malinio:not(.page-home) .split-showcase-card:nth-child(n):hover {
        transform: translateY(-4px);
    }
    .theme-malinio:not(.page-home) .section { padding: 78px 0; }
    .theme-malinio:not(.page-home) .section > .container > h2 { font-size: clamp(2.7rem, 13.7vw, 4.5rem); }
    .theme-malinio:not(.page-home) .feature-grid { display: grid; grid-template-columns: 1fr; }
    .theme-malinio:not(.page-home) .feature-card,
    .theme-malinio:not(.page-home) .feature-card:nth-child(n) {
        min-height: 270px;
        grid-column: auto;
        border-radius: 25px;
    }
    .theme-malinio:not(.page-home) .feature-card h3 { font-size: clamp(1.75rem, 9vw, 2.55rem); }
    .theme-malinio:not(.page-home) .feature-panel { border-radius: 26px; padding: 28px 20px; }
    .theme-malinio:not(.page-home) .feature-panel__grid { grid-template-columns: 1fr; }
    .theme-malinio:not(.page-home) .feature-panel__copy h2,
    .theme-malinio:not(.page-home) .split-block h2,
    .theme-malinio:not(.page-home) .image-text-panel__copy h2,
    .theme-malinio:not(.page-home) .contact-grid h2 { font-size: clamp(2.7rem, 13.5vw, 4.4rem); }
    .theme-malinio:not(.page-home) .split-block--text-only h2 {
        font-size: clamp(2.55rem, 11.5vw, 3.4rem);
        letter-spacing: -.045em;
    }
    .theme-malinio:not(.page-home) .split-block img,
    .theme-malinio:not(.page-home) .image-text-panel__media img {
        box-shadow: 12px 12px 0 var(--mx-violet);
        border-radius: 25px;
    }
    .theme-malinio:not(.page-home) .price-card { min-height: 360px; border-radius: 25px; }
    .theme-malinio:not(.page-home) .faq-list--cards { grid-template-columns: 1fr; }
    .theme-malinio:not(.page-home) .faq-list details { padding-inline: 20px; }
    .theme-malinio:not(.page-home) .faq-list details[open] { transform: none; }
    .theme-malinio:not(.page-home) .cta-band { min-height: 590px; padding-inline: 18px; }
    .theme-malinio:not(.page-home) .cta-band h2 { font-size: clamp(3.35rem, 16vw, 5.2rem); }
    .theme-malinio:not(.page-home) .contact-form { border-radius: 25px; box-shadow: 12px 12px 0 var(--mx-violet); }
    .theme-malinio:not(.page-home) .contact-lines p { grid-template-columns: 86px minmax(0, 1fr); gap: 10px; }
    .theme-malinio:not(.page-home) .page-row { grid-template-columns: 1fr; gap: 24px; }
    .theme-malinio:not(.page-home) .page-row .button { width: fit-content; }
    .theme-malinio:not(.page-home) .portfolio-card__actions { display: grid; }
    .theme-malinio:not(.page-home) .portfolio-card__actions .button { width: 100%; }
    .theme-malinio:not(.page-home) .text-block { width: 100%; padding-inline: 20px; }
    .theme-malinio:not(.page-home) .legal-document { border-radius: 25px; box-shadow: 10px 10px 0 var(--mx-acid); }
    .theme-malinio:not(.page-home) .site-footer .container { min-height: 170px; display: grid; align-content: center; }
    .theme-malinio:not(.page-home) .floating-action {
        right: 11px;
        bottom: 11px;
        width: 50px;
        min-width: 50px;
        min-height: 50px;
        justify-content: center;
        padding: 0;
    }
    .theme-malinio:not(.page-home) .floating-action span { display: none; }
    .theme-malinio.page-blog .blog-magazine-hero {
        min-height: 720px;
        align-items: start;
        padding: 82px 0 104px;
    }
    .theme-malinio.page-blog .blog-magazine-hero__meta {
        display: grid;
        justify-items: start;
        margin-bottom: 58px;
    }
    .theme-malinio.page-blog .blog-magazine-hero__copy { gap: 38px; }
    .theme-malinio.page-blog .blog-magazine-hero h1 {
        max-width: 10ch;
        font-size: clamp(3.05rem, 15vw, 4.5rem);
        letter-spacing: -.055em;
    }
    .theme-malinio.page-blog .blog-magazine-hero__orbit {
        top: 69%;
        right: -46vw;
        width: 112vw;
        opacity: .34;
    }
    .theme-malinio.page-blog .blog-magazine-hero__signals {
        bottom: -8px;
        gap: 13px;
    }
    .theme-malinio.page-blog .blog-magazine-hero__signals i {
        width: 72px;
        height: 16px;
    }
    .theme-malinio.page-blog .blog-magazine-list { padding: 86px 0; }
    .theme-malinio.page-blog .blog-magazine-list__head {
        gap: 28px;
        margin-bottom: 52px;
    }
    .theme-malinio.page-blog .blog-magazine-list__head h2 {
        font-size: clamp(3.15rem, 15.5vw, 4.5rem);
    }
    .theme-malinio.page-blog .blog-magazine-card > a,
    .theme-malinio.page-blog .blog-magazine-card--lead > a {
        min-height: 480px;
        border-radius: 25px;
        padding: 25px 22px;
    }
    .theme-malinio.page-blog .blog-magazine-card--lead > a::before {
        right: -44%;
        bottom: -18%;
        width: 126vw;
        height: 126vw;
        opacity: .42;
    }
    .theme-malinio.page-blog .blog-magazine-card__top { margin-bottom: 48px; }
    .theme-malinio.page-blog .blog-magazine-card__body h2,
    .theme-malinio.page-blog .blog-magazine-card:not(.blog-magazine-card--lead) .blog-magazine-card__body h2 {
        font-size: clamp(2.15rem, 10.5vw, 3.1rem);
    }
    .theme-malinio.page-blog .blog-magazine-card__body p {
        font-size: .91rem;
        line-height: 1.62;
    }
    .theme-malinio.page-blog .blog-magazine-card__link { margin-top: 44px; }
    .theme-malinio.page-blog .blog-magazine-cta__inner {
        min-height: 660px;
        padding: 86px 18px;
    }
    .theme-malinio.page-blog .blog-magazine-cta h2 {
        font-size: clamp(3.15rem, 15.5vw, 4.7rem);
    }
    .theme-malinio.page-blog-post .blog-post-hero {
        min-height: 690px;
        align-items: start;
        padding: 82px 0 96px;
    }
    .theme-malinio.page-blog-post .blog-post-back { margin-bottom: 48px; }
    .theme-malinio.page-blog-post .blog-post-hero__orb {
        top: 4%;
        right: -56%;
        width: 120vw;
        opacity: .3;
    }
    .theme-malinio.page-blog-post .blog-post-hero h1 {
        max-width: 100%;
        font-size: clamp(3.05rem, 15vw, 4.5rem);
    }
    .theme-malinio.page-blog-post .blog-story { padding: 72px 0; }
    .theme-malinio.page-blog-post .blog-story__rail {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .theme-malinio.page-blog-post .blog-story__rail > a { width: fit-content; }
    .theme-malinio.page-blog-post .blog-story__main { border-radius: 25px; }
    .theme-malinio.page-blog-post .blog-story__main .blog-article-content {
        padding: 34px 22px 44px;
        font-size: 1rem;
    }
    .theme-malinio.page-blog-post .blog-story__main .blog-article-content > p:first-child {
        font-size: 1.16rem;
    }
    .theme-malinio.page-blog-post .blog-story__main .blog-subheading {
        font-size: clamp(1.7rem, 8.8vw, 2.35rem);
    }
    .theme-malinio.page-blog-post .blog-story__footer { padding: 38px 22px; }
    .theme-malinio.page-blog-post .blog-story__footer > p {
        font-size: clamp(2.15rem, 11vw, 3.1rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .theme-malinio:not(.page-home) *,
    .theme-malinio:not(.page-home) *::before,
    .theme-malinio:not(.page-home) *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
