.club-title {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.club-title span {
  flex: 1;
  height: 4px;
  background: #f5a623;
}

.club-title h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
}

.club-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.club-role {
  width: 25%;
  text-align: center;
}

.club-role h3 {
  font-size: 25px;
}

.club-info {
  width: 45%;
}

.club-info p {
  margin: 10px 0;
  font-size: 16px;
}

.club-image {
  width: 20%;
  text-align: center;
}

.club-image img {
  width: 150px;
  height: auto;
  object-fit: cover;
  border: 1px solid #ddd;
}

.member-table {
  margin: 40px 0;
}

.member-table table {
  width: 100%;
  border-collapse: collapse;
}

.member-table th {
  text-align: left;
  padding: 15px;
  font-size: 18px;
  border-bottom: 2px solid #ddd;
}

.member-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.section-title {
  margin: 40px 0 20px;
  font-size: 28px;
}

.content-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 35px;
}

.content-box p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.content-box li {
  margin-bottom: 10px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .debate-club-section {
    padding: 20px 15px;
  }

  .club-title h2 {
    font-size: 20px;
  }

  .club-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .club-role,
  .club-info,
  .club-image {
    width: 100%;
  }

  .club-role h3 {
    font-size: 20px;
  }

  .club-info p {
    font-size: 12px;
  }

  .club-image img {
    width: 150px;
    height: auto;
  }

  .member-table table,
  .member-table thead,
  .member-table tbody,
  .member-table th,
  .member-table td,
  .member-table tr {
    display: block;
    width: 100%;
  }

  .member-table thead {
    display: none;
  }

  .member-table tr {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px;
  }

  .member-table td {
    border: none;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .member-table td::before {
    content: attr(data-label);
    font-weight: 700;
  }

  .section-title {
    font-size: 20px;
  }

  .content-box {
    padding: 15px;
  }

  .content-box p,
  .content-box li {
    font-size: 14px;
  }
}

