.hero-bg {
    background: url(/public/images/banner/parners_banner.webp) center / cover !important;
}

/* ===== PARTNER LIST SECTION ===== */
.partner-list-section {
    padding: 0px 10px;
}

.partner-list-grid {
    display: flex;
    flex-direction: column;

}

/* Partner List Item */
.partner-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(20, 20, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.partner-list-item:hover {
    border-color: var(--orange);
    transform: translateX(5px);
    background: linear-gradient(90deg, rgba(232, 146, 58, 0.3) 0%, rgba(232, 146, 58, 0.1) 100%);
}

/* Partner Icon */
.partner-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
}

.partner-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-list-item:hover .partner-icon img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partner Content */
.partner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.partner-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.partner-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Partner Date */
.partner-date {
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: var(--orange);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin-top: 0px;
    margin-bottom: 10px;
}

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: var(--orange);
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-item:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.pagination-item.active {
    background: var(--orange-dark);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .partner-list-section {
        padding: 0 !important
    }

    .partner-list-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);

        align-items: stretch;
    }

    .partner-list-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 5px;
        padding: 5px !important;
        justify-content: space-between;
        justify-items: space-between;

    }

    .partner-icon {

        width: 100%;
        height: 80px;
    }

    .partner-date {

        display: none;
    }

    .partner-title {

        display: none;
    }

    .partner-subtitle {
        display: none;
    }

    .pagination {
        margin-top: 10px;
    }

    .page-layout {
        min-height: 0;
    }

}