@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Noto+Sans+SC:wght@300;400;600;700&display=swap");

/* ========================================
   沉礁摄影作品集 - Apple Design System
   Primary: Apple Human Interface Guidelines
   ======================================== */

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   Design Tokens - Apple System (Light)
   ======================================== */
:root {
    /* Brand & Accent - Apple Action Blue */
    --primary: #0066cc;
    --primary-focus: #0071e3;
    --primary-on-dark: #2997ff;

    /* Canvas & Surfaces */
    --canvas: #ffffff;
    --canvas-parchment: #f5f5f7;
    --surface-pearl: #fafafc;
    --surface-tile-1: #272729;
    --surface-tile-2: #2a2a2c;
    --surface-tile-3: #252527;
    --surface-black: #000000;

    /* Text */
    --ink: #1d1d1f;
    --body: #1d1d1f;
    --body-muted: #86868b;
    --ink-muted-80: #86868b;
    --ink-muted-48: #6e6e73;
    --on-primary: #ffffff;
    --on-dark: #ffffff;

    /* Borders & Dividers */
    --divider-soft: #d2d2d7;
    --hairline: #d2d2d7;

    /* Semantic */
    --success: #007d48;
    --warning: #fedf35;
    --error: #d30005;

    /* Layout */
    --nav-height: 44px;
    --sub-nav-height: 52px;
    --max-width: 1440px;
    --section-padding: 80px;

    /* Border Radius - Apple Scale */
    --radius-none: 0px;
    --radius-xs: 5px;
    --radius-sm: 8px;
    --radius-md: 11px;
    --radius-lg: 18px;
    --radius-pill: 9999px;

    /* Spacing - 8px base */
    --space-xxs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 17px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-section: 80px;
}

/* ========================================
   Base Styles
   ======================================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Noto Sans SC', 'SF Pro Text', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--canvas);
    color: var(--ink);
    line-height: 1.47;
    letter-spacing: -0.374px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Noto Sans SC', 'SF Pro Display', system-ui, -apple-system, sans-serif;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.28px;
}

h1 { font-size: 56px; line-height: 1.07; }
h2 { font-size: 40px; letter-spacing: 0; }
h3 { font-size: 34px; letter-spacing: -0.374px; }
h4 { font-size: 28px; font-weight: 400; letter-spacing: 0.196px; }
h5 { font-size: 21px; font-weight: 600; letter-spacing: 0.231px; }
h6 { font-size: 17px; font-weight: 600; letter-spacing: -0.374px; }

p {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.47;
    color: var(--body);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
}

/* ========================================
   Navigation - Apple Two-Row System
   ======================================== */

/* Global Nav - Ultra thin black bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: var(--surface-black);
    z-index: 1000;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text {
    display: none;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.12px;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--on-dark);
}

/* ========================================
   Sub Navigation - Frosted Glass
   ======================================== */
.sub-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: var(--sub-nav-height);
    background: rgba(245, 245, 247, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--divider-soft);
    z-index: 999;
}

.sub-nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.sub-nav-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-muted-48);
    letter-spacing: 0.5px;
}

/* ========================================
   筛选栏 - Apple左侧边栏
   ======================================== */
.filter-bar {
    padding-top: calc(var(--nav-height) + var(--sub-nav-height) + 40px);
    padding-bottom: 40px;
}

.filter-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

/* 侧边栏容器 */
.filter-sidebar {
    width: 200px;
    flex-shrink: 0;
    position: sticky;
    top: calc(var(--nav-height) + var(--sub-nav-height) + 24px);
}

/* 筛选组 */
.filter-group {
    margin-bottom: 24px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-muted-48);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 2px solid var(--primary);
}

/* Category Pills - 垂直排列 */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-btn {
    background: transparent;
    border: none;
    color: var(--ink-muted-80);
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: var(--radius-sm);
}

.category-btn:hover {
    color: var(--ink);
    background: var(--canvas-parchment);
}

.category-btn.active {
    background: var(--ink);
    color: var(--on-primary);
    font-weight: 600;
}

.filter-divider {
    width: 100%;
    height: 1px;
    background: var(--divider-soft);
    margin: 20px 0;
}

/* Date Filter - 垂直排列 */
.date-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.date-filter {
    background: var(--canvas);
    border: 1px solid var(--hairline);
    color: var(--ink-muted-80);
    padding: 9px 32px 9px 12px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: var(--radius-sm);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%237a7a7a' d='M4 5L0 0h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    width: 100%;
}

.date-filter:hover {
    border-color: var(--ink-muted-48);
    color: var(--ink);
}

.date-filter:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.date-filter option {
    background: var(--canvas);
    color: var(--ink);
}

/* Display Mode Toggle - 垂直排列 */
.display-mode-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.display-mode-toggle {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.mode-btn {
    background: transparent;
    border: none;
    color: var(--ink-muted-80);
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mode-btn:not(:last-child) {
    border-bottom: 1px solid var(--hairline);
}

.mode-btn:hover {
    color: var(--ink);
    background: var(--canvas-parchment);
}

.mode-btn.active {
    background: var(--ink);
    color: var(--on-primary);
    font-weight: 600;
}

/* 主内容区域 */
.filter-main {
    flex: 1;
    min-width: 0;
}

/* ========================================
   Gallery - Main Content Area
   ======================================== */
.gallery {
    padding: 0 0 100px;
    min-height: calc(100vh - 200px);
    position: relative;
    flex: 1;
}

.gallery-grid {
    width: 100%;
}

/* Masonry Layout */
.masonry-columns {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.masonry-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Gallery Item - Full Bleed */
.gallery-item {
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--canvas-parchment);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Gallery Item Overlay */
.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 24px 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--on-dark);
    letter-spacing: -0.224px;
    margin-bottom: 4px;
}

.gallery-item .overlay p {
    font-size: 13px;
    color: var(--body-muted);
}

/* Watermark */
.gallery-item .watermark-overlay,
.stacked-cover .watermark-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: auto;
    pointer-events: none;
    z-index: 5;
    filter: grayscale(100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .watermark-overlay,
.stacked-cover:hover .watermark-overlay {
    opacity: 0;
}

.gallery-item:active .watermark-overlay,
.stacked-cover:active .watermark-overlay {
    opacity: 0.35;
}

/* Photo Group Stacked */
.photo-group-stacked {
    position: relative;
    background: var(--canvas-parchment);
    overflow: hidden;
}

.stacked-cover {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.stacked-cover img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
}

.stacked-cover:hover img {
    transform: scale(1.03);
}

.stacked-count {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--on-dark);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 400;
}

.stacked-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stacked-cover:hover .stacked-overlay {
    opacity: 1;
}

.stacked-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--on-dark);
    letter-spacing: -0.224px;
}

/* ========================================
   Lightbox - Full Screen Immersive
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--surface-black);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 28px;
    color: var(--body-muted);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2001;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    color: var(--on-dark);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 92vw;
    max-height: 88vh;
}

.lightbox-img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
}

.lightbox-caption {
    margin-top: 16px;
    font-size: 13px;
    color: var(--body-muted);
    text-align: center;
}

/* Lightbox Preview Strip */
.lightbox-preview-strip {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-sm);
    max-width: 90vw;
    overflow-x: auto;
    justify-content: center;
}

.lightbox-preview-strip::-webkit-scrollbar {
    height: 4px;
}

.lightbox-preview-strip::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.lightbox-preview-strip::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.lightbox-preview-item {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--radius-xs);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.lightbox-preview-item:hover {
    opacity: 0.8;
}

.lightbox-preview-item.active {
    opacity: 1;
    border-color: var(--primary);
}

.lightbox-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: var(--body-muted);
    cursor: pointer;
    padding: 20px;
    transition: color 0.2s;
    user-select: none;
}

.lightbox-nav:hover {
    color: var(--on-dark);
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

/* ========================================
   Footer - Parchment Style
   ======================================== */
footer {
    padding: 64px 0;
    background: var(--canvas-parchment);
    text-align: center;
    border-top: 1px solid var(--divider-soft);
}

footer p {
    font-size: 12px;
    font-weight: 400;
    color: var(--ink-muted-48);
    margin-bottom: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    opacity: 0.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.social-links a {
    font-size: 12px;
    font-weight: 400;
    color: var(--ink-muted-48);
    letter-spacing: 0;
    text-transform: uppercase;
    transition: color 0.2s;
}

.social-links a:hover {
    color: var(--primary);
}

/* ========================================
   Videos Page
   ======================================== */
.videos-page {
    padding-top: calc(var(--nav-height) + var(--sub-nav-height) + 40px);
}

.page-title {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 48px;
    text-align: center;
    color: var(--ink);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 24px;
}

.video-item {
    background: var(--surface-tile-1);
    border-radius: var(--radius-none);
    overflow: hidden;
    position: relative;
}

.video-item::before {
    content: 'VIDEO';
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--on-primary);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.5px;
    border-radius: var(--radius-xs);
}

.video-item .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    background: var(--surface-tile-3);
}

.video-item .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--body-muted);
    font-size: 3rem;
    transition: color 0.2s;
}

.video-item .video-placeholder:hover {
    color: var(--primary-on-dark);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item .video-info {
    padding: 20px 24px;
}

.video-item .video-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--on-dark);
    margin-bottom: 6px;
    letter-spacing: -0.224px;
}

.video-item .video-info p {
    font-size: 13px;
    color: var(--body-muted);
}

/* ========================================
   About Page - Editorial Layout
   ======================================== */
.about-page {
    padding-top: calc(var(--nav-height) + var(--sub-nav-height) + 60px);
    padding-bottom: 100px;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 64px;
    align-items: start;
}

.about-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.about-text h1 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 12px;
    color: var(--ink);
}

.about-text > p:first-of-type {
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.374px;
}

.about-text > p:nth-of-type(2) {
    font-size: 15px;
    color: var(--ink-muted-80);
    margin-bottom: 6px;
}

.about-desc {
    color: var(--ink-muted-48) !important;
    font-size: 14px !important;
}

/* Social Modules */
.social-modules {
    display: flex;
    gap: 12px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.social-module {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 180px;
}

.social-module:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
}

.social-module .social-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.social-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.social-handle {
    font-size: 12px;
    color: var(--ink-muted-48);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.about-text h2 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 14px;
    color: var(--primary);
    letter-spacing: 0;
}

.about-text p {
    color: var(--ink-muted-80);
    margin-bottom: 10px;
}

.about-text a {
    color: var(--primary);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .container,
    .nav-container,
    .sub-nav-container,
    .filter-bar-inner {
        padding: 0 32px;
    }
}

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 240px 1fr;
        gap: 48px;
    }

    .filter-sidebar {
        width: 160px;
    }

    .masonry-columns {
        gap: 12px;
    }

    .masonry-column {
        gap: 12px;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 44px;
    }

    .container,
    .nav-container,
    .sub-nav-container,
    .filter-bar-inner {
        padding: 0 20px;
    }

    .filter-bar-inner {
        flex-direction: column;
        gap: 24px;
    }

    .filter-sidebar {
        width: 100%;
        position: static;
        display: flex;
        gap: 24px;
        flex-wrap: wrap;
    }

    .filter-group {
        margin-bottom: 0;
    }

    .filter-group-title {
        display: none;
    }

    .category-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .category-btn {
        padding: 8px 12px;
        font-size: 11px;
        background: var(--canvas-parchment);
        border-radius: var(--radius-pill);
    }

    .category-btn.active {
        background: var(--ink);
        color: var(--on-primary);
    }

    .date-filter-group {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .date-filter {
        width: auto;
        flex: 1;
        min-width: 120px;
    }

    .display-mode-group {
        flex-direction: row;
    }

    .display-mode-toggle {
        flex-direction: row;
    }

    .mode-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .mode-btn:not(:last-child) {
        border-bottom: none;
        border-right: 1px solid var(--hairline);
    }

    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    .page-title { font-size: 32px; }

    .nav-links {
        gap: 20px;
    }

    .sub-nav-container {
        gap: 16px;
    }

    .masonry-columns {
        gap: 10px;
    }

    .masonry-column {
        gap: 10px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-image {
        max-width: 260px;
        margin: 0 auto;
    }

    .social-modules {
        flex-direction: column;
    }

    .social-module {
        min-width: 100%;
    }

    .lightbox-nav {
        font-size: 32px;
        padding: 12px;
    }

    .lightbox-prev {
        left: 4px;
    }

    .lightbox-next {
        right: 4px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    .page-title { font-size: 26px; }

    .filter-sidebar {
        display: none;
    }

    .masonry-columns {
        flex-direction: column;
        gap: 10px;
    }

    .masonry-column {
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    footer {
        padding: 48px 0;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-item,
.photo-group-stacked,
.video-item {
    animation: fadeIn 0.4s ease-out;
}

/* Active state - Apple uses scale transform */
.gallery-item:active img,
.stacked-cover:active img {
    transform: scale(0.97);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .photo-group-stacked,
    .video-item {
        animation: none;
    }

    .gallery-item img,
    .stacked-cover img {
        transition: none;
    }
}