.partner-card.type-3 {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 14px;
    background: var(--sponsor-card-bg, var(--card-bg, #161616));
    overflow: hidden;
    isolation: isolate;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform .35s ease;
    border: none;
    box-shadow: none;
}

.partner-card.type-3::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 12px;
    background: var(--sponsor-card-bg, var(--card-bg, #161616));
    z-index: 1;
    pointer-events: none;
}

.partner-card.type-3::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220%;
    height: 220%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%) rotate(0deg);
    background: conic-gradient(from 0deg,
            transparent 0deg,
            transparent 300deg,
            var(--site-color, rgba(255, 255, 255, .3)) 315deg,
            rgba(255, 255, 255, .85) 330deg,
            var(--text-light) 338deg,
            rgba(255, 255, 255, .85) 346deg,
            var(--site-color, rgba(255, 255, 255, .3)) 356deg,
            transparent 360deg);
    animation: sponsorBorderSweep 2s linear infinite;
    -webkit-animation: sponsorBorderSweep 2s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.partner-card.type-3 .card-logo {
    position: absolute;
    inset: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
}

.partner-card.type-3 .card-logo img {
    max-height: 50px;
    max-width: 70%;
    object-fit: contain;
    width: auto;
    height: auto;
    transform: translateY(-14px);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.partner-card.type-3 .card-info {
    position: absolute;
    bottom: 10px;
    left: 2px;
    right: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7px 12px 10px;
    gap: 3px;
    z-index: 3;
    border-radius: 0 0 12px 12px;
    transition: opacity .32s ease, transform .38s cubic-bezier(.4, 0, .2, 1);
}

.partner-card.type-3 .card-info .bonus-text {
    font-size: 12px;
    font-weight: 800;
    color: var(--success-color, #10b981);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.partner-card.type-3 .card-info .bonus-alt-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(var(--t), 0.65);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.partner-card.type-3:hover {
    transform: translateY(-4px) scale(1.02);
}

.partner-card.type-3:hover .card-logo img {
    transform: translateY(0) scale(1.22);
}

.partner-card.type-3:hover .card-info {
    opacity: 0;
    transform: translateY(16px);
}

/* Yazı yoksa logo tam ortada (üst ofset kalkar) */
.partner-card.type-3.is-logo-only .card-logo img {
    transform: translateY(0);
}

.partner-card.type-3.is-logo-only:hover .card-logo img {
    transform: scale(1.22);
}

@keyframes sponsorBorderSweep {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes sponsorBorderSweep {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .partner-card.type-3 {
        height: 110px;
    }

    .partner-card.type-3 .card-info {
        bottom: 30px;
    }

    .partner-card.type-3 .card-logo img {
        max-height: 25px;
        max-width: 80%;
        transform: translateY(-50px);
    }

    .partner-card.type-3:hover .card-logo img {
        transform: translateY(0) scale(1.18);
    }

    .partner-card.type-3.is-logo-only .card-logo img {
        transform: translateY(0);
    }

    .partner-card.type-3.is-logo-only:hover .card-logo img {
        transform: scale(1.18);
    }
}

@media (max-width: 480px) {
    .partner-card.type-3 {
        height: 140px;
    }
}

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

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