﻿
.no-news-card {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apply-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.apply-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.apply-benefits li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.news-loading {
    background: rgba(136, 120, 204, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: #94a3b8;
}

.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
}

.faq-container {
    max-width: 100%;
}

.faq-item-custom {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.15);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-custom:hover {
    border-color: rgba(136, 120, 204, 0.28);
    box-shadow: var(--shadow-md);
}

.faq-question {
    background: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    font-family: var(--font-heading);
    user-select: none;
}

.faq-question:hover {
    background: rgba(136, 120, 204, 0.08);
    color: var(--primary-light);
}

.faq-question.active {
    background: rgba(136, 120, 204, 0.08);
    color: var(--primary-light);
    border-bottom: 1px solid rgba(136, 120, 204, 0.12);
}

.faq-icon {
    color: var(--primary-light);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 300px;
}

.faq-answer-content {
    padding: 1.5rem;
    background: transparent;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid rgba(136, 120, 204, 0.12);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 1rem;
    }
}
.partner-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.partner-slider {
    width: 100%;
    padding: 1rem 0;
}

.partner-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: pointer;
}

.partner-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
}

.partner-slide-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.1);
    width: 100%;
    max-width: 180px;
}

.partner-slide-item:hover {
    transform: translateY(-5px);
    background: rgba(136, 120, 204, 0.1);
    border-color: rgba(136, 120, 204, 0.2);
    text-decoration: none;
}

.partner-slide-logo {
    width: 100px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.partner-slide-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 6px;
    filter: brightness(0.9) grayscale(0.1);
    transition: all 0.3s ease;
}

.partner-slide-item:hover .partner-slide-logo img,
.swiper-slide-active .partner-slide-logo img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.05);
}

.partner-slide-level {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.partner-slide-level.emerald-level {
    background: linear-gradient(135deg, #10b981, #059669);
}

.partner-slide-level.diamond-level {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.partner-slide-level.eisen-level {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.no-partners-slider {
    background: rgba(136, 120, 204, 0.05);
    border: 1px solid rgba(136, 120, 204, 0.1);
    border-radius: 16px;
    padding: 2rem;
    max-width: 300px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .partner-slide-item {
        max-width: 150px;
        padding: 0.8rem;
    }
    
    .partner-slide-logo {
        width: 80px;
        height: 50px;
    }
    
    .partner-slide-level {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .partner-slide-item {
        max-width: 130px;
        padding: 0.6rem;
    }
    
    .partner-slide-logo {
        width: 70px;
        height: 45px;
    }
}