.partner-card.type-1 {
    justify-content: flex-end;
    align-items: flex-start;
    background-color: var(--sponsor-card-bg, var(--card-bg, #161616));
}

.partner-card.type-1::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -20px;
    width: 240px;
    height: 200px;
    background: radial-gradient(circle, color-mix(in srgb, var(--site-color) 35%, transparent) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), opacity .5s ease;
    transform: translate(0, 0);
}

.partner-card.type-1:hover::before {
    transform: scale(1.2) translate(-10px, -5px);
    background: radial-gradient(circle, color-mix(in srgb, var(--site-color) 55%, transparent) 0%, transparent 70%);
}

.partner-card.type-1 .card-bg-image {
    position: absolute;
    right: -50px;
    top: 0;
    bottom: 0;
    width: 65%;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: 1;
    transform-origin: right bottom;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}

.partner-card.type-1:hover .card-bg-image {
    transform: scale(1.1);
}

.partner-card.type-1 .top {
    position: absolute;
    top: 10px;
    left: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
    transition: all 0.5s cubic-bezier(.2, .8, .2, 1);
    transform: translateY(0);
}

.partner-card.type-1:hover .top {
    top: 50%;
    transform: translateY(-50%) scale(1.1);
}

.partner-card.type-1 .top img {
    height: auto;
    max-height: 25px;
    max-width: 140px;
    object-fit: contain;
}

.partner-card.type-1 .top .heart {
    display: none;
}

.partner-card.type-1 .bottom {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 5px;
    transition: transform 0.5s cubic-bezier(.2, .8, .2, 1), opacity 0.4s ease;
    transform: translateY(0);
    opacity: 1;
}

.partner-card.type-1:hover .bottom {
    transform: translateY(120%);
    opacity: 0;
}

.partner-card.type-1 .bottom h1 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.partner-card.type-1 .bottom h1 b {
    color: var(--site-color);
    font-weight: 800;
    margin-right: 4px;
}

.partner-card.type-1 .bottom .button.primary {
    background-color: var(--site-color);
    color: var(--text-on-accent, #000);
    font-weight: 800;
    font-size: 12px;
    border: none;
    border-radius: 10px;
    padding: 6px 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 2px;
}

.partner-card.type-1 .bottom .button.primary:hover {
    background-color: color-mix(in srgb, var(--site-color) 85%, #000);
}

@media (max-width: 768px) {
    .partner-card.type-1 {
        height: auto !important;
        min-height: 180px;
        aspect-ratio: 4 / 5;
        padding: 16px 8px;
        justify-content: flex-start;
        align-items: center;
        overflow: hidden;
        flex-direction: column;
    }

    .partner-card.type-1 .top {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        display: flex;
        justify-content: center;
        width: 100%;
        z-index: 2;
        margin-bottom: 8px;
    }

    .partner-card.type-1 .top img {
        max-height: 32px;
        max-width: 90%;
        object-fit: contain;
    }

    .partner-card.type-1 .bottom {
        position: relative;
        transform: none !important;
        opacity: 1 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        z-index: 2;
    }

    .partner-card.type-1 .bottom h1 {
        font-size: 11px;
        text-align: center;
        line-height: 1.3;
        margin: 0;
    }

    .partner-card.type-1 .bottom h1 b {
        display: block;
        color: var(--site-color);
        margin: 0 0 2px 0;
    }

    .partner-card.type-1 .bottom .tags,
    .partner-card.type-1 .bottom .button {
        display: none !important;
    }

    .partner-card.type-1 .card-bg-image {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        height: 55%;
        background-position: center bottom;
        background-size: contain;
        transform: none !important;
        z-index: 1;
    }
}

.sponsors-grid.type-1 {
    --gap: 15px;
}

@media (max-width: 768px) {
    .sponsors-grid.type-1 {
        --gap: 10px;
    }
}

@media (max-width: 480px) {
    .sponsors-grid.type-1 {
        /* mob-cols admin ayarı; 1 istenirse 1 sütun kalır */
        --cols: var(--mob-cols, 1);
    }
}
