/* ------------------------------------------------------
   Sponsors modal — uniform text and spacing rules
   ------------------------------------------------------ */

/* Limit modal width on large screens */
#sponsorsModal .modal-dialog {
	max-width: 300px;
  }
  
  /* Uniform style for all text headings */
  .modal-logos h4 {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;      /* spacing will be controlled by relationship rules */
	padding: 0;
	text-align: center;
  }
  
  /* Uniform style for all images */
  .modal-logos img {
	display: block;
	max-width: 220px;   /* same max-width for all logos */
	max-height: 120px;
	width: 100%;
	margin: 0;
	padding: 0;
	object-fit: contain;
  }
  
/* ------------------------------------------
	 Vertical spacing rules between elements
------------------------------------------ */

.modal-logos > h4:first-of-type {
    margin-top: 15px;   /* adjust as needed */
}

/* Text followed by image → 10px */
.modal-logos h4 + a {
	margin-top: 12px;
}
  
/* Image followed by text → 10px */
.modal-logos a + h4 {
	margin-top: 12px;
}
  
/* Logo block followed by logo block → 5px */
.modal-logos > a + a {
	margin-top: 8px;
}

/* ------------------------------------------
	Responsive adjustments for small screens
------------------------------------------ */
@media (max-width: 576px) {
	#sponsorsModal .modal-dialog {
		margin: 0.75rem;
	}
  
	.modal-logos img {
	  max-width: 70vw;   /* more usable width on mobile */
	}
}
  