body {
    margin: 0;
    padding: 0;
    font-family: 'Altone Trial', sans-serif;
    color: white;
}

@font-face {
    font-family: 'Altone Trial';
    src: url('../asset/fonts/Altone\ Trial-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Altone Trial Bold';
    src: url('../asset/fonts/Altone\ Trial-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Altone Trial Oblique';
    src: url('../asset/fonts/Altone\ Trial-Oblique.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Altone Trial Bold Oblique';
    src: url('../asset/fonts/Altone\ Trial-BoldOblique.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Rafaella';
    src: url('../asset/fonts/fonnts.com-Rafaella-.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rafaella Shadow';
    src: url('../asset/fonts/fonnts.com-Rafaella-Shadow-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rafaella Shadow Bold';
    src: url('../asset/fonts/fonnts.com-Rafaella-Shadow-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

.main-navbar .dropdown-menu {
    display: block !important; 
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: linear-gradient(to bottom, #2e0066, #4c1d5f);
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border-radius: 12px;
    padding: 15px 0;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 99999; 

    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
}

.dropdown-item {
    display: inline-block; 
    width: auto; 
    color: white;
    text-decoration: none;
    padding: 12px 15px; 
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 0; 
}

.dropdown.show .dropdown-menu,
.dropdown:hover .dropdown-menu { 
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.show .dropdown-arrow,
.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.main-navbar {
    z-index: 1050; 
}

.navbar,
.navbar-nav,
.dropdown-menu {
    z-index: 1000 !important;
}

.artopia-head {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artopia-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.buttons {
    background-image: linear-gradient(to bottom, #55bc27, #c5dd2f);
    width: 100%;
    padding: 40px 0;
    box-sizing: border-box;
    margin-top: 0;
    position: relative;
    z-index: 1;
    border-radius: 0;
}

.button-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.button-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.main-button {
    font-size: 4em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease,
        box-shadow 0.3s ease;

    --button-target-width: 800px;
    min-width: var(--button-target-width);
    max-width: var(--button-target-width);
    border-radius: 12px;
    flex-shrink: 0;
    text-align: center;
    box-sizing: border-box;
    background-image: linear-gradient(to bottom, #edb660, #f2e669);
    border: 4px solid #c99939;

    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-c {
    padding: 0px 35px;
    font-size: 4em;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease,
        box-shadow 0.3s ease;
    border-radius: 12px;
    flex-shrink: 0;
    text-align: center;
    box-sizing: border-box;
}

.main-button.button-row-1 {
    padding-top: 0;
    padding-bottom: 0;
}

.main-button.button-row-3 {
    padding-top: 0;
    padding-bottom: 0;
}

.button-row .main-button {
    background-color: transparent;
    color: #2f4858;
}

.two-button-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: var(--button-target-width);
}

.two-button-wrapper .main-button {
    min-width: auto;
    max-width: none;
    flex-basis: calc((var(--button-target-width) - 10px) / 2);
    flex-grow: 1;
    padding: 18px 10px;
    font-size: 1.8em;
    height: auto;
}

.two-button-wrapper .main-button i {
    margin-right: 8px;
}

.secondary-color-row .main-button.left {
    background-image: linear-gradient(to bottom, #FB962F, #E5EF47);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.secondary-color-row .main-button.left:hover {
    background-image: linear-gradient(to bottom, #FB962F, #E5EF47);
    transform: translateY(-3px);
    box-shadow: none;
}

.secondary-color-row .main-button.right {
    background-image: linear-gradient(to bottom, #1277D5, #45D3F7);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.secondary-color-row .main-button.right:hover {
    background-image: linear-gradient(to bottom, #1277D5, #45D3F7);
    transform: translateY(-3px);
    box-shadow: none;
}

.button-row.full-width-row {
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
}

.button-row.full-width-row .main-button {
    flex-grow: 0;
    flex-shrink: 0;
    padding: 18px 10px;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    cursor: default;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    gap: 0;
    width: 100%;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    color: #2f4858;
    font-weight: bold;
    text-align: center;
    position: relative;
    flex: 0 1 auto;
}

.colon {
    margin: 0 5px;
    font-size: 2em;
    color: #2f4858;
    font-weight: bold;
    align-self: center;
    line-height: 1;
}

.countdown-value {
    font-size: 2em;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    background-image: linear-gradient(to bottom, #edb660, #f2e669);
    border-radius: 12px;
    border: 4px solid #c99939;
    padding: 0px 12px;
}

.countdown-label {
    font-size: 0.5em;
    margin-bottom: 5px;
    text-transform: uppercase;
    line-height: 1;
}

.deadline-info {
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    color: #2f4858;
    font-size: 0.7em;
    font-weight: bold;
    flex-wrap: nowrap;
    text-align: center;
    width: 100%; 
    box-sizing: border-box;
}

.deadline-info > div {
    display: flex; 
    align-items: center; 
    white-space: nowrap; 
}

.deadline-info i {
    font-size: 1em;
    color: #c99939;
    margin-right: 10px;
}

.deadline-date,
.deadline-time {
    line-height: 1; 
    font-size: 0.8em;
}

.about-us-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    cursor: default;
}

.about-us-title {
    font-size: 1em;
    font-family: 'Rafaella', sans-serif;
    font-weight: bold;
    color: #2f4858;
    margin-top: 0;
    position: relative;
}

.about-us-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: #2f4858;
    border-radius: 2px;
}

.about-us-text {
    font-size: 0.4em;
    font-weight: normal;
    color: #2f4858;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 20px;
}

.background-waves {
    width: 100%;
    height: calc(50vh + 80px);
    overflow: hidden;
    background: linear-gradient(to bottom, #c5dd2f, #d3e53c);
    display: flex;
    flex-direction: column;
}

.sky {
    background: linear-gradient(to bottom, #c5dd2f, #d3e53c);
    height: 50vh;
    width: 100%;
    position: relative;
    flex-grow: 1;
}

.sky svg {
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.ocean {
    height: 80px;
    width: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.ocean-wave {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 45'%3E%3Cpath d='M800 56.9c-155.5 0-204.9-50-405.5-49.9-200 0-250 49.9-394.5 49.9v31.8h800v-.2-31.6z' fill='%23DCE53C'/%3E%3C/svg%3E");
    position: absolute;
    width: 200%;
    height: 100%;
    bottom: 0;
    top: auto;
    background-size: 50% 100%;
    background-repeat: repeat-x;
}

.ocean-wave.wave-1 {
    left: 0;
    animation: oceanWaveAnimation1 100s linear infinite;
}

.ocean-wave.wave-2 {
    animation: oceanWaveAnimation2 30s linear infinite;
    opacity: 0.8;
}

.ocean-wave.wave-3 {
    animation: oceanWaveAnimation3 10s linear infinite;
    opacity: 0.4;
}

@keyframes oceanWaveAnimation1 {
    0% {
        transform: scaleY(1.2) translateX(0);
    }
    100% {
        transform: scaleY(1.2) translateX(-50%);
    }
}

@keyframes oceanWaveAnimation2 {
    0% {
        transform: scaleY(1.2) translateX(0);
    }
    100% {
        transform: scaleY(1.2) translateX(50%);
    }
}

@keyframes oceanWaveAnimation3 {
    0% {
        transform: scaleY(1.2) translateX(0);
    }
    100% {
        transform: scaleY(1.2) translateX(-50%);
    }
}

.timli {
    background-image: linear-gradient(to bottom, #d3e53c, #d9e842);
    width: 100%;
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

.timli-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin-bottom: 30px;
}

.timeline {
    background-image: linear-gradient(to bottom, #d9e842, #fefa8f);
    width: 100%;
    padding: 60px 0;
    box-sizing: border-box;
    margin-top: 0;
    position: relative;
    z-index: 1;
    border-radius: 0;
    overflow: hidden;
    min-height: auto;

    display: grid;
    align-content: center;
    gap: 2rem;
    padding: 2rem;
}

ul {
    --col-gap: 2rem;
    --row-gap: 10rem;
    --line-w: 0.5rem;
    display: grid;
    grid-template-columns: var(--line-w) 1fr;
    grid-auto-columns: max-content;
    column-gap: var(--col-gap);
    list-style: none;
    width: min(60rem, 90%);
    margin-inline: auto;
    position: relative;
    --progress-height: 0%;
}

ul::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 7; 
    background: rgb(225, 225, 225);
    border-radius: calc(var(--line-w) / 2);
    position: absolute; 
    top: 0;
    left: calc(var(--line-w) / 2); 
    width: var(--line-w);
    height: 100%; 
    z-index: 1;
}

ul::after {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 7; 
    background: #007bff; 
    border-radius: calc(var(--line-w) / 2);
    position: absolute; 
    top: 0;
    left: calc(var(--line-w) / 2); 
    width: var(--line-w);
    height: var(--progress-height); 
    z-index: 2; 
    transition: height 0.1s linear; 
}

ul li {
    grid-column: 2;
    --inlineP: 1.5rem;
    margin-inline: var(--inlineP);
    grid-row: span 2;
    grid-template-rows: min-content 1fr;
    margin-bottom: var(--row-gap);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    position: relative; 
    z-index: 3; 
}

ul li.timeline-item-reveal {
    opacity: 1;
    transform: translateY(0);
}

ul li.timeline-item-revealed {
    opacity: 1;
    transform: translateY(0);
}

ul li:nth-child(1).timeline-item-reveal {
    transition-delay: 0.1s;
}
ul li:nth-child(2).timeline-item-reveal {
    transition-delay: 0.3s;
}
ul li:nth-child(3).timeline-item-reveal {
    transition-delay: 0.5s;
}
ul li:nth-child(4).timeline-item-reveal {
    transition-delay: 0.7s;
}
ul li:nth-child(5).timeline-item-reveal {
    transition-delay: 0.9s;
}
ul li:nth-child(6).timeline-item-reveal {
    transition-delay: 1.1s;
}
ul li:nth-child(7).timeline-item-reveal {
    transition-delay: 1.3s;
}

ul li .date {
    --dateH: 3rem;
    height: var(--dateH);
    margin-inline: calc(var(--inlineP) * -1);

    text-align: center;
    background-color: var(--accent-color);

    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;

    display: grid;
    place-content: center;
    position: relative;

    border-radius: calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0 0;
}

ul li .date::before {
    content: "";
    width: var(--inlineP);
    aspect-ratio: 1;
    background: var(--accent-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
    position: absolute;
    top: 100%;

    clip-path: polygon(0 0, 100% 0, 0 100%);
    right: 0;
}

ul li .date::after {
    content: "";
    position: absolute;
    width: 1.8rem;
    aspect-ratio: 1;
    background: var(--accent-color);
    border: 0.3rem solid var(--accent-color);
    border-radius: 50%;
    top: 50%;

    transform: translate(50%, -50%);
    right: calc(100% + var(--col-gap) + var(--line-w) / 2);
    z-index: 3;
}

ul li .content-box {
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 1rem 1.5rem;
    margin-inline: calc(var(--inlineP) * -1);
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

ul li .content-box .title {
    padding-block-start: 0;
    font-weight: 600;
    font-size: 1.4rem;
    line-height: 1.3;
    border-radius: 0;
    color: #342404;
}

ul li .content-box .title::before {
    display: none;
}

@media (min-width: 40rem) {
    ul {
        grid-template-columns: 1fr var(--line-w) 1fr;
    }
    ul::before {
        grid-column: 2;
        left: auto; 
    }
    ul::after {
        grid-column: 2;
        left: auto; 
    }
    ul li:nth-child(odd) {
        grid-column: 1;
        grid-template-rows: min-content 1fr;
    }
    ul li:nth-child(even) {
        grid-column: 3;
        grid-template-rows: min-content 1fr;
    }

    ul li:nth-child(2) {
        grid-row: 2/4;
    }

    ul li .date {
        border-radius: calc(var(--dateH) / 2) calc(var(--dateH) / 2) 0 0;
    }

    ul li .content-box {
        border-radius: 0 0 0.75rem 0.75rem;
    }

    ul li:nth-child(odd) .date::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%);
        right: 0;
        left: auto;
    }

    ul li:nth-child(even) .date::before {
        content: "";
        width: var(--inlineP);
        aspect-ratio: 1;
        background: var(--accent-color);
        background-image: linear-gradient(rgba(0, 0, 0, 0.2) 100%, transparent);
        position: absolute;
        top: 100%;

        clip-path: polygon(0 0, 0 100%, 100% 100%);
        left: 0;
        right: auto;
    }

    ul li:nth-child(odd) .date::after {
        transform: translate(-50%, -50%);
        left: calc(100% + var(--col-gap) + var(--line-w) / 2);
        right: auto;
    }

    ul li:nth-child(even) .date::after {
        transform: translate(50%, -50%);
        right: calc(100% + var(--col-gap) + var(--line-w) / 2);
        left: auto;
    }

    ul li:last-child {
        margin-bottom: 0;
    }

    ul li .content-box .title::before,
    ul li .content-box .descr::before {
        display: none;
    }
}

.left-attached-image {
    position: absolute;
    left: 0;
    bottom: 40%;
    transform: translateY(100%);
    width: 150px;
    height: auto;
    z-index: -1;
}

.right-attached-image {
    position: absolute;
    right: 0;
    bottom: 60%;
    transform: translateY(100%);
    width: 150px;
    height: auto;
    z-index: -1;
}

@media (max-width: 1024px) {
    .button-layout {
        max-width: 80%;
    }

    .main-button {
        --button-target-width: 100%;
        font-size: 1.7em;
        padding: 15px 20px;
        min-width: unset;
        max-width: 100%;
    }

    .main-button.button-row-1 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .main-button.button-row-3 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .two-button-wrapper {
        width: 90%;
    }
    .two-button-wrapper .main-button {
        font-size: 1.7em;
        padding: 15px 10px;
    }

    .button-row.full-width-row {
        padding: 0 10px;
    }

    .button-icon {
        display: none;
    }

    .countdown-container {
        padding: 25px 15px;
    }
    .countdown-value {
        font-size: 1.4em;
    }
    .countdown-label {
        font-size: 0.4em;
    }
    .countdown-display {
        gap: 0;
    }
    .countdown-item {
        padding: 0 5px;
    }
    .deadline-info {
        font-size: 0.7em;
    }
    .deadline-info i {
        font-size: 0.9em;
    }

    .about-us-info {
        padding: 15px;
    }
    .about-us-title {
        font-size: 1.6em;
        margin-bottom: 8px;
    }
    .about-us-title::after {
        width: 150px; 
    }
    .about-us-text {
        font-size: 0.85em;
    }

    .timeline {
        min-height: auto;
    }

    .left-attached-image,
    .right-attached-image {
        width: 100px;
    }

    .background-waves {
        height: calc(40vh + 10px);
    }
    .ocean {
        height: 50px;
        overflow: hidden;
    }
    .sky {
        height: 40vh;
    }

    ul li .date {
        font-size: 1.2rem;
    }
    ul li .content-box .title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .buttons {
        padding: 20px 15px;
        border-radius: 0;
    }

    .button-layout {
        gap: 15px;
        max-width: 80%;
        padding: 0;
    }

    .main-button {
        --button-target-width: 100%;
        min-width: unset;
        max-width: 100%;
        width: 100%;
        font-size: 1.6em;
        padding: 10px 15px;
        border-radius: 8px;
        margin-bottom: 0;
    }

    .main-button.button-row-1 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .main-button.button-row-3 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .two-button-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
        gap: 10px;
    }

    .two-button-wrapper .main-button {
        flex-basis: calc(50% - 5px);
        width: calc(50% - 5px);
        max-width: calc(50% - 5px);
        font-size: 1.4em;
        padding: 12px 10px;

        justify-content: flex-start;
        padding-left: 15px;
        padding-right: 15px;
        text-align: left;
    }

    .two-button-wrapper .main-button span {
        flex-grow: 1;
        text-align: center;
        white-space: normal;
    }

    .button-row.full-width-row {
        justify-content: center;
        padding: 0;
    }

    .button-icon {
        display: none;
    }

    .button-row.full-width-row .main-button {
        flex-grow: 1;
        max-width: 100%;
        margin: 0;
        min-width: unset;
        width: 100%;
    }

    .countdown-container {
        padding: 15px 10px;
        width: 100%;
    }
    .countdown-display {
        gap: 0;
    }
    .countdown-item {
        padding: 0 3px;
    }
    .countdown-value {
        font-size: 1em;
        padding: 0px 8px;
    }
    .countdown-label {
        font-size: 0.4em;
    }
    .colon {
        font-size: 1.1em;
        margin: 0 3px;
    }
    .deadline-info {
        font-size: 0.6em;
        margin-top: 10px;
    }
    .deadline-info i {
        font-size: 0.9em;
    }
    .about-us-info {
        padding: 15px 10px;
        width: 100%;
    }
    .about-us-title {
        font-size: 1.2em;
        margin-bottom: 5px;
    }
    .about-us-title::after {
        width: 75px; 
        height: 3px;
    }
    .about-us-text {
        font-size: 0.75em;
        max-width: 100%;
    }
    .timeline {
        padding: 40px 0;
        min-height: auto;
        background-size: auto;
        background-position: unset;
    }
    .left-attached-image,
    .right-attached-image {
        width: 60px;
    }
    .ocean {
        height: 50px;
        overflow: hidden;
    }
    .sky {
        height: 40vh;
    }
    ul {
        --row-gap: 3rem;
    }
    ul li .date {
        font-size: 1.1rem;
    }
    ul li .content-box .title {
        font-size: 0.9rem;
    }
    ul::before,
    ul::after {
        grid-row: 1 / span 14; 
    }
}

@media (max-width: 480px) {
    .buttons {
        padding: 15px 10px;
    }
    .main-button {
        font-size: 1.4em;
        padding: 10px 10px;
    }
    .two-button-wrapper .main-button {
        font-size: 1.05em;
        padding: 10px 10px;
        flex-basis: calc(50% - 5px);
        width: calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    .countdown-container {
        padding: 10px 5px;
        width: 100%;
    }
    .countdown-display {
        gap: 0;
    }
    .countdown-item {
        padding: 0 2px;
    }
    .countdown-value {
        font-size: 0.8em;
        padding: 0px 6px;
        border-width: 2px;
    }
    .countdown-label {
        font-size: 0.2em;
        margin-top: 3px;
    }
    .colon {
        font-size: 1em;
        margin: 0 2px;
    }
    .deadline-info {
        font-size: 0.45em;
        gap: 20px;
    }
    .deadline-info i {
        font-size: 0.8em;
    }
    .about-us-info {
        padding: 10px;
        width: 100%;
    }
    .about-us-title {
        font-size: 1em;
    }
    .about-us-text {
        font-size: 0.7em;
    }
    .timeline {
        padding: 30px 0;
    }
    .background-waves {
        height: auto; 
        min-height: 200px; 
    }
    .sky {
        height: auto; 
        min-height: 120px; 
    }
    .sky svg {
        height: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        object-fit: cover; 
    }
    .ocean {
        height: 40px; 
    }
    .left-attached-image,
    .right-attached-image {
        width: 60px;
    }
    ul li .date {
        font-size: 1.1rem;
    }
    ul li .content-box .title {
        font-size: 1rem;
    }

    ul li .date::after {
        left: calc(((var(--inlineP) * -1) - var(--col-gap) - (var(--line-w) / 2) - (1.8rem / 2)) + 27px);
        right: auto;
        transform: translateY(-50%);
    }
}