.marquee-block {
    background: #e9f0ec;
    overflow: hidden;
    padding: 18px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    padding-top: 120px;
    padding-bottom: 120px;
    animation: marquee-move 28s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 34px;
    padding-right: 34px;
    white-space: nowrap;
}

.marquee-content span {
    color: transparent;
    -webkit-text-stroke: 1.3px rgba(25, 33, 29, 0.42);
    text-stroke: 1.3px rgba(25, 33, 29, 0.42);
    font-size: clamp(38px, 5.6vw, 74px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.3px;
    display: inline-flex;
    align-items: center;
    gap: 26px;
    transition: color 0.2s ease, -webkit-text-stroke 0.2s ease;
    cursor: pointer;
}

.marquee-content span:hover {
    color: #181a17;
    -webkit-text-stroke: 0;
    text-stroke: 0;
}

.marquee-content span::after {
    content: "✱";
    color: #448C74;
    -webkit-text-stroke: 0;
    text-stroke: 0;
    font-size: 0.72em;
    font-weight: 700;
}

.marquee-content span:last-child::after {
    content: "";
}

@keyframes marquee-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    .marquee-block {
        padding: 12px 0;
    }

    .marquee-track {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .marquee-content,
    .marquee-content span {
        gap: 20px;
    }

    .marquee-content span {
        -webkit-text-stroke: 1px rgba(25, 33, 29, 0.42);
        text-stroke: 1px rgba(25, 33, 29, 0.42);
    }
}
