/* sponsors page styles - exactly matching team page structure from forums.css */

/* sponsor section styles */
.sponsor-section {
  display: block;
}

/* sponsor member styles - exact copy of team-member styles from forums.css */
.sponsor-member {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--dl-layout-space-fiveunits);
  padding: var(--dl-layout-space-fiveunits);
  margin-bottom: var(--dl-layout-space-fiveunits);
  background-color: #f1f1f1;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.sponsor-member:nth-child(even) {
  flex-direction: row-reverse;
}

.sponsor-member-image {
  flex: 0 0 500px;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
}

.sponsor-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sponsor-member-info {
  flex: 1;
  padding: var(--dl-layout-space-fourunits);
}

.sponsor-name {
  color: #352B2A;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  font-family: "Lexend";
  margin-bottom: var(--dl-layout-space-twounits);
}

.sponsor-role {
  color: #2762b3;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  font-family: "Lexend";
  margin-bottom: var(--dl-layout-space-threeunits);
}

.sponsor-description {
  color: #666;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  font-family: "Karla";
  line-height: 1.7;
  text-align: justify;
}

/* mobile responsive for sponsor layout - exact copy of team mobile styles */
@media(max-width: 767px) {
  .sponsor-member {
    flex-direction: column !important;
    padding: var(--dl-layout-space-threeunits);
    gap: var(--dl-layout-space-threeunits);
  }
  
  .sponsor-member-image {
    flex: 0 0 400px;
    height: 450px;
  }
  
  .sponsor-name {
    font-size: 32px;
  }
  
  .sponsor-role {
    font-size: 22px;
  }
  
  .sponsor-description {
    font-size: 16px;
  }
}
