
.logo-gallery-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap: 15px;
}
.logo-gallery-item{
    text-align:center;
	position: relative;
	display: flex;
    align-items: center;
}
.logo-gallery-item img{
    max-width:100%;
    height:auto;
}
.logo-category-label{
    display: flex;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    position: absolute;
    right: 5px;
    top: 5px;
	align-items: center;
    gap: 5px;
    padding: 3px 10px 4px 10px;
    border-radius: 20px;
}
.logo-category-label svg{
	width: 15px;
    height: 15px;
	margin-top: 1px;
}
.logo-category-label.logo-category-platinum{
	background: linear-gradient(135deg, #1e293b, #334155, #64748b);
    color: #f1f5f9;
}
.logo-category-label.logo-category-gold{
	background: linear-gradient(135deg, #fef3c7, #fcd34d, #ca8a04);
    color: #1a1a1a;
}
.logo-category-label.logo-category-silver{
	background: linear-gradient(135deg, #e5e7eb, #cbd5e1, #94a3b8);
    color: #0f172a;
}
.logo-category-label.logo-category-platinum svg{
	fill: #ffff;
}
.logo-gallery-item a{
    display:block;
}

.logo-gallery-item img{
    display:block;
    margin:0 auto;
    max-width:100%;
    height:auto;
}
.logo-gallery-swiper{
	position: relative;
    padding-top: 65px;
    margin-top: -65px;	
}
.logo-gallery-swiper .swiper-button-prev,
.logo-gallery-swiper .swiper-button-next {
    width: 25px;
    height: 25px;
    background: #66788A;
    border-radius: 3px;
    top: 20px;
    margin-top: 0;
    color: #fff;
}

.logo-gallery-swiper .swiper-button-prev::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14.5 5L8.5 12L14.5 19' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
}

.logo-gallery-swiper .swiper-button-next::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9.5 5L15.5 12L9.5 19' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center center no-repeat;
}

.logo-gallery-swiper .swiper-button-prev::after,
.logo-gallery-swiper .swiper-button-next::after {
    display:none;
}
/* Position arrows top-right */
.logo-gallery-swiper .swiper-button-next {
    right: 0px;
}

.logo-gallery-swiper .swiper-button-prev {
    right: 30px;
    left: auto;
}

/* Hover effect */
.logo-gallery-swiper .swiper-button-prev:hover,
.logo-gallery-swiper .swiper-button-next:hover {
    background: #556677;
}