/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f5f5f5;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.3em;
    color: #cbd5e0;
    margin-bottom: 8px;
}

.tagline {
    font-size: 1em;
    color: #a0aec0;
    font-style: italic;
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Intro Section */
.intro-section {
    text-align: center;
    margin-bottom: 35px;
}

.intro-section h2 {
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 15px;
}

.intro-section p {
    font-size: 1.2em;
    color: #718096;
}

/* Category Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.category-card {
    background: white;
    padding: 18px 15px;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3748;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2em;
    margin-right: 10px;
    display: inline-block;
}

.category-card h3 {
    font-size: 1.3em;
    margin: 0;
    color: #2d3748;
    display: inline-block;
}

.category-card .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.category-card p {
    display: none;
}

.arrow {
    display: none;
}



/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 28px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 1.9em;
    margin-bottom: 6px;
}

.page-header p {
    font-size: 0.95em;
    opacity: 0.85;
}

.back-link {
    display: inline-block;
    margin-top: 12px;
    color: white;
    text-decoration: none;
    padding: 6px 18px;
    border: 2px solid white;
    border-radius: 30px;
    font-size: 0.88em;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: white;
    color: #667eea;
}

/* Work Grid */
.work-grid {
    display: grid;
    gap: 50px;
    margin-top: 40px;
}

.work-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.work-media {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-media iframe,
.work-media video {
    width: 100%;
    height: 100%;
    min-height: 315px;
    border: none;
    display: block;
}

/* Vertical Videos Section */
.vertical-section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #2d3748;
    margin-bottom: 40px;
}

.vertical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Make the third card span both columns */
.vertical-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

.vertical-card {
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vertical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* Gradient backgrounds */
.gradient-purple {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-blue {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f77062 0%, #fe5196 100%);
}

.vertical-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.vertical-video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-video-wrapper video {
    max-width: 280px;
    max-height: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vertical-text {
    color: white;
}

.vertical-text .client {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vertical-text h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: white;
}

.vertical-text .description {
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.vertical-text .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vertical-text .tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Style for vertical/portrait videos (shorts format) */
.vertical-video {
    grid-template-columns: 1fr !important;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.vertical-video .work-media {
    padding: 40px 0 20px 0;
}

.vertical-video .work-media video {
    width: auto;
    max-width: 400px;
    height: auto;
    max-height: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.vertical-video .work-details {
    text-align: center;
    padding: 30px 40px 40px 40px;
}

.vertical-video .work-details .tags {
    justify-content: center;
}

.work-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Spec Work Video - Smaller Size */
.spec-work-video {
    grid-template-columns: 2fr 3fr;
    max-width: 900px;
    margin: 0 auto;
}

.spec-work-video .work-media video {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* Vertical video left + info right (for portrait/short-form videos) */
.vertical-video-row {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vertical-video-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
}

.vertical-video-row .vvr-media {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-video-row .vvr-media video {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    display: block;
}

.vertical-video-row .vvr-info {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vertical-video-row .vvr-info .client-label {
    color: #667eea;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.vertical-video-row .vvr-info h3 {
    font-size: 1.45em;
    color: #2d3748;
    margin-bottom: 10px;
}

.vertical-video-row .vvr-info .stats-row {
    font-size: 0.88em;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
}

.vertical-video-row .vvr-info .description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95em;
    margin-bottom: 16px;
}

.vertical-video-row .vvr-info .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 768px) {
    .vertical-video-row {
        grid-template-columns: 1fr;
    }

    .vertical-video-row .vvr-media video {
        max-height: 400px;
    }
}

.work-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.work-details h3 {
    font-size: 1.8em;
    color: #2d3748;
    margin-bottom: 15px;
}

.work-details .client {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.work-details .description {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.work-details .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item-info {
    padding: 20px;
}

.gallery-item-info h4 {
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.gallery-item-info p {
    color: #718096;
    font-size: 0.95em;
}

/* Footer */
footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
        min-height: 30vh;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .tagline {
        font-size: 0.95em;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .category-card {
        padding: 15px 12px;
    }

    .card-icon {
        font-size: 1.8em;
    }

    .category-card h3 {
        font-size: 1.2em;
    }

    /* Vertical videos stack on mobile */
    .vertical-grid {
        grid-template-columns: 1fr;
    }

    .vertical-card {
        padding: 30px 20px;
    }

    .vertical-video-wrapper video {
        max-width: 250px;
        max-height: 450px;
    }

    .vertical-text h3 {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 2em;
    }

    .work-item {
        grid-template-columns: 1fr;
    }

    .spec-work-video {
        grid-template-columns: 1fr;
    }

    .spec-work-video .work-media video {
        max-height: 300px;
    }

    .work-media iframe,
    .work-media video {
        min-height: 250px;
    }

    /* Vertical videos - already stacked, just adjust size */
    .vertical-video .work-media video {
        max-width: 90%;
        max-height: 500px;
    }

    .intro-section h2 {
        font-size: 2em;
    }

    .page-header h1 {
        font-size: 1.5em;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
        min-height: 25vh;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .subtitle {
        font-size: 1em;
    }

    .category-card {
        padding: 15px 12px;
    }

    .card-icon {
        font-size: 1.6em;
        margin-right: 8px;
    }

    .category-card h3 {
        font-size: 1.1em;
    }

    .work-details {
        padding: 25px;
    }
}

/* =============================================
   NEW LAYOUT COMPONENTS
   ============================================= */

/* --- Client Block (Scripts: title on top, video below) --- */
.client-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.client-block-header {
    padding: 28px 35px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.client-block-header .client-label {
    color: #667eea;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.client-block-header h3 {
    font-size: 1.6em;
    color: #2d3748;
    margin-bottom: 8px;
}

.client-block-header .description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.97em;
    margin-bottom: 12px;
}

.client-block-header .stats-row {
    font-size: 0.88em;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
}

.client-block-header .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.client-block-video {
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-block-video video {
    width: 100%;
    max-height: 480px;
    display: block;
}

/* --- Photo Left / Info Right row --- */
.photo-info-row {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-info-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
}

.photo-info-row .row-media {
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 300px;
}

.photo-info-row .row-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-info-row .row-info {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.photo-info-row .row-info .client-label {
    color: #667eea;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.photo-info-row .row-info h3 {
    font-size: 1.4em;
    color: #2d3748;
    margin-bottom: 12px;
}

.photo-info-row .row-info p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 0.95em;
    margin-bottom: 14px;
}

.photo-info-row .row-info .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* --- Side by Side Media (pairs of images / image+video) --- */
.side-by-side {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.side-by-side-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-by-side-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.13);
}

.side-by-side-item img,
.side-by-side-item video {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 380px;
}

/* Flyer images — show full without cropping */
.side-by-side-item.flyer-item img {
    object-fit: contain;
    max-height: none;
    height: auto;
    background: #f5f5f5;
    width: 90%;
    margin: 0 auto;
    display: block;
}

.side-by-side-item video {
    background: #000;
    max-height: 420px;
    object-fit: contain;
}

.side-by-side-item .item-info {
    padding: 18px 20px;
}

.side-by-side-item .item-info .client-label {
    color: #667eea;
    font-weight: 700;
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.side-by-side-item .item-info h4 {
    font-size: 1.05em;
    color: #2d3748;
    margin-bottom: 6px;
}

.side-by-side-item .item-info p {
    color: #718096;
    font-size: 0.88em;
    line-height: 1.5;
}

/* Full width section item (Daishik newspaper etc.) */
.single-media-row {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    display: flex;
    gap: 0;
}

.single-media-row .row-media {
    flex: 0 0 55%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 280px;
}

.single-media-row .row-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.single-media-row .row-info {
    flex: 1;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-media-row .row-info .client-label {
    color: #667eea;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.single-media-row .row-info h3 {
    font-size: 1.4em;
    color: #2d3748;
    margin-bottom: 12px;
}

.single-media-row .row-info p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 14px;
}

.single-media-row .row-info .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* --- Auto Carousel --- */
.auto-carousel {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16/9;
}

.auto-carousel .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.auto-carousel .carousel-slide.active {
    opacity: 1;
}

.auto-carousel .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f5f5;
}

.auto-carousel .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.auto-carousel .carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: background 0.3s;
    cursor: pointer;
}

.auto-carousel .carousel-dots span.active {
    background: white;
}

/* Carousel wrapper with info */
.carousel-block {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.carousel-block .carousel-header {
    padding: 22px 28px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.carousel-block .carousel-header .client-label {
    color: #667eea;
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.carousel-block .carousel-header h3 {
    font-size: 1.4em;
    color: #2d3748;
    margin-bottom: 6px;
}

.carousel-block .carousel-header p {
    color: #718096;
    font-size: 0.92em;
}

.carousel-block .carousel-body {
    padding: 0;
}

.carousel-block .auto-carousel {
    border-radius: 0;
    aspect-ratio: 1 / 1;
}

/* Square carousels (Instagram format) */
.carousel-block.instagram .auto-carousel {
    aspect-ratio: 1 / 1;
    max-height: 500px;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-block.instagram .carousel-slide img {
    object-fit: contain;
    background: white;
}

/* --- Blog Cards --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 30px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}

.blog-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body .blog-source {
    color: #667eea;
    font-size: 0.78em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 1.15em;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.45;
}

.blog-card-body p {
    color: #718096;
    font-size: 0.9em;
    line-height: 1.65;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    padding: 14px 28px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85em;
}

.blog-card-footer .read-more {
    color: #667eea;
    font-weight: 600;
}

.blog-card-footer .external-icon {
    color: #a0aec0;
    font-size: 1.1em;
}

/* --- Section label (used above groups) --- */
.section-group-label {
    font-size: 1.1em;
    font-weight: 700;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 40px 0 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid #edf2f7;
}

/* =============================================
   LOGO TICKER
   ============================================= */
.logo-ticker-section {
    background: #fff;
    padding: 36px 0 32px;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.logo-ticker-label {
    text-align: center;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0aec0;
    margin-bottom: 28px;
}

.logo-ticker-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-ticker-wrapper::before,
.logo-ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.logo-ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.logo-ticker-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: ticker-scroll 30s linear infinite;
    padding: 0 40px;
}

.logo-ticker-track:hover {
    animation-play-state: paused;
}

.logo-ticker-track img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.logo-ticker-track img:hover {
    opacity: 1;
    transform: scale(1.08);
}

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   RESPONSIVE — NEW COMPONENTS
   ============================================= */
@media (max-width: 768px) {
    .photo-info-row {
        grid-template-columns: 1fr;
    }

    .photo-info-row .row-media {
        min-height: 220px;
    }

    .single-media-row {
        flex-direction: column;
    }

    .single-media-row .row-media {
        min-height: 220px;
    }

    .side-by-side {
        grid-template-columns: 1fr;
    }

    .client-block-header {
        padding: 22px 20px 16px;
    }

    .client-block-header h3 {
        font-size: 1.3em;
    }

    .auto-carousel {
        aspect-ratio: 4/3;
    }

    .carousel-block.instagram .auto-carousel {
        aspect-ratio: 1/1;
        max-height: 380px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}