/*
 * Lensora Gallery 2.0 — Shotpik-inspired product UI
 * The layout is independently implemented and uses Lensora branding.
 */

:root {
    --sp-red: #ef4b43;
    --sp-red-dark: #d93831;
    --sp-black: #111110;
    --sp-ink: #1c1b1a;
    --sp-muted: #77736f;
    --sp-soft: #f3f0ec;
    --sp-cream: #f8f5f1;
    --sp-white: #ffffff;
    --sp-line: rgba(17, 17, 16, .11);
    --sp-green: #22a06b;
    --sp-yellow: #f5c84b;
    --sp-shadow: 0 30px 80px rgba(39, 31, 25, .13);
    --sp-shadow-soft: 0 18px 55px rgba(39, 31, 25, .09);
    --sp-radius-sm: 12px;
    --sp-radius: 22px;
    --sp-radius-lg: 34px;
    --sp-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --lsg-sans: var(--sp-font);
    --lsg-serif: var(--sp-font);
    --lsg-paper: var(--sp-cream);
    --lsg-ink: var(--sp-black);
    --lsg-muted: var(--sp-muted);
    --lsg-line: var(--sp-line);
    --lsg-dark: var(--sp-black);
    --lsg-container: 1280px;
    --lsg-gutter: clamp(18px, 4vw, 54px);
    --lsg-radius: 16px;
    --lsg-shadow: var(--sp-shadow-soft);
}

html { scroll-padding-top: 96px; }
body {
    color: var(--sp-ink);
    background: var(--sp-cream);
    font-family: var(--sp-font);
    font-size: 15px;
    line-height: 1.7;
}
body,
button,
input,
textarea,
select { font-family: var(--sp-font); }
::selection { color: #fff; background: var(--sp-red); }

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .72s ease, transform .72s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

.lsg-container { width: min(100% - (var(--lsg-gutter) * 2), var(--lsg-container)); }

/* Header */
.lsg-site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    padding: 13px 0;
    color: var(--sp-black);
    background: transparent;
    transform: none !important;
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
body.admin-bar .lsg-site-header { top: 32px; }
.lsg-site-header.is-scrolled {
    padding: 9px 0;
    background: rgba(248, 245, 241, .86);
    box-shadow: 0 1px 0 var(--sp-line);
    backdrop-filter: blur(18px);
}
.lsg-header-inner {
    min-height: 64px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 9px 12px 9px 18px;
    background: rgba(255, 255, 255, .93);
    border: 1px solid rgba(17, 17, 16, .08);
    border-radius: 18px;
    box-shadow: 0 12px 42px rgba(35, 28, 24, .06);
}
.lsg-site-header.is-scrolled .lsg-header-inner { box-shadow: none; }
.lsg-branding { min-width: 168px; }
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo { max-width: 175px; max-height: 42px; width: auto; }
.lsg-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.lsg-wordmark-mark {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: var(--sp-black);
    border-radius: 10px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.06em;
}
.lsg-wordmark-text {
    max-width: 170px;
    overflow: hidden;
    font-size: 22px !important;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.045em !important;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lsg-wordmark small { display: none; }
.lsg-navigation { justify-self: center; }
.lsg-menu {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 28px);
    list-style: none;
    margin: 0;
    padding: 0;
}
.lsg-menu > li { position: relative; }
.lsg-menu > li > a {
    display: block;
    padding: 11px 0;
    color: #4c4946;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -.01em;
    text-transform: none;
    transition: color .2s ease;
}
.lsg-menu > li > a:hover,
.lsg-menu > li.current-menu-item > a { color: var(--sp-red); }
.lsg-menu .sub-menu {
    top: calc(100% + 12px);
    min-width: 190px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--sp-line);
    border-radius: 14px;
    box-shadow: var(--sp-shadow-soft);
}
.lsg-menu .sub-menu a {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}
.lsg-menu .sub-menu a:hover { background: var(--sp-soft); }
.lsg-header-actions { display: flex; align-items: center; gap: 8px; }
.lsg-header-login,
.lsg-header-cta {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}
.lsg-header-login { padding: 0 14px; color: #4f4b48; }
.lsg-header-login:hover { color: var(--sp-red); }
.lsg-header-cta {
    gap: 8px;
    padding: 0 16px;
    color: #fff;
    background: var(--sp-red);
    box-shadow: 0 10px 24px rgba(239, 75, 67, .22);
    transition: background .2s ease, transform .2s ease;
}
.lsg-header-cta:hover { color: #fff; background: var(--sp-red-dark); transform: translateY(-1px); }
.lsg-menu-toggle { color: var(--sp-black); }

/* Buttons */
.sp-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.sp-button:hover { transform: translateY(-2px); }
.sp-button--primary { color: #fff; background: var(--sp-red); box-shadow: 0 14px 30px rgba(239, 75, 67, .23); }
.sp-button--primary:hover { color: #fff; background: var(--sp-red-dark); }
.sp-button--ghost { color: var(--sp-black); background: #fff; border-color: var(--sp-line); box-shadow: 0 10px 30px rgba(45, 37, 31, .05); }
.sp-button--ghost:hover { border-color: rgba(17,17,16,.24); }
.sp-button--light { color: var(--sp-black); background: #fff; }
.sp-play { display: grid; width: 26px; height: 26px; place-items: center; color: #fff; background: var(--sp-black); border-radius: 50%; font-size: 8px; padding-left: 1px; }

/* Homepage hero */
.sp-home { overflow: hidden; }
.sp-hero {
    position: relative;
    min-height: 860px;
    padding: 155px 0 42px;
    background:
        radial-gradient(circle at 78% 17%, rgba(239, 75, 67, .11), transparent 26%),
        radial-gradient(circle at 18% 65%, rgba(244, 201, 75, .11), transparent 24%),
        var(--sp-cream);
}
.sp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .27;
    pointer-events: none;
    background-image: radial-gradient(rgba(17,17,16,.18) .65px, transparent .65px);
    background-size: 18px 18px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 78%);
}
.sp-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
    align-items: center;
    gap: clamp(55px, 6vw, 90px);
}
.sp-hero__content { padding: 48px 0 64px; }
.sp-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0 13px;
    color: #5c5753;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(17,17,16,.08);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(30,25,22,.04);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .01em;
}
.sp-pill__dot { width: 7px; height: 7px; background: var(--sp-red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(239,75,67,.12); }
.sp-hero h1 {
    max-width: 690px;
    margin: 24px 0 24px;
    color: var(--sp-black);
    font-size: clamp(54px, 5.2vw, 82px);
    font-weight: 750;
    line-height: 1.03;
    letter-spacing: -.065em;
}
.sp-hero h1 span { display: block; color: var(--sp-red); }
.sp-hero__lead {
    max-width: 590px;
    margin: 0;
    color: #69645f;
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.65;
    letter-spacing: -.02em;
}
.sp-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.sp-hero__trust { display: flex; align-items: center; gap: 15px; margin-top: 34px; }
.sp-avatar-stack { display: flex; padding-left: 8px; }
.sp-avatar-stack span {
    display: grid;
    width: 34px;
    height: 34px;
    margin-left: -8px;
    place-items: center;
    color: #fff;
    background: #252321;
    border: 3px solid var(--sp-cream);
    border-radius: 50%;
    font-size: 7px;
    font-weight: 700;
}
.sp-avatar-stack span:nth-child(2) { background: var(--sp-red); }
.sp-avatar-stack span:nth-child(3) { color: var(--sp-black); background: var(--sp-yellow); }
.sp-hero__trust p { margin: 0; color: #8a8580; font-size: 10px; line-height: 1.45; }
.sp-hero__trust strong { color: #3f3b38; font-size: 11px; }

/* Device scene */
.sp-hero__visual { position: relative; min-height: 610px; }
.sp-orbit { position: absolute; border: 1px solid rgba(239,75,67,.22); border-radius: 50%; }
.sp-orbit--one { width: 520px; height: 520px; right: -40px; top: 35px; }
.sp-orbit--two { width: 360px; height: 360px; right: 95px; top: 115px; border-style: dashed; }
.sp-spark { position: absolute; z-index: 7; color: var(--sp-red); font-size: 25px; }
.sp-spark--one { right: 10px; top: 40px; }
.sp-spark--two { left: 5px; bottom: 105px; color: var(--sp-yellow); }
.sp-browser-mockup {
    position: absolute;
    z-index: 3;
    top: 80px;
    right: 0;
    width: min(620px, 92%);
    padding: 8px;
    background: #1c1b1a;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 20px;
    box-shadow: 0 45px 100px rgba(35,29,25,.24);
    transform: rotate(1.2deg);
}
.sp-browser-mockup__bar {
    height: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 9px;
    color: #9d9996;
    background: #f5f3f1;
    border-radius: 13px 13px 5px 5px;
}
.sp-browser-mockup__bar > span { width: 7px; height: 7px; background: #d8d4d0; border-radius: 50%; }
.sp-browser-mockup__bar > span:first-child { background: #ef6a61; }
.sp-browser-mockup__bar > span:nth-child(2) { background: #f2c85b; }
.sp-browser-mockup__bar > span:nth-child(3) { background: #63be7b; }
.sp-browser-mockup__bar div {
    width: 55%;
    height: 17px;
    margin: 0 auto;
    padding: 2px 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e4e0;
    border-radius: 6px;
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sp-browser-mockup__page { min-height: 440px; padding: 14px; background: #fff; border-radius: 5px 5px 13px 13px; }
.sp-mock-header { height: 28px; display: flex; align-items: center; justify-content: space-between; }
.sp-mock-logo { display: grid; width: 25px; height: 25px; place-items: center; color: #fff; background: #111; border-radius: 7px; font-size: 9px; font-weight: 700; }
.sp-mock-nav { display: flex; gap: 9px; }
.sp-mock-nav i { display: block; width: 24px; height: 4px; background: #dedbd7; border-radius: 5px; }
.sp-mock-cover { position: relative; height: 132px; margin-top: 10px; overflow: hidden; background: linear-gradient(135deg, #ae8b76, #dfc5b6 47%, #8aa3a0); border-radius: 5px; background-size: cover; background-position: center; }
.sp-mock-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.36), transparent 62%); }
.sp-mock-cover > div { position: absolute; z-index: 2; left: 14px; bottom: 13px; color: #fff; }
.sp-mock-cover strong { display: block; font-size: 12px; }
.sp-mock-cover small { display: block; margin-top: 2px; font-size: 6px; opacity: .85; }
.sp-mock-stats { height: 33px; display: flex; align-items: center; gap: 16px; color: #777; font-size: 6px; }
.sp-mock-stats span:last-child { margin-left: auto; }
.sp-mock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.sp-mock-grid > span,
.sp-phone-grid > span {
    position: relative;
    min-height: 108px;
    background: linear-gradient(135deg, #e9d6c5, #b2c2bd 48%, #8f766d);
    background-size: cover;
    background-position: center;
}
.sp-mock-grid > span:nth-child(2n) { background: linear-gradient(145deg, #b8a399, #ece2db 52%, #a3b7b2); }
.sp-mock-grid i,
.sp-phone-grid i { position: absolute; right: 7px; top: 5px; color: #fff; font-size: 9px; font-style: normal; text-shadow: 0 1px 5px rgba(0,0,0,.25); }
.sp-phone-mockup {
    position: absolute;
    z-index: 6;
    right: -24px;
    bottom: 5px;
    width: 168px;
    padding: 7px;
    background: #171615;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 28px;
    box-shadow: 0 30px 65px rgba(31,26,22,.27);
    transform: rotate(3deg);
}
.sp-phone-mockup__notch { position: absolute; z-index: 2; left: 50%; top: 7px; width: 60px; height: 14px; background: #171615; border-radius: 0 0 10px 10px; transform: translateX(-50%); }
.sp-phone-mockup__screen { min-height: 330px; padding: 19px 7px 7px; background: #fff; border-radius: 21px; overflow: hidden; }
.sp-phone-top { height: 25px; display: flex; align-items: center; justify-content: space-between; font-size: 7px; }
.sp-phone-top b { display: grid; width: 22px; height: 22px; place-items: center; color: #fff; background: #111; border-radius: 6px; font-size: 8px; }
.sp-phone-cover { height: 73px; margin: 5px 0 6px; background: linear-gradient(135deg, #927467, #e4c7b9, #78958f); border-radius: 4px; background-size: cover; background-position: center; }
.sp-phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.sp-phone-grid > span { min-height: 85px; }
.sp-floating-note {
    position: absolute;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(17,17,16,.08);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(31,26,22,.12);
    backdrop-filter: blur(12px);
}
.sp-floating-note--top { left: 12px; top: 30px; }
.sp-floating-note--bottom { left: 25px; bottom: 18px; }
.sp-floating-note strong,
.sp-floating-note small { display: block; }
.sp-floating-note strong { color: #25211e; font-size: 9px; line-height: 1.35; }
.sp-floating-note small { margin-top: 2px; color: #89837e; font-size: 7px; }
.sp-note-icon { display: grid; width: 31px; height: 31px; place-items: center; color: #fff; background: var(--sp-green); border-radius: 9px; font-size: 12px; }
.sp-mini-chart { height: 31px; display: flex; align-items: end; gap: 3px; }
.sp-mini-chart i { display: block; width: 5px; background: var(--sp-red); border-radius: 4px 4px 1px 1px; }
.sp-mini-chart i:nth-child(1) { height: 12px; opacity: .45; }
.sp-mini-chart i:nth-child(2) { height: 20px; opacity: .65; }
.sp-mini-chart i:nth-child(3) { height: 15px; opacity: .8; }
.sp-mini-chart i:nth-child(4) { height: 27px; }
.sp-logo-strip {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--sp-line);
    text-align: center;
}
.sp-logo-strip p { margin: 0 0 18px; color: #9b9690; font-size: 9px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.sp-logo-strip div { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(24px, 5vw, 70px); }
.sp-logo-strip span { color: #a9a49f; font-size: 12px; font-weight: 700; letter-spacing: .12em; }

/* Common sections */
.sp-section { padding: clamp(90px, 10vw, 145px) 0; }
.sp-kicker { display: inline-block; margin-bottom: 18px; color: var(--sp-red); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.sp-section-heading { max-width: 850px; margin: 0 auto 58px; text-align: center; }
.sp-section-heading h2,
.sp-workflow__content h2 {
    margin: 0;
    color: var(--sp-black);
    font-size: clamp(40px, 4.2vw, 62px);
    font-weight: 720;
    line-height: 1.1;
    letter-spacing: -.055em;
}
.sp-section-heading h2 span { color: var(--sp-red); }
.sp-section-heading > p { max-width: 650px; margin: 21px auto 0; color: var(--sp-muted); font-size: 16px; }
.sp-section-heading--row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 35px; text-align: left; }
.sp-section-heading--row .sp-kicker { margin-bottom: 12px; }
.sp-section-heading--row h2 { font-size: clamp(40px, 4vw, 58px); }
.sp-inline-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 5px; border-bottom: 1px solid var(--sp-black); font-size: 12px; font-weight: 600; }
.sp-inline-link span { color: var(--sp-red); }

/* Feature grid */
.sp-features { background: #fff; }
.sp-feature-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.sp-feature-card {
    position: relative;
    grid-column: span 4;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    overflow: hidden;
    background: var(--sp-soft);
    border: 1px solid rgba(17,17,16,.05);
    border-radius: var(--sp-radius);
}
.sp-feature-card--large { grid-column: span 8; min-height: 330px; justify-content: space-between; background: #f7f4f0; }
.sp-feature-card--wide { grid-column: span 8; min-height: 310px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 25px; }
.sp-feature-card--red { color: #fff; background: var(--sp-red); }
.sp-card-number { position: absolute; left: 26px; top: 23px; color: #aba59f; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.sp-feature-card--red .sp-card-number { color: rgba(255,255,255,.62); }
.sp-feature-card h3 { max-width: 500px; margin: 0; font-size: clamp(24px, 2.2vw, 35px); font-weight: 680; line-height: 1.18; letter-spacing: -.045em; }
.sp-feature-card p { max-width: 560px; margin: 13px 0 0; color: var(--sp-muted); font-size: 13px; }
.sp-feature-card--red h3 { color: #fff; }
.sp-link-demo { display: flex; align-items: center; gap: 10px; width: min(100%, 610px); padding: 12px; background: #fff; border: 1px solid var(--sp-line); border-radius: 14px; box-shadow: var(--sp-shadow-soft); }
.sp-link-demo > div { min-width: 0; flex: 1; display: flex; align-items: center; gap: 10px; }
.sp-link-demo > div span { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; background: #f6f2ee; border-radius: 9px; font-size: 13px; }
.sp-link-demo strong { overflow: hidden; color: #77716c; font-size: 10px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.sp-link-demo button { min-height: 36px; padding: 0 14px; color: #fff; background: var(--sp-red); border: 0; border-radius: 9px; font-size: 9px; font-weight: 600; }
.sp-heart-demo { display: flex; justify-content: center; gap: 17px; margin: auto 0 50px; }
.sp-heart-demo span { display: grid; width: 62px; height: 62px; place-items: center; color: var(--sp-red); background: #fff; border-radius: 18px; box-shadow: 0 15px 35px rgba(111,30,26,.16); font-size: 28px; transform: rotate(-8deg); }
.sp-heart-demo span:nth-child(2) { color: #fff; background: var(--sp-black); transform: translateY(-15px) rotate(7deg); }
.sp-heart-demo span:nth-child(3) { transform: rotate(11deg); }
.sp-lock-demo { display: flex; align-items: center; gap: 8px; margin: auto auto 50px; padding: 12px; background: #fff; border: 1px solid var(--sp-line); border-radius: 14px; box-shadow: var(--sp-shadow-soft); }
.sp-lock-demo span { min-width: 135px; padding: 0 12px; color: #666; letter-spacing: .3em; }
.sp-lock-demo i { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--sp-green); border-radius: 9px; font-style: normal; }
.sp-responsive-demo { position: relative; min-height: 215px; }
.sp-responsive-demo span { position: absolute; display: block; background: #fff; border: 5px solid #222; box-shadow: 0 20px 45px rgba(30,25,22,.13); }
.sp-responsive-demo .desktop { right: 10px; top: 10px; width: 310px; height: 182px; border-radius: 14px; }
.sp-responsive-demo .desktop::before,
.sp-responsive-demo .tablet::before,
.sp-responsive-demo .mobile::before { content: ""; position: absolute; inset: 10px; background: repeating-linear-gradient(90deg, #d9c8bc 0 28%, #f0e7e0 28% 31%, #a8bbb5 31% 62%, #f0e7e0 62% 65%, #bd9a8a 65% 100%); }
.sp-responsive-demo .tablet { left: 16px; bottom: 7px; width: 120px; height: 170px; border-radius: 13px; }
.sp-responsive-demo .mobile { left: 112px; bottom: -2px; width: 72px; height: 137px; border-radius: 15px; }

/* Workflow */
.sp-workflow { background: var(--sp-cream); }
.sp-workflow__grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(65px, 8vw, 120px); }
.sp-workflow__visual { position: relative; min-height: 570px; }
.sp-dashboard-card {
    position: absolute;
    left: 0;
    top: 20px;
    width: min(590px, 96%);
    padding: 22px;
    background: #fff;
    border: 1px solid var(--sp-line);
    border-radius: 22px;
    box-shadow: var(--sp-shadow);
    transform: rotate(-2deg);
}
.sp-dashboard-card__top { display: flex; align-items: center; justify-content: space-between; padding: 4px 2px 18px; }
.sp-dashboard-card__top strong { font-size: 15px; }
.sp-dashboard-card__top button { min-height: 35px; padding: 0 12px; color: #fff; background: var(--sp-red); border: 0; border-radius: 9px; font-size: 8px; font-weight: 600; }
.sp-dashboard-row { display: grid; grid-template-columns: 62px minmax(0, 1fr) auto 22px; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--sp-line); }
.sp-dashboard-thumb { width: 62px; height: 50px; background: linear-gradient(135deg, #d3b8a6, #8fa9a2); border-radius: 8px; background-size: cover; background-position: center; }
.sp-dashboard-row strong,
.sp-dashboard-row small { display: block; }
.sp-dashboard-row strong { overflow: hidden; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.sp-dashboard-row small { margin-top: 3px; color: #96908a; font-size: 7px; }
.sp-dashboard-row > b { color: #aaa49e; font-size: 7px; letter-spacing: .08em; }
.sp-status { padding: 6px 9px; color: var(--sp-green); background: rgba(34,160,107,.1); border-radius: 100px; font-size: 7px; font-weight: 600; }
.sp-selection-card {
    position: absolute;
    z-index: 3;
    right: -2px;
    bottom: 35px;
    width: 230px;
    padding: 18px;
    background: var(--sp-black);
    border-radius: 18px;
    box-shadow: 0 26px 60px rgba(24,20,18,.25);
    transform: rotate(3deg);
}
.sp-selection-card > span { display: grid; width: 39px; height: 39px; margin-bottom: 15px; place-items: center; color: #fff; background: var(--sp-red); border-radius: 11px; font-size: 17px; }
.sp-selection-card strong,
.sp-selection-card small { display: block; }
.sp-selection-card strong { color: #fff; font-size: 14px; }
.sp-selection-card small { margin-top: 4px; color: rgba(255,255,255,.48); font-size: 8px; }
.sp-workflow__content h2 { margin-bottom: 22px; }
.sp-workflow__lead { max-width: 560px; color: var(--sp-muted); font-size: 16px; }
.sp-steps { list-style: none; margin: 35px 0 0; padding: 0; }
.sp-steps li { display: grid; grid-template-columns: 42px 1fr; gap: 17px; padding: 20px 0; border-top: 1px solid var(--sp-line); }
.sp-steps li > span { display: grid; width: 36px; height: 36px; place-items: center; color: var(--sp-red); background: rgba(239,75,67,.09); border-radius: 10px; font-size: 11px; font-weight: 700; }
.sp-steps h3 { margin: 0; font-size: 16px; font-weight: 650; letter-spacing: -.025em; }
.sp-steps p { margin: 5px 0 0; color: var(--sp-muted); font-size: 12px; }

/* Albums */
.sp-albums { background: #fff; }
.sp-album-grid,
.sp-demo-album-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sp-album-card__image,
.sp-demo-photo {
    position: relative;
    min-height: 440px;
    display: block;
    overflow: hidden;
    background: linear-gradient(145deg, #e9d8cc, #98aaa5 53%, #6c6f6b);
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}
.sp-album-card:nth-child(2) .sp-album-card__image,
.sp-demo-photo--two { background: linear-gradient(145deg, #bbb0a7, #eee3dc 49%, #ba827a); }
.sp-album-card:nth-child(3) .sp-album-card__image,
.sp-demo-photo--three { background: linear-gradient(145deg, #7d7068, #d7c1af 52%, #879c98); }
.sp-album-card__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,9,.38), transparent 43%); opacity: .65; transition: opacity .3s ease; }
.sp-album-card__image::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.08); opacity: 0; transition: opacity .3s ease; }
.sp-album-card__image:hover::before { opacity: 1; }
.sp-album-card__tag { position: absolute; z-index: 2; left: 15px; bottom: 15px; padding: 7px 10px; color: #fff; background: rgba(12,12,11,.4); border: 1px solid rgba(255,255,255,.28); border-radius: 100px; backdrop-filter: blur(9px); font-size: 8px; font-weight: 600; }
.sp-album-card__arrow { position: absolute; z-index: 2; right: 15px; top: 15px; display: grid; width: 41px; height: 41px; place-items: center; color: var(--sp-black); background: #fff; border-radius: 50%; font-size: 16px; transition: transform .25s ease; }
.sp-album-card__image:hover .sp-album-card__arrow { transform: rotate(45deg); }
.sp-album-card h3,
.sp-demo-album-grid h3 { margin: 16px 2px 0; font-size: 19px; font-weight: 620; letter-spacing: -.035em; }
.sp-demo-album-grid article { min-width: 0; }
.sp-demo-photo { min-height: 430px; }

/* Pricing */
.sp-pricing { background: var(--sp-soft); }
.sp-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.sp-price-card { position: relative; min-height: 410px; padding: 32px; background: #fff; border: 1px solid var(--sp-line); border-radius: 22px; }
.sp-price-card > span { color: var(--sp-red); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.sp-price-card h3 { margin: 19px 0 13px; font-size: 29px; font-weight: 680; letter-spacing: -.045em; }
.sp-price-card > p { min-height: 66px; color: var(--sp-muted); font-size: 12px; }
.sp-price-card ul { list-style: none; margin: 30px 0 0; padding: 22px 0 0; border-top: 1px solid var(--sp-line); }
.sp-price-card li { margin: 11px 0; color: #55504c; font-size: 11px; }
.sp-price-card--featured { color: #fff; background: var(--sp-black); border-color: var(--sp-black); transform: translateY(-14px); box-shadow: 0 30px 70px rgba(22,19,17,.2); }
.sp-price-card--featured h3 { color: #fff; }
.sp-price-card--featured > p,
.sp-price-card--featured li { color: rgba(255,255,255,.65); }
.sp-price-card--featured ul { border-top-color: rgba(255,255,255,.13); }
.sp-popular { position: absolute; right: 20px; top: 18px; padding: 7px 10px; color: #fff; background: var(--sp-red); border-radius: 100px; font-size: 7px; font-weight: 700; letter-spacing: .08em; }

/* Final CTA */
.sp-final-cta { padding: 110px 0; background: var(--sp-red); }
.sp-final-cta__inner { text-align: center; }
.sp-final-cta__badge { display: grid; width: 58px; height: 58px; margin: 0 auto 28px; place-items: center; color: var(--sp-black); background: #fff; border-radius: 17px; font-size: 20px; font-weight: 700; letter-spacing: -.06em; }
.sp-final-cta h2 { max-width: 900px; margin: 0 auto; color: #fff; font-size: clamp(44px, 5vw, 72px); font-weight: 730; line-height: 1.08; letter-spacing: -.06em; }
.sp-final-cta p { max-width: 650px; margin: 23px auto 30px; color: rgba(255,255,255,.76); font-size: 15px; }

/* Footer */
.lsg-site-footer { padding: 80px 0 24px; color: #fff; background: var(--sp-black); }
.lsg-footer-top { display: grid; grid-template-columns: 1.5fr .7fr .7fr .8fr; gap: clamp(35px, 6vw, 90px); padding-bottom: 62px; }
.lsg-site-footer .lsg-wordmark-mark { color: var(--sp-black); background: #fff; }
.lsg-site-footer .lsg-wordmark-text { color: #fff; }
.lsg-footer-brand p { max-width: 360px; margin: 22px 0 0; color: rgba(255,255,255,.48); font-size: 12px; }
.lsg-footer-column h2 { margin: 4px 0 20px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.lsg-footer-column > a,
.lsg-footer-links a { display: block; margin: 9px 0; color: rgba(255,255,255,.72); font-size: 11px; }
.lsg-footer-column > a:hover,
.lsg-footer-links a:hover { color: #fff; }
.lsg-footer-links { list-style: none; margin: 0; padding: 0; }
.lsg-socials { display: flex; gap: 8px; margin-top: 24px; }
.lsg-social-link { padding: 7px 10px; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border-radius: 8px; font-size: 8px; font-weight: 600; letter-spacing: .04em; text-transform: none; }
.lsg-footer-bottom { padding-top: 22px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.1); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

/* Existing theme pages re-skinned */
.lsg-page-hero,
.lsg-album-hero,
.lsg-password-screen,
.lsg-error-page { font-family: var(--sp-font); }
.lsg-page-hero h1,
.lsg-album-hero h1,
.lsg-password-card h1,
.lsg-error-page h1,
.lsg-section-heading h2,
.lsg-album-card__content h3,
.lsg-no-favorites h3,
.lsg-selection-drawer__header h2,
.lsg-empty-state h2,
.lsg-empty-state h3 { font-family: var(--sp-font); font-weight: 700; letter-spacing: -.045em; }
.lsg-button { border-radius: 12px; font-size: 10px; letter-spacing: .03em; text-transform: none; }
.lsg-button:not(.lsg-button--light):not(.lsg-button--outline) { background: var(--sp-red); }
.lsg-button--outline { border-radius: 12px; }
.lsg-eyebrow { color: var(--sp-red); font-family: var(--sp-font); letter-spacing: .13em; }
.lsg-album-card__media,
.lsg-post-card__image,
.lsg-gallery-item,
.lsg-password-card { border-radius: 16px; }
.lsg-album-card__content h3 { font-size: clamp(26px, 2.5vw, 39px); }
.lsg-album-card__arrow,
.lsg-favorite-button,
.lsg-icon-button,
.lsg-selection-drawer__header > button { border-radius: 12px; }
.lsg-favorite-button.is-favorite,
.lsg-icon-button > span { background: var(--sp-red); border-color: var(--sp-red); }
.lsg-floating-selection { background: var(--sp-red); }
.lsg-gallery-tabs button::after { background: var(--sp-red); }
.lsg-gallery-tabs button span { background: var(--sp-red); }
.lsg-gallery-item { overflow: hidden; }
.lsg-selection-drawer__panel { background: var(--sp-cream); }
.lsg-toast { border-radius: 10px; }

/* Responsive */
@media (max-width: 1180px) {
    .lsg-header-inner { gap: 20px; }
    .lsg-menu { gap: 17px; }
    .lsg-header-login { display: none; }
    .sp-hero__grid { grid-template-columns: .92fr 1.08fr; gap: 35px; }
    .sp-browser-mockup { width: 95%; }
    .sp-phone-mockup { right: -5px; }
    .sp-feature-card { grid-column: span 6; }
    .sp-feature-card--large,
    .sp-feature-card--wide { grid-column: span 12; }
    .sp-workflow__grid { gap: 55px; }
    .lsg-footer-top { grid-template-columns: 1.2fr repeat(3, .7fr); gap: 35px; }
}

@media (max-width: 980px) {
    body.admin-bar .lsg-site-header { top: 32px; }
    .lsg-header-inner { grid-template-columns: auto auto; justify-content: space-between; min-height: 58px; padding: 7px 10px 7px 14px; }
    .lsg-menu-toggle { z-index: 1002; display: block; width: 42px; height: 42px; margin-left: auto; border: 0; background: var(--sp-soft); border-radius: 11px; }
    .lsg-menu-toggle span:not(.screen-reader-text) { left: 12px; width: 18px; }
    .lsg-navigation {
        position: fixed;
        z-index: 1001;
        inset: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 135px 30px 50px;
        color: var(--sp-black);
        background: rgba(248,245,241,.98);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s ease, visibility .25s ease;
    }
    .lsg-navigation.is-open { opacity: 1; visibility: visible; }
    .lsg-navigation .lsg-menu { width: min(100%, 540px); display: flex; flex-direction: column; align-items: stretch; gap: 0; }
    .lsg-navigation .lsg-menu > li { border-bottom: 1px solid var(--sp-line); }
    .lsg-navigation .lsg-menu > li > a { padding: 18px 0; color: var(--sp-black); font-size: 28px; font-weight: 650; letter-spacing: -.045em; }
    .lsg-navigation .lsg-menu .sub-menu { position: static; display: block; padding: 0 0 12px; background: transparent; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
    .lsg-navigation .lsg-menu .sub-menu a { padding: 7px 0; color: var(--sp-muted); font-size: 14px; }
    .lsg-header-actions { display: none; }
    .sp-hero { min-height: auto; padding-top: 135px; }
    .sp-hero__grid { grid-template-columns: 1fr; }
    .sp-hero__content { max-width: 760px; padding: 35px 0 0; text-align: center; margin: 0 auto; }
    .sp-hero h1 { margin-left: auto; margin-right: auto; }
    .sp-hero__lead { margin-left: auto; margin-right: auto; }
    .sp-hero__actions,
    .sp-hero__trust { justify-content: center; }
    .sp-hero__visual { width: min(100%, 760px); margin: 0 auto; min-height: 610px; }
    .sp-browser-mockup { left: 50%; right: auto; width: 82%; transform: translateX(-50%) rotate(1deg); }
    .sp-phone-mockup { right: 5%; }
    .sp-floating-note--top { left: 5%; }
    .sp-floating-note--bottom { left: 8%; }
    .sp-workflow__grid { grid-template-columns: 1fr; }
    .sp-workflow__visual { width: min(100%, 700px); margin: 0 auto; }
    .sp-workflow__content { max-width: 720px; }
    .sp-album-grid,
    .sp-demo-album-grid { grid-template-columns: 1fr 1fr; }
    .sp-album-card:nth-child(3),
    .sp-demo-album-grid article:nth-child(3) { grid-column: 1 / -1; width: calc(50% - 11px); }
    .sp-price-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
    .sp-price-card--featured { transform: none; }
    .lsg-footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
    .lsg-footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 782px) {
    body.admin-bar .lsg-site-header { top: 46px; }
}

@media (max-width: 680px) {
    :root { --lsg-gutter: 17px; }
    html { scroll-padding-top: 76px; }
    .lsg-site-header { padding-top: 8px; }
    .lsg-site-header.is-scrolled { padding: 7px 0; }
    .lsg-header-inner { min-height: 54px; border-radius: 14px; }
    .lsg-wordmark-mark { width: 33px; height: 33px; border-radius: 9px; font-size: 16px; }
    .lsg-wordmark-text { max-width: 150px; font-size: 19px !important; }
    .custom-logo { max-width: 145px; max-height: 36px; }
    .sp-hero { padding: 115px 0 26px; }
    .sp-hero__content { padding-top: 22px; }
    .sp-pill { min-height: 32px; font-size: 8px; }
    .sp-hero h1 { margin-top: 20px; margin-bottom: 19px; font-size: clamp(43px, 12.5vw, 59px); line-height: 1.04; }
    .sp-hero__lead { font-size: 14px; line-height: 1.7; }
    .sp-hero__actions { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 26px; }
    .sp-button { width: 100%; min-height: 51px; }
    .sp-hero__trust { margin-top: 25px; }
    .sp-hero__visual { min-height: 455px; margin-top: 10px; }
    .sp-browser-mockup { top: 72px; width: 97%; padding: 5px; border-radius: 14px; }
    .sp-browser-mockup__bar { height: 24px; border-radius: 10px 10px 4px 4px; }
    .sp-browser-mockup__page { min-height: 330px; padding: 9px; }
    .sp-mock-header { height: 21px; }
    .sp-mock-logo { width: 20px; height: 20px; font-size: 7px; border-radius: 5px; }
    .sp-mock-cover { height: 98px; }
    .sp-mock-grid { gap: 3px; }
    .sp-mock-grid > span { min-height: 77px; }
    .sp-phone-mockup { right: -4px; bottom: 0; width: 117px; padding: 5px; border-radius: 21px; }
    .sp-phone-mockup__notch { top: 5px; width: 43px; height: 10px; }
    .sp-phone-mockup__screen { min-height: 235px; padding: 15px 5px 5px; border-radius: 16px; }
    .sp-phone-top { height: 18px; }
    .sp-phone-top b { width: 17px; height: 17px; font-size: 6px; border-radius: 4px; }
    .sp-phone-cover { height: 52px; }
    .sp-phone-grid > span { min-height: 58px; }
    .sp-floating-note { padding: 9px 10px; border-radius: 11px; }
    .sp-floating-note--top { left: 0; top: 20px; }
    .sp-floating-note--bottom { left: 2px; bottom: 10px; }
    .sp-note-icon { width: 25px; height: 25px; border-radius: 7px; font-size: 9px; }
    .sp-floating-note strong { font-size: 7px; }
    .sp-floating-note small { font-size: 6px; }
    .sp-orbit--one { width: 360px; height: 360px; right: -80px; top: 35px; }
    .sp-orbit--two { width: 250px; height: 250px; right: 35px; top: 90px; }
    .sp-logo-strip { margin-top: 25px; padding-top: 25px; }
    .sp-logo-strip div { gap: 18px 24px; }
    .sp-logo-strip span { font-size: 9px; }
    .sp-section { padding: 80px 0; }
    .sp-section-heading { margin-bottom: 38px; }
    .sp-section-heading h2,
    .sp-workflow__content h2 { font-size: 39px; line-height: 1.12; }
    .sp-section-heading > p { font-size: 13px; }
    .sp-section-heading--row { align-items: flex-start; flex-direction: column; }
    .sp-feature-grid { display: block; }
    .sp-feature-card { min-height: 320px; margin-bottom: 12px; padding: 23px; }
    .sp-feature-card--large { min-height: 315px; }
    .sp-feature-card--wide { min-height: 440px; display: flex; align-items: stretch; }
    .sp-feature-card h3 { font-size: 27px; }
    .sp-card-number { left: 22px; top: 20px; }
    .sp-link-demo { display: block; }
    .sp-link-demo button { width: 100%; margin-top: 8px; }
    .sp-responsive-demo { width: 100%; min-height: 195px; margin-top: 20px; }
    .sp-responsive-demo .desktop { width: 250px; height: 150px; }
    .sp-workflow__visual { min-height: 430px; }
    .sp-dashboard-card { width: 97%; padding: 14px; border-radius: 16px; }
    .sp-dashboard-row { grid-template-columns: 49px minmax(0,1fr) auto; gap: 8px; }
    .sp-dashboard-thumb { width: 49px; height: 42px; }
    .sp-dashboard-row > b { display: none; }
    .sp-status { padding: 5px 7px; }
    .sp-selection-card { right: 0; bottom: 16px; width: 180px; padding: 14px; }
    .sp-steps li { grid-template-columns: 36px 1fr; gap: 13px; }
    .sp-album-grid,
    .sp-demo-album-grid { grid-template-columns: 1fr; }
    .sp-album-card:nth-child(3),
    .sp-demo-album-grid article:nth-child(3) { grid-column: auto; width: auto; }
    .sp-album-card__image,
    .sp-demo-photo { min-height: 390px; border-radius: 16px; }
    .sp-price-card { min-height: auto; padding: 25px; border-radius: 18px; }
    .sp-final-cta { padding: 82px 0; }
    .sp-final-cta h2 { font-size: 42px; }
    .lsg-footer-top { grid-template-columns: 1fr 1fr; }
    .lsg-footer-brand { grid-column: 1 / -1; }
    .lsg-footer-contact { grid-column: auto; }
    .lsg-footer-bottom { flex-direction: column; }
}

/* Dynamic pricing comparison — Lensora Studio App */
.sp-pricing-comparison { background: #fff; }
.sp-pricing-heading { max-width: 900px; margin-right: auto; margin-left: auto; text-align: center; }
.sp-pricing-heading h2 { max-width: none; }
.sp-pricing-heading p { max-width: 820px; margin-right: auto; margin-left: auto; }
.sp-pricing-scroll { width: 100%; overflow-x: auto; padding: 18px 0 8px; scrollbar-width: thin; }
.sp-pricing-table { width: 100%; min-width: calc(260px + (var(--sp-plan-count) * 205px)); border-collapse: separate; border-spacing: 0; table-layout: fixed; color: var(--sp-black); background: #fff; }
.sp-pricing-table th,
.sp-pricing-table td { padding: 16px 14px; border-bottom: 1px solid #edf0f2; text-align: center; vertical-align: middle; font-size: 12px; }
.sp-pricing-table thead th { border-bottom: 0; }
.sp-pricing-table thead .sp-pricing-corner { width: 260px; text-align: left; vertical-align: bottom; color: var(--sp-muted); font-size: 10px; font-weight: 600; }
.sp-plan-head { position: relative; height: 255px; padding: 20px 16px 24px !important; border-radius: 18px 18px 0 0; }
.sp-plan-head.is-featured { background: #fff9f8; box-shadow: inset 0 0 0 1px rgba(239,75,67,.22); }
.sp-plan-icon { display: grid; width: 34px; height: 34px; margin: 0 auto 14px; place-items: center; color: #596579; border: 1px solid var(--sp-line); border-radius: 8px; font-size: 15px; }
.sp-plan-head > strong { display: block; color: var(--sp-red); font-size: 13px; font-weight: 700; }
.sp-plan-price { display: flex; min-height: 66px; margin: 13px 0 15px; align-items: baseline; justify-content: center; gap: 4px; white-space: nowrap; }
.sp-plan-price b { font-size: clamp(27px, 2.4vw, 37px); line-height: 1; letter-spacing: -.045em; }
.sp-plan-price small { color: #4c5565; font-size: 10px; font-weight: 600; }
.sp-plan-button { display: flex; width: 100%; min-height: 42px; padding: 8px 12px; align-items: center; justify-content: center; color: #fff; background: #e6322f; border-radius: 6px; font-size: 10px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.sp-plan-button:hover { color: #fff; background: #cc2825; transform: translateY(-1px); }
.sp-pricing-table tbody th { position: sticky; z-index: 2; left: 0; width: 260px; padding-left: 0; text-align: left; color: #111827; background: #fff; font-size: 11px; font-weight: 650; }
.sp-pricing-table tbody td { color: #111827; font-weight: 540; }
.sp-pricing-group-row th { position: sticky; z-index: 3; left: 0; padding: 30px 0 13px !important; color: var(--sp-red) !important; background: #fff !important; border-bottom: 0 !important; font-size: 11px !important; font-weight: 700 !important; }
.sp-pricing-check { display: inline-grid; width: 20px; height: 20px; place-items: center; color: #0ca968; border: 1.5px solid #0ca968; border-radius: 50%; font-size: 12px; font-weight: 800; }
.sp-pricing-dash { color: #758092; }
.sp-pricing-value { display: inline-block; max-width: 180px; line-height: 1.45; }
.sp-pricing-table tbody tr:not(.sp-pricing-group-row):hover th,
.sp-pricing-table tbody tr:not(.sp-pricing-group-row):hover td { background: #fbfcfd; }
.sp-pricing-table tbody tr:not(.sp-pricing-group-row):hover th { background: #fbfcfd; }

@media (max-width: 980px) {
    .sp-pricing-scroll { margin-right: -16px; padding-right: 16px; }
    .sp-pricing-table { min-width: calc(210px + (var(--sp-plan-count) * 190px)); }
    .sp-pricing-table thead .sp-pricing-corner,
    .sp-pricing-table tbody th { width: 210px; }
    .sp-plan-head { height: 240px; }
}

@media (max-width: 640px) {
    .sp-pricing-heading { text-align: left; }
    .sp-pricing-table { min-width: calc(170px + (var(--sp-plan-count) * 170px)); }
    .sp-pricing-table thead .sp-pricing-corner,
    .sp-pricing-table tbody th { width: 170px; }
    .sp-pricing-table th,
    .sp-pricing-table td { padding: 13px 9px; }
    .sp-plan-head { height: 225px; padding: 16px 10px 20px !important; }
    .sp-plan-price b { font-size: 27px; }
    .sp-plan-button { min-height: 38px; }
}


.sp-card-cover{position:absolute;inset:0;display:grid;gap:3px;overflow:hidden;background:#111827}.sp-card-cover img{width:100%;height:100%;min-width:0;min-height:0;object-fit:cover;display:block}.sp-card-cover--single{display:block}.sp-card-cover--single img{position:absolute;inset:0}.sp-card-cover--collage3{grid-template-columns:1.55fr .8fr;grid-template-rows:1fr 1fr}.sp-card-cover--collage3 .sp-card-cover__1{grid-row:1/3}.sp-card-cover--collage4{grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr}
