/* ===========================================
   PARTNER & WINNER SECTION - REACT-INSPIRED
   Exakt nach dem React-Component Design
   =========================================== */

/* Tailwind-like Utility Classes */
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.bg-\[\#f5f7fb\] { background-color: #f5f7fb; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.rounded-full { border-radius: 9999px; }
.rounded-3xl { border-radius: 1.5rem; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.underline-offset-2 { text-underline-offset: 2px; }
.text-white { color: white; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-amber-700 { color: #b45309; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-amber-200 { background-color: #fde68a; }
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-slate-200 { border-color: #e2e8f0; }
.relative { position: relative; }
.absolute { position: absolute; }
.z-10 { z-index: 10; }
.hidden { display: none; }
.overflow-x-auto { overflow-x: auto; }
.scroll-smooth { scroll-behavior: smooth; }
.scrollbar-none::-webkit-scrollbar { display: none; }
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.p-6 { padding: 1.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.flex-shrink-0 { flex-shrink: 0; }

/* Gradient Backgrounds */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-blue-500 {
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0));
}

.to-amber-300 {
    --tw-gradient-to: #fcd34d;
}

.from-\[\#f7fafc\] {
    --tw-gradient-from: #f7fafc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 250, 252, 0));
}

.to-\[\#eef3fb\] {
    --tw-gradient-to: #eef3fb;
}

/* Transform Utilities */
.-translate-y-1\/2 {
    transform: translateY(-50%);
}

.top-1\/2 {
    top: 50%;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

/* Media Queries */
@media (min-width: 768px) {
    .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .md\:h-12 { height: 3rem; }
    .md\:w-12 { width: 3rem; }
    .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
    .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
    .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
    .md\:w-\[230px\] { width: 230px; }
    .md\:flex { display: flex; }
}

/* Partner Cards - React Style */
.partner-card-new {
    flex-shrink: 0;
    width: 210px;
}

@media (min-width: 768px) {
    .partner-card-new {
        width: 230px;
    }
}

.partner-card-inner-new {
    height: 100%;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(to bottom right, #f7fafc, #eef3fb);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    transition: all 0.2s ease;
}

.partner-card-new:hover .partner-card-inner-new {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.partner-icon-box-new {
    margin-bottom: 1rem;
}

.partner-icon-inner-new {
    height: 3.5rem;
    width: 3.5rem;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.partner-text-new {
    text-align: center;
}

.partner-name-new {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
    color: #1e293b;
}

@media (min-width: 768px) {
    .partner-name-new {
        font-size: 1rem;
    }
}

.partner-subtitle-new {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .partner-subtitle-new {
        font-size: 0.875rem;
    }
}

/* Container Max Width */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* Smooth Scroll for Touch Devices */
#partnersScrollNew {
    -webkit-overflow-scrolling: touch;
}

/* Dark Mode Support */
.dark .bg-\[\#f5f7fb\] {
    background-color: #1e293b;
}

.dark .text-slate-500 {
    color: #94a3b8;
}

.dark .text-slate-600 {
    color: #cbd5e1;
}

.dark .border-slate-200 {
    border-color: #334155;
}

.dark .from-\[\#f7fafc\] {
    --tw-gradient-from: #1e293b;
}

.dark .to-\[\#eef3fb\] {
    --tw-gradient-to: #334155;
}

.dark .partner-card-inner-new {
    background: linear-gradient(to bottom right, #1e293b, #334155);
}

.dark .partner-icon-inner-new {
    background: #334155;
}

.dark .partner-name-new {
    color: #f1f5f9;
}
