/*Flyer Listing Page CSS*/
.listing-container {}
.elementor-button-text {
    letter-spacing: 1.5px;
}
.flex-list {
      display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    justify-content: space-between;
}

.listing-item {
      flex: 0 0 calc(33.333% - 20px);
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fafafa;
    transition: transform 0.3s, box-shadow 0.3s;
}
.flex-list::after {
    content: "";
    flex: 0 0 calc(33.333% - 20px);
}
.listing-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.listing-item .featured-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
} 

.listing-item .featured-image img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.4s ease;
    object-position: top;
}

.listing-item:hover .featured-image img {
    transform: scale(1.1);
}

.details {
    padding: 15px;
    text-align: center;
}

.details h2 {
    font-size: 20px;
    margin: 0 0 15px;
    color: #333;
}

.pdf-link a {
    display: inline-block;
    padding: 10px 20px;
    background: #f7952c;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: none;
    transition: background 0.3s, box-shadow 0.3s;
}

.pdf-link a:hover {

    background: #814197;

}

.pagination {
    margin-top: 40px;
    text-align: center;
    width: auto;
    justify-content: center !important;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 18px;
    background: #fff;
    color: #813d7b;
    border: 1px solid #813d7b;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination a:hover {
    transform: translateY(-2px);
}

.pagination a.active,
.pagination a:hover {
    background: #f7952c;
    color: #fff;
    cursor: default;
    border: 1px solid #f7952c !important;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 1000px) {
    .listing-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .listing-item {
         flex: 0 0 calc(50% - 10px);
    }
	.listing-item .featured-image {
		width: 100%;
		height: 180px;
		overflow: hidden;
	}
	.details h2 {
   		font-size: 16px;
	}
}





/* Sponser Section */

.sponsor-section {
    background-color: #7B3C8D;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.sponsor-section .sponser-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.sponsor-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.sponsor-section .swiper {
    padding-bottom: 40px;
    max-width: 1900px;
}

.sponsor-section .swiper-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.sponsor-section .swiper-slide {
    background-color: #AA7EB9;
    border-radius: 10px;
    padding: 20px;
    min-width: 130px;
    max-width: 100%;
    width: auto !important;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.month-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.month-box {
    max-width: 90px;
}

.sponsor-name {
    font-weight: 600;
    font-size: 14px;
    min-height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    text-transform: capitalize;
}

.swiper-scrollbar {
    background: rgba(255, 255, 255, 0.3);
    height: 6px;
    border-radius: 3px;
}

.swiper-scrollbar-drag {
    background: #fff;
}

.bottom-bar {
    background-color: #F49B34;
    color: white;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 10px;
    font-size: 20px;
}

.bottom-bar .bottom-title {
    margin: 5px 15px;
}

@media (max-width:767px){
	.sponsor-section .sponser-title {
   		font-size: 25px;
	}
	.sponsor-section h3 {
    	font-size: 18px;
	}
	.bottom-bar { 
    	font-size: 18px; 
	}
		.bottom-bar .divider { 
		display: none;
	}
}