/**
 * Partners Listing Styles
 * 
 * Styles for the partners listing grid layout
 * with logos, titles, and descriptions
 * 
 * @package AISBKnowledgeNetworks
 * @since 1.0.0
 */

/* Partners Grid */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 0 -20px;
}

/* Partner Items */
.partner-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    padding-top: 0;
}

/* Partner Logo */
.partner-logo {
    margin-bottom: 25px;
    width: 100%;
    max-width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Partner Title */
.partner-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #2a548c;
    line-height: 31px;
    letter-spacing: -1px;
}

/* Partner Content */
.partner-content {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
    text-align: left;
}

.partner-content p {
    margin: 0 0 15px 0;
}

.partner-content p:last-child {
    margin-bottom: 0;
}

/* Partner Link */
.partner-link {
    margin-top: auto;
}

.partner-link a {
    display: inline-block;
    padding: 12px 24px;
    background: #2a548c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* No Partners Message */
.no-partner {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 40px 0;
}

.no-partner p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .partners-listing {
        margin: 40px 0;
    }
    
    .partners-grid {
        gap: 30px;
        margin: 0 -15px;
    }
    
    .partner-item {
        padding: 25px;
    }
    
    .partner-title {
        font-size: 1.4rem;
    }
    
    .partner-logo {
        max-width: 180px;
        height: 70px;
    }
    
    .partner-logo img {
        max-height: 70px;
    }
}

@media (max-width: 767px) {
    .partners-listing {
        margin: 30px 0;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 0;
    }
    
    .partner-item {
        padding: 20px;
    }
    
    .partner-title {
        font-size: 1.3rem;
    }
    
    .partner-logo {
        max-width: 160px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .partner-logo img {
        max-height: 60px;
    }
    
    .partner-content {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .partner-link a {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .partner-item {
        padding: 15px;
    }
    
    .partner-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .partner-logo {
        max-width: 140px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
    
    .partner-content {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-item {
  position: relative;
}

.partner-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 90%;
    width: 1px;
    border-right: 1px solid #000;
}

.partner-item:last-child::after {
  display: none;
}

.about-us-partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.about-us-partners-grid:last-child {
    margin-bottom: 0;
}

.about-us-partner-item-inner {
    width: 100%;
    padding: 40px;
    background-color: #fff;
    text-align: center;
    height: 210px;
    border-radius: 20px 20px 0 0;
}

.about-us-partner-title {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 39px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
    background-color: #2a528d;
    padding: 10px;
    border-radius: 0 0 20px 20px;
}

.about-us-partner-content {
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 26px;
    color: #2e2b2b;
    font-weight: 300;
    text-align: center;
    width: 70%;
    margin: 15px auto 0;
}