/* ===============================
   FEATURED SPONSORS SECTION
================================= */

/* Container spacing */
.featured-sponsors-wrapper {
    padding-top: 120px;
}

/* Title */
.featured-title {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Divider line */
.featured-divider {
    width: 180px;
    height: 3px;
    background: #3498db;
    margin: 15px auto;
}

/* Tier header */
.featured-tier-header {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

/* Card */
.featured-card {
    border-radius: 15px;
    background: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Logo area */
.logo-container {
    height: 140px;
    background: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-logo-img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.featured-card:hover .featured-logo-img {
    transform: scale(1.08);
}

/* Text area */
.text-container {
    background: #253246;
    border-radius: 0 0 15px 15px;
    padding: 20px 15px;
}

.text-container h6 {
    color: #ffffff;
}

.text-container p {
    color: #cbd5e1;
}

/* Button */
.btn-outline-light {
    border-color: rgba(255,255,255,0.4);
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff;
    color: #253246;
}

/* Badge */
.featured-badge {
    background-color: #ffc107;
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
}
