.drop-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .25s linear;
}

.drop-img.active {
    opacity: 1;
}

.drops-section {
    width: 100%;
    padding: 8rem 0;
    background: #000;
}

.drops-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.drops-title {
    color: #fff;
    font-size: 2rem;
    padding-bottom: 1rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
    border-bottom: 1px solid white;
    text-align: center;
}

.drops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
}

.drops-grid::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    /*background: #fff;*/
    background: linear-gradient(to bottom,transparent,#fff,transparent);
}

.drop-preview {
    position: relative;
    width: 70%;
    margin: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;

    background-size: cover;
    background-position: center;
    background: white;
}

.drop-preview::before {
    content: "VER DROP";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.10);
    transition: background 0.25s ease;
    color: #fff;

    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;

    z-index: 3;
    pointer-events: none;
}

.drop-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,1);
    z-index: 4;
    pointer-events: none;
}

.drop-preview:hover::before {
    background: rgba(0, 0, 0, 0.60);
}

.drop-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drop-subtitle {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}


@media (max-width: 768px) {
    .drops-grid::before {
        /*display: none;*/
        top: calc(50% - 0.5px);
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 1px;
        background: linear-gradient(to right, transparent, #fff, transparent);
    }

    .drops-grid{
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .drop-preview{
        width: 80%;
    }

    .drops-section{
        padding: 4rem 0;
    }
}



