/* --- 1. ROOT & RESET --- */
:root {
    --info-font-size: 12px;
    --info-line-height: 1.5;
    --info-letter-spacing: 0.02em;
    --info-tab-width: 100px;
}

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

body {
    background-color: #ededed;
    color: #000;
    font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
    font-weight: 200; 
    font-size: 12px;
    padding-top: 30px;
    -webkit-user-select: none; 
    -ms-user-select: none;      
    user-select: none;   
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: auto;
}

a {
    text-decoration: none !important;
    color: #000 !important;
}

::selection {
    background-color: #000; 
    color: #fff;            
}

/* --- 2. NAVIGATION & LOGO --- */
.logo, .info {
    position: fixed;
    top: 20px; 
    font-family: "Helvetica", Arial, sans-serif;
    z-index: 1001; 
}

.logo {
    left: 20px;
    display: flex;
    align-items: baseline;
    font-weight: 500; 
    font-size: 28px;
    cursor: pointer;
}

.info {
    right: 20px;
    font-weight: 500; 
    font-size: 28px;
    cursor: pointer;
}

.info::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transition: width 0.2s;
}

.info:hover::after {
    width: 100%;
}

/* --- 3. PRELOADER & ANIMATIONS --- */
body.loading-state main, 
body.loading-state #footer-ticker,
body.loading-state .info {
    opacity: 0;
    pointer-events: none;
}

@keyframes slidePlus {
    from { transform: translateX(5px); }
    to   { transform: translateX(-2px); }
}

@keyframes slidePlusMobile {
    from { transform: translateX(0); }
    to   { transform: translateX(-2px); }
}

@keyframes expandRest {
    from { width: 0; opacity: 0; }
    to   { width: 70px; opacity: 1; }
}

@keyframes letterIn {
    from { opacity: 0; transform: translateY(5px); }
    to   { opacity: 1; transform: translateY(0); }
}

.logo-plus {
    display: inline-block;
    position: relative;
    right: -6px;
    transform: translateX(-2px);
    animation: slidePlus 0.24s ease-out forwards reverse;
    animation-delay: 0.5s;
    transition: transform 0.3s;
}

.logo:hover .logo-plus {
    transform: rotate(90deg);
}

.logo-rest {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    width: 70px; /* default for mobile */
    animation: expandRest 0.48s ease forwards reverse;
    animation-delay: 0.5s;
}

@media (min-width: 769px) {
    /* desktop starts collapsed so only 'F+' shows */
    .logo-rest {
        width: 0;
    }
}

.logo-rest span {
    display: inline-block;

    /* Mobile expanded project spacing adjustments */
    .mobile-expanded-view .info-left br {
        display: block;
        margin-bottom: 20px;
    }

    .mobile-expanded-view .info-left {
        margin-bottom: 24px;
    }

    .mobile-expanded-view .info-right {
        margin-bottom: 28px;
    }

    .mobile-expanded-view .mobile-read-more-btn {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.6;
    }
    animation: letterIn 0.12s ease-out forwards reverse;
}

.logo-rest span:nth-child(1) { animation-delay: 0.5s; }
.logo-rest span:nth-child(2) { animation-delay: 0.55s; }
.logo-rest span:nth-child(3) { animation-delay: 0.60s; }
.logo-rest span:nth-child(4) { animation-delay: 0.65s; }
.logo-rest span:nth-child(5) { animation-delay: 0.70s; }
.logo-rest span:nth-child(6) { animation-delay: 0.75s; }

/* switch animation direction based on screen size */
@media (min-width: 769px) {
    /* desktop: F+ → Fichter+ */
    .logo-plus { animation-direction: normal; }
    .logo-rest { animation-direction: normal; }
    .logo-rest span { animation-direction: normal; }

    /* desktop delay +0.5s */
    .logo-plus { animation-delay: 1s; }
    .logo-rest { animation-delay: 1s; }
    .logo-rest span:nth-child(1) { animation-delay: 1s; }
    .logo-rest span:nth-child(2) { animation-delay: 1.05s; }
    .logo-rest span:nth-child(3) { animation-delay: 1.10s; }
    .logo-rest span:nth-child(4) { animation-delay: 1.15s; }
    .logo-rest span:nth-child(5) { animation-delay: 1.20s; }
    .logo-rest span:nth-child(6) { animation-delay: 1.25s; }
}

@media (max-width: 768px) {
    /* mobile retains backwards playback */
    .logo-plus { animation-direction: reverse; }
    .logo-rest { animation-direction: reverse; }
    .logo-rest span { animation-direction: reverse; }

    /* mobile start delay */
    .logo-plus { animation-delay: 1.5s; }
    .logo-rest { animation-delay: 1.5s; }

    /* mobile final position: plus rests 5px closer to F */
    .logo-plus { animation-name: slidePlusMobile; }

    /* invert disappear order: r vanishes first, i last */
    .logo-rest span:nth-child(1) { animation-delay: 1.75s; }
    .logo-rest span:nth-child(2) { animation-delay: 1.70s; }
    .logo-rest span:nth-child(3) { animation-delay: 1.65s; }
    .logo-rest span:nth-child(4) { animation-delay: 1.60s; }
    .logo-rest span:nth-child(5) { animation-delay: 1.55s; }
    .logo-rest span:nth-child(6) { animation-delay: 1.5s; }
}

body.loaded .content,
body.loaded .navbar .info,
body.loaded #footer-ticker {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

@media (max-width: 768px) {
    body.loaded .content,
    body.loaded .navbar .info,
    body.loaded #footer-ticker {
        transition-delay: 1s;
    }
}

@media (min-width: 769px) {
    body.loaded .content,
    body.loaded .navbar .info,
    body.loaded #footer-ticker {
        transition-delay: 0.5s;
    }
}

/* --- 4. PROJECT GALLERY --- */
#project-gallery {
    display: grid;
    grid-template-columns: repeat(var(--cols, 2), 1fr);
    column-gap: var(--grid-gap-h);
    row-gap: var(--grid-gap-v);
    padding: 0 var(--grid-padding) 80px;
    margin-bottom: 0;
    width: 100%;
    margin-top: 10%;
    justify-items: center;
    align-items: center;
}

@media (min-width: 769px) {
    /* Guaranteed visible space below last gallery row */
    #project-gallery {
        margin-bottom: 80px;
    }

    #project-gallery::after {
        content: '';
        display: block;
        grid-column: 1 / -1;
        height: 80px;
        width: 100%;
    }
}

.project-post {
    display: flex;
    justify-content: center;
    width: 100%;
    transition: opacity 0.3s ease;
}

.post-content {
    width: var(--img-width, 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.post-content img {
    width: 100%;
    height: auto;
    display: block;
    cursor: grab;
    transition: transform 0.2s ease;
}

.project-post:active img {
    cursor: grabbing;
}

.project-post.is-dragged {
    position: absolute;
    z-index: 6000;
    opacity: 0.8;
    cursor: grabbing !important;
    /* shadow removed to avoid trailing artifacts */
    pointer-events: none; 
}

.drag-placeholder {
    visibility: hidden;
}

.project-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 400; 
    font-size: 10px;
    letter-spacing: 0.1em;
    padding-top: 8px;
}

.project-title::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='black' stroke-width='2'%3E%3Cpath d='M13 4l8 8-8 8M3 12h18' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0;
    transform: translateX(-3px);
    transition: all 0.3s ease-in-out;
}

.project-post:hover .project-title::after {
    opacity: 1;
    transform: translateX(0);
}

/* --- 5. GALLERY MODES --- */
#project-gallery[data-mode="1"] { --grid-gap-v: 3%; --grid-gap-h: 0px; --grid-padding: 10%; }
#project-gallery[data-mode="1"] .v-img { --img-width: 30%; }
#project-gallery[data-mode="1"] .h-img { --img-width: 70%; }
#project-gallery[data-mode="1"] .s-img { --img-width: 50%; }

#project-gallery[data-mode="2"] { --grid-gap-v: 7%; --grid-gap-h: 10%; --grid-padding: 10%; }
#project-gallery[data-mode="2"] .v-img { --img-width: 60%; }
#project-gallery[data-mode="2"] .h-img { --img-width: 100%; }
#project-gallery[data-mode="2"] .s-img { --img-width: 80%; }

#project-gallery[data-mode="3"] { --grid-gap-v: 10%; --grid-gap-h: 10%; --grid-padding: 10%; }
#project-gallery[data-mode="3"] .v-img { --img-width: 70%; }
#project-gallery[data-mode="3"] .h-img { --img-width: 100%; }
#project-gallery[data-mode="3"] .s-img { --img-width: 85%; }

#project-gallery[data-mode="4"] { --grid-gap-v: 15%; --grid-gap-h: 10%; --grid-padding: 10%; }
#project-gallery[data-mode="4"] .v-img { --img-width: 60%; } 
#project-gallery[data-mode="4"] .h-img { --img-width: 100%; } 
#project-gallery[data-mode="4"] .s-img { --img-width: 80%; }

#project-gallery[data-mode="5"] { --grid-gap-v: 20%; --grid-gap-h: 10%; --grid-padding: 10%; }
#project-gallery[data-mode="5"] .v-img { --img-width: 50%; }
#project-gallery[data-mode="5"] .h-img { --img-width: 100%; }
#project-gallery[data-mode="5"] .s-img { --img-width: 70%; }

@media (min-width: 769px) {
    #project-gallery[data-mode="4"],
    #project-gallery[data-mode="5"] {
        align-items: end;
    }
}

/* --- 6. CAROUSEL OVERLAY --- */
#carousel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8002;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.carousel-hidden {
    opacity: 0;
    pointer-events: none;
}

.carousel-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(237, 237, 237, 0.8);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 8001;
}

.carousel-main {
    flex-grow: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#carousel-img {
    max-width: 80%;
    max-height: calc(100vh - 190px);
    margin-top: 18px;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.1s ease-out;
}

#carousel-img.zoomed {
    transform: scale(1.8);
    max-width: 100%;
    max-height: 100vh;
    margin-top: 0;
    position: relative;
    transform-origin: center center;
    cursor: zoom-out;
    z-index: 12050;
}

#carousel-img.portrait-carousel-img {
    max-height: calc(100vh - 190px);
}

.zoom-active #carousel-dots,
.zoom-active .carousel-exit,
.zoom-active .nav-arrow {
    opacity: 0;
    pointer-events: none;
}

#carousel-overlay.zoom-active {
    z-index: 12060;
}

.zoom-active .carousel-container {
    z-index: 12061;
}

.zoom-active .carousel-main {
    overflow: visible;
}

.carousel-controls-idle .carousel-exit,
.carousel-controls-idle .nav-arrow {
    opacity: 0;
    pointer-events: none;
}

.carousel-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #000;
    border-top-color: transparent;
    border-radius: 50%;
    animation: carousel-spin 0.8s linear infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 8004;
    transition: opacity 0.2s ease;
}

.carousel-loader.show {
    opacity: 1;
}

@keyframes carousel-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* --- 7. INFO BOX (INSIDE CAROUSEL) --- */
.info-box {
    width: 80%;
    max-height: 80vh;
    background: #fff;
    display: grid;
    grid-template-columns: 2fr 3fr; 
    padding: 60px;
    gap: 40px;
    text-align: left;
    overflow: hidden;
}

.info-left h2 { font-size: 28px; margin-bottom: 5px; font-weight: 500;}
.info-left h3 { font-size: 10px; margin-bottom: 40px; font-weight: 500;}
.info-left p { display: flex; margin-bottom: 10px; font-size: 10px; letter-spacing: 0.1em; }
.info-left p strong { width: 84px; display: inline-block; flex-shrink: 0; font-weight: 400; }

.team-link {
    text-decoration: underline !important;
    display: inline;
    white-space: normal;
    transition: color 0.2s;
}
.info-box .info-left p,
.mobile-expanded-view .info-left p {
    position: relative;
    display: block;
    padding-left: 100px;
}
.info-box .info-left p strong,
.mobile-expanded-view .info-left p strong {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    display: block;
    font-weight: 400;
}
.info-box a,
.mobile-expanded-view a {
    text-decoration: underline !important;
    display: inline;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
    transition: color 0.2s;
}
.info-box a:hover,
.mobile-expanded-view a:hover {
    color: grey;
}
.carousel-team-link { cursor: pointer; }

.info-right { 
    font-size: 14px; 
    line-height: 1.6; 
    height: 70vh;
    overflow-y: auto;
    position: relative; 
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
}

.info-right::-webkit-scrollbar { display: none; }

.info-right::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,1));
    pointer-events: none;
    z-index: 10;
}

.text-wrapper {
    position: relative;
    width: 100%;
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.7s ease-in-out;
    flex-shrink: 0;
    padding-bottom: 20px;
}

.text-wrapper.expanded { max-height: 10000px; }

.read-more-btn {
    position: relative;
    z-index: 20;
    margin-top: 15px;
    font-size: 10px;
    cursor: pointer;
    text-decoration: underline;
    align-self: flex-start;
}

/* --- 8. CAROUSEL UI --- */
.carousel-ui {
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 24px;
    gap: 10px;
}

.dots-container { display: flex; gap: 8px; }
.dot { width: 4px; height: 4px; background: #ccc; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { background: #000; }

.carousel-exit {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 8003;
    transition: opacity 0.3s;
}

.carousel-exit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    transform: translate(-50%, -50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='square'%3E%3Cpath d='M5 5L19 19M19 5L5 19'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 8003;
    transition: opacity 0.3s;
    width: 20px;
    height: 20px;
}

.nav-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 0;
    border-color: #000;
}

.nav-left::before {
    border-left-width: 3px;
    border-bottom-width: 3px;
}

.nav-right::before {
    border-right-width: 3px;
    border-top-width: 3px;
}

.nav-left { left: 20px; }
.nav-right { right: 20px; }

/* --- 9. INFO PAGE --- */
#info-page {
    display: none; 
    width: 50%;
    max-width: 800px;
    padding: 60px 20px 90px;
    font-size: var(--info-font-size);
    line-height: var(--info-line-height);
    letter-spacing: var(--info-letter-spacing);
}

.info-mode #project-gallery { display: none !important; }
.info-mode #info-page { display: block; }

@media (max-width: 768px) {
    .info-mode #info-page {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        max-width: none;
        overflow-y: auto;
        padding-bottom: 20px;
        z-index: 8000;
        background-color: rgb(237, 237, 237);
    }

    .info-mode .logo,
    .info-mode .info {
        z-index: 8100;
    }
}

.info-header { font-size: 28px; font-weight: 400; margin: 60px 0 30px; }

#info-page p, #info-page h4, .team-names { margin-left: 60px; }

#info-page h4 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 200;
}

#info-page a {
    text-decoration: underline !important;
    display: inline;
    white-space: normal;
    transition: color 0.2s;
}
#info-page a:hover { color: grey; }

.team-names { 
    line-height: 1.5; 
    margin-bottom: 30px;
    min-height: var(--team-list-min-height, 120px);
    height: auto;
    overflow: visible;
}

.team-member-trigger { 
    display: inline-block;
    margin-right: 8px;
    transition: text-shadow 0.4s, color 0.4s;
}

.team-member-trigger.active, .team-member-trigger:hover {
    text-shadow: 
        -0.2px -0.2px 0 currentColor,
        0.2px -0.2px 0 currentColor,
        -0.2px 0.2px 0 currentColor,
        0.2px 0.2px 0 currentColor;
}

#hover-preview-img {
    position: fixed; 
    width: 100px; height: 130px;
    object-fit: cover;
    pointer-events: none; 
    z-index: 10005; 
    transition: opacity 0.2s;
}

#hover-preview-img.is-icon-preview {
    width: 85px;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.label { display: inline-block; width: 90px; }

/* --- 10. TOOLS & FOOTER --- */
.drawing-layer {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    /* removed crisp-edges to allow smoother strokes while remaining sharp */
}

body.drawing-active .drawing-layer {
    pointer-events: auto;
}

#footer-ticker {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.1em;
    z-index: 10002;
}

/* controls for drawing mode */
#draw-controls {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

body.drawing-active #draw-controls {
    display: block;
}

#exit-draw, #erase-draw {
    position: fixed;
    bottom: 40px;
    background: none;
    font-family: "Helvetica", Arial, sans-serif;
    font-weight: 500;
    font-size: 28px;
    cursor: pointer;
    z-index: 10003;
    border: none;
    box-shadow: none;
    pointer-events: auto;
}

#exit-draw { left: 20px; }
#erase-draw { right: 20px; }

#footer-ticker .footer-action {
    cursor: pointer;
    text-decoration: none;
}

#footer-ticker .footer-action:hover {
    text-decoration: underline;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    z-index: 9997;
    transition: opacity 0.6s ease;
}

body.drawing-preview::before,
body.drawing-active::before {
    opacity: 1;
}

body.exiting::before {
    opacity: 0 !important;
}

/* Keep logo/info crisp above blur but non-interactive while drawing */
body.drawing-active .logo,
body.drawing-active .info {
    z-index: 10004;
}

/* ensure no horizontal overflow anywhere */
body { overflow-x: hidden; }

body.drawing-active {
    cursor: crosshair;
}



/* ticker always visible now - no hide class needed */
.ticker-hidden { opacity: 0; visibility: hidden; }
.sep { opacity: 0; }

@keyframes tickerSubtleJump {
    0%, 100% { transform: translateY(0); }
    35% { transform: translateY(-4px); }
    70% { transform: translateY(0); }
}

#footer-ticker span {
    display: inline-block;
    will-change: transform;
}

#footer-ticker span.ticker-jump {
    animation: tickerSubtleJump 0.52s ease;
}


/* --- 11. MOBILE --- */
@media (max-width: 768px) {
    #footer-ticker { display: none; }
    .info::after { display: none; }

    #project-gallery {
        grid-template-columns: 1fr;
        --grid-gap-v: 140px !important;
        --grid-padding: 20px !important;
    }
    .post-content, .post-content img { width: 100% !important; }
    #info-page {
        width: 90%;
        max-width: none;
    }

    #info-page p, #info-page h4, .team-names {
        margin-left: 30px;
    }

    #info-page .label {
        width: 84px;
        flex-shrink: 0;
    }

    #info-page p:has(.label) {
        display: flex;
        align-items: flex-start;
    }

    #info-page p:has(.label) > :not(.label) {
        flex: 1;
        min-width: 0;
    }

    /* Mobile project-opened view spacing */
    .mobile-expanded-view {
        margin-top: calc(var(--grid-padding) - var(--grid-gap-v));
    }

    .mobile-expanded-view .info-left p {
        margin-bottom: 20px;
        line-height: 1.0;
    }

    .mobile-expanded-view .info-left p strong {
        width: 84px;
    }

    .mobile-expanded-view .info-left br {
        display: block;
        margin-bottom: 20px;
    }

    .mobile-expanded-view .info-left {
        margin-bottom: 36px;
    }

    .mobile-expanded-view .info-right {
        margin-bottom: 36px;
    }

    .mobile-expanded-view .mobile-read-more-btn {
        font: inherit;
        letter-spacing: inherit;
        text-decoration: underline;
        border: none;
        background: none;
        color: inherit;
        padding: 0;
        margin-top: 4px;
    }

    .mobile-expanded-view .mobile-info-content .info-right {
        margin-bottom: 0;
    }

    .mobile-expanded-view .mobile-info-content .info-right p:last-child {
        margin-bottom: 0;
    }

    .mobile-expanded-view .info-left p:last-of-type {
        margin-bottom: 10px;
    }

    .mobile-expanded-view .info-left h2 {
        font-family: "Helvetica", Arial, sans-serif;
        font-weight: 500;
        font-size: 28px;
        letter-spacing: 0;
        line-height: 1;
    }

    .mobile-expanded-view .mobile-close-btn {
        font-family: "Helvetica", Arial, sans-serif;
        font-weight: 500;
        font-size: 28px;
        line-height: 1;
        letter-spacing: 0;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    /* Hide fade gradient on mobile since read-more/read-less buttons are used */
    .mobile-expanded-view .info-right {
        height: auto;
        overflow-y: visible;
    }

    .info-right::after {
        display: none;
    }
}