/* Hero — graphic-print template */
.hero .container-flexible {
    --container-flexible-a: 0.5;
    --container-flexible-b: 0.5;
}

.hero .hero-base-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.hero .hero-image-container {
    margin-top: -80px
}

@media (max-width: 1299px) {
    .hero .hero-image-container {
        margin-top: -40px
    }
}

.support .container-flexible {
    --container-flexible-a: 0.45;
    --container-flexible-b: 0.55;
}

.support .logos {
    max-width: 400px;
}

@media (max-width: 1299px) {
    .support .logos {
        max-width: 80%;
    }
}


.design-services .property-list {}


.design-services .property-list>div {
    display: flex;
}

.design-services .property-list>div>*:first-child {
    font-size: 22px;
    line-height: 1.15;
    color: #fff;
    font-weight: 700;
    width: 180px !important;
}

.design-services .property-list>div>*:nth-child(2) {
    width: calc(100% - 180px);
    padding-left: 20px;
    color: var(--color-ink-soft);
}

@media (max-width: 1299px) {
    .design-services .property-list>div {
        flex-wrap: wrap;
    }

    .design-services .property-list>div>*:first-child {
        width: 100% !important;
    }

    .design-services .property-list>div>*:nth-child(2) {
        width: 100% !important;
        padding: 10px 0 0 0
    }

}


/* OTHER PAGE */


/* --- SOCIAL MEDIA EXAMPLES MARQUEE --- */
.social-feed-section {
    overflow: hidden;
}

.social-feed-section .feed-header-wrap {
    max-width: 1040px;
    margin: 0 auto 56px;
    padding: 0 40px;
    text-align: left;
}

.social-feed-section .feed-header-wrap p {
    max-width: 860px;
    margin: 22px 0 0;
    color: #666;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.55;
}

.social-marquee {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    margin-top: 60px;
}

.social-marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
    animation: socialMarquee 58s linear infinite;
    will-change: transform;
}

.social-marquee:hover .social-marquee-track {
    animation-play-state: paused;
}

.social-marquee .feed-item {
    flex: 0 0 auto;
    width: clamp(240px, 23vw, 360px);
    margin: 0;
    overflow: hidden;
}

.social-marquee .feed-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
}

@keyframes socialMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (max-width: 768px) {
    .social-feed-section .feed-header-wrap {
        margin-bottom: 34px;
        padding: 0 24px;
    }

    .social-marquee-track {
        gap: 16px;
        animation-duration: 44s;
    }

    .social-marquee .feed-item {
        width: 230px;
    }
}


/* --- SOCIAL FEED LIGHTBOX (SOPHISTICATED) --- */

/* The Backdrop (Blur + Dark) */
.social-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    /* Deep dark background */
    backdrop-filter: blur(10px);
    /* Glass effect */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: zoom-out;
}

.social-lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* The Image Container */
.social-lb-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    /* Heavy shadow for depth */
}

.social-lightbox.active .social-lb-container {
    transform: scale(1);
}

.social-lb-img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 90vh;
    display: block;
    border-radius: 4px;
    /* Subtle radius */
}

/* Close Button (Minimal) */
.social-lb-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 210;
    transition: transform 0.3s ease;
}

.social-lb-close::before,
.social-lb-close::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: background 0.3s;
}

.social-lb-close::before {
    transform: rotate(45deg);
}

.social-lb-close::after {
    transform: rotate(-45deg);
}

.social-lb-close:hover {
    transform: rotate(90deg);
}

.social-lb-close:hover::before,
.social-lb-close:hover::after {
    background: var(--accent);
}

/* Cursor for feed items */
.feed-item {
    cursor: zoom-in;
}