/* partner BOX */

.partner-box {
    display: flex;
    align-items: center;
    gap: 30px;

    background-color: #A41F35;
    border-radius: 16px;

    padding: 30px;
    margin: 30px auto;

    max-width: 1100px;
}

/* LOGO SIDE */

.partner-logo {
    width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo img {
    max-width: 200px;
    max-height: 120px;
    object-fit: contain;
}

/* TEXT SIDE */

.partner-text {
    flex: 1;
}

.partner-text h2 {
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.35) !important;
}

.partner-button {
    display: inline-block;
    background-color: white;
    color: #A41F35;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
}

.partner-button:hover {
    background-color: #f3f3f3;
}

/* mobile */
@media (max-width: 768px) {

    .partner-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .partner-logo {
        width: 100%;
        justify-content: center;
    }

    .partner-logo img {
        max-width: 180px;
        max-height: none;
    }

    .partner-text {
        width: 100%;
    }

    .partner-button {
        display: inline-block;
        margin-top: 15px;
    }

}

.sponsor-email {
    color: white;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.45rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.sponsor-email:hover {
    text-decoration: underline;
}

.white-divider {
    width: 50%;
    height: 1px;
    background-color: white;
    margin: 25px auto;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .sponsor-email {
        font-size: 1rem;
    }
}