    * {
      box-sizing: border-box;
    }
h2 {
	display: none;
}
    body {
      font-family: "Jost", sans-serif;
      margin: 0;
      background-color: #f4f4f4;
      color: #333;
    }
    header {
      background-color: #620a1e;
  	  color: white;
      display: flex;
      align-items: center;        /* Vertically centers logo + text */
      justify-content: center;    /* Centers them horizontally as a group */
      padding: 0.5rem 1rem;
      gap: 1rem;                  /* Space between logo and title */
      flex-wrap: wrap;            /* Keeps layout neat on mobile */
    }
    header h1 {
      margin: 0;
      font-size: 2.0rem;
      font-family: "Jost", sans-serif;
    }
    .logo {
      height: 60px;
      width: auto;
    }
    .header-text h1 {
      margin: 0;
      font-size: 1.75rem;
      font-family: "Jost", sans-serif;
      text-align: center;
    }
    .roster {
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1rem; 
      padding: 1rem; 
      margin: 0 auto; 
    }
    .player-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.2s ease-in-out;
    }
    .player-card:hover {
      transform: scale(1.02);
    }
    .player-photo img {
      width: 100%;
      height: auto;
      display: block;
    }
    .player-info {
      padding: 0.5rem 1rem 0.5rem 1rem;
    }
    .player-info h2 {
      margin: 0;
      font-size: 1.3rem;
    }
    .player-info p {
      font-size: 1.2rem;
      line-height: 1.75rem;
      margin: 0.3rem 0;
    }
    .player-info a {
      color: #0074ca;
      text-decoration: none;
      font-weight: 700;
    }
    .player-info a:hover {
      text-decoration: underline;
    }
    .gpa {
      margin-left: 30px;
    }
    i {
    padding-right: 15px;
    font-size: 1.25rem;
    }
    .darkhorse {
      background-image: url("https://app.thedarkhorse.ai/assets/images/dh-logo.png");
  	  background-size: 25px; /* Optional: Adjusts the image size to cover the element */
      background-repeat: no-repeat; /* Optional: Prevents the image from repeating */
      background-position: left; /* Optional: Centers the image */
    }
	.darkhorse-text {
      margin-left: 34px;
    }  
    .youtube {
      background-image: url("http://www.711collective.com/wp-content/uploads/2025/10/youtube-logo.png");
  	  background-size: 25px; /* Optional: Adjusts the image size to cover the element */
      background-repeat: no-repeat; /* Optional: Prevents the image from repeating */
      background-position: left; /* Optional: Centers the image */
    }    
    footer {
      text-align: center;
      padding: 1rem;
      background-color: #620a1e	;
      color: white;
      font-size: 0.9rem;
    }
    /* .visibility {
      visibility: hidden;
      margin-bottom: -32px;
    } */
	.fusion-body .fusion-wrapper .post-content .roster .player-card .player-info p {
  		margin-bottom: 10px !important;
		font-family: "Jost", sans-serif;
	}
	h1 {
    	margin: 0;
    	font-size: 1.75rem;
    	font-family: "Jost", sans-serif;
    	text-align: center;
	}
