.partners-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.partners-photos {
    flex: 1;
    min-width: 300px;
}

.partners-text {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Adjust photo containers to match exact photo size */
.photo-container {
    width: fit-content;
    height: fit-content;
    display: block;
}

.photo-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.text-content-wrapper {
    margin-bottom: 20px;
}

/* New leader/mentor text boxes */
.leader-mentor-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.leader-box, .mentor-box {
    flex: 1;
    background-color: #e066ff;
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
}

/* Adjust button positioning */
.partners-cta {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
}
