.creative-contest {
    background-color: var(--primary-color);
    background-image: url('/assets/images/2026/creative-contestbg.png');
    background-repeat: no-repeat;
    background-position: right 180px;
    /* 👈 pushes image down */
    background-size: contain;
}


.creative-contest-container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 96px 20px;
    z-index: 1;
    position: relative;
}

.creative-contest-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px;
}

.creative-contest-heading h3 {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 700;
    font-size: 56px;
    line-height: normal;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.creative-contest-heading h3 span {
    font-size: 70px;
    font-style: italic;
    color: var(--secondary-color);
    display: block;
}

.creative-contest-heading svg {
    height: 138px;
    width: 193px;
}

.creative-contest-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1325px;
}

.creative-contest-item {
    position: relative;
}

.creative-contest-item h4 {
    display: flex;
    gap: 16px;
    align-items: center;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 600;
    font-size: 34px;
    line-height: normal;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.creative-contest-item h4 svg {
    width: 24px;
    height: 24px;
}


.creative-contest-item p {
    font-family: "Instrument Sans", sans-serif;
    line-height: normal;
    font-weight: 400;
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 0;
    line-height: 140%;
    margin-bottom: 16px;
}

.creative-contest-item ul {
    list-style: none;
    padding-left: 0;
}

.creative-contest-item li {
    position: relative;
    padding-left: 20px;
    font-family: "Instrument Sans", sans-serif;
    line-height: normal;
    font-weight: 400;
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 140%;
}

.creative-contest-item li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
}

.ccnumber-list {
    list-style: none;
    counter-reset: step;
    padding-left: 0;
}

.ccnumber-list li {
    counter-increment: step;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.ccnumber-list li::before {
    content: counter(step) ".";
    position: absolute;
    left: 0;
    font-weight: 400;
    color: var(--accent-color);
    background-color: transparent;
    top: 0;
}

.ccnumber-list li a {
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
}

.social-stats {
    list-style: none;
    display: flex;
    gap: 10px;
    /* space between items */
    padding: 0;
    margin: 0;
}

.social-stats li::after {
    content: "/";
    margin-left: 10px;
}

.social-stats li:last-child::after {
    content: "";
}

.creative-contest-item .social-stats li {
    padding: 0;
}

.creative-contest-item .social-stats li::before {
    background-color: transparent;
}

@media (max-width:1300px) {
    .creative-contest-heading h3 {
        font-size: 45px;
    }

    .creative-contest-heading h3 span {
        font-size: 60px;
    }

    .creative-contest-heading svg {
        height: 101px;
        width: 143px;
    }

    .creative-contest-item h4 {
        font-size: 26px;
    }

    .creative-contest-item p {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .creative-contest-item li {
        font-size: 20px;
    }
}

@media (max-width:992px) {
    .creative-contest {
        background-image: none;
    }

    .creative-contest-container {
        padding: 30px 20px;
    }

    .creative-contest-block {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .creative-contest-heading {
        margin-bottom: 24px;
    }

    .creative-contest-heading svg {
        height: 81px;
        width: 113px;
    }

    .creative-contest-heading h3 {
        font-size: 31px;
        margin: 0;
    }

    .creative-contest-heading h3 span {
        font-size: 45px;
    }

    .creative-contest-item li::before {
        top: 11px;
    }

    .ccnumber-list li::before {
        top: 0;
    }

}

@media (max-width:480px) {
    .creative-contest-item h4 {
        font-size: 22px;
        gap: 12px;
    }

    .creative-contest-item h4 svg {
        width: 18px;
        height: 18px;
        margin-top: 6px;
    }

    .creative-contest-heading h3 {
        font-size: 25px;
    }

    .creative-contest-heading h3 span {
        font-size: 36px;
    }

    .creative-contest-item h4 {
        align-items: start;
    }
}