/* TITLE */
.page-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* LAYOUT */
.affiliated-layout {
  display: flex;
  gap: 30px;
  max-width: 900px;
  margin: auto;
  align-items: stretch;
}

/* LEFT CARD */
.affiliated-left {
  width: 280px;
}

.vc-card {
  background: linear-gradient(135deg, var(--primary-blue), #3c4dc5);
  color: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.vc-card h2 {
  font-size: 18px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.vc-card h3 {
  font-size: 20px;
  font-weight: 600;
}

/* RIGHT SIDE */
.affiliated-right {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* INFO ROW */
.info-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.info-row span {
  font-weight: 600;
  color: var(--primary-blue);
}

.info-row p {
  margin: 0;
  color: #444;
}

/* FULL WIDTH ROW */
.info-row.full {
  flex-direction: column;
}

.info-row.full span {
  margin-bottom: 5px;
}

/* HOVER EFFECT */
.affiliated-right:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .affiliated-layout {
    flex-direction: column;
  }

  .affiliated-left {
    width: 100%;
  }

  .info-row {
    flex-direction: column;
  }

  .info-row span {
    margin-bottom: 5px;
  }
}