.highlight {
    display: none;
    /* Hide highlights by default */
}

.highlight-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 0 calc(8vw);
}

.highlight-square {
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.highlight-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-square p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--White);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 0;
    padding-bottom: 12px;
    margin: 0;
    text-align: center;
    font-family: "Bricolage Grotesque";
}

.highlight-square:hover {
    transform: scale(1.05);
}

.highlight {
    position: relative;
}

.header-container {
    position: absolute;
    top: 12px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 42px calc(8vw);
    z-index: 10;
}

.header-container h2 {
    padding: 0;
    margin: 0;
}

.header-container img {
    cursor: pointer;
    transform: rotate(180deg);
    height: calc(3vw + 10px);
    pointer-events: all;
}

.highlight-img {
    display: block;
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.highlight p {
    margin-top: 20px;
    padding: 0 calc(8vw);
}
.soon {
    display: flex;
    justify-content: center;
}
.soon img{
    width: 50%;
}
@media only screen and (max-width: 768px) {
    .highlight-container {
        gap: 4vw;
    }
    .highlight-square {
        width: 40vw;
        height: 40vw;
    }
    .soon img{
        width: 100%;
    }
}