/**
 * College Support Groups styles
 */

.college-support-groups {
  position: relative;
  
  .college-header {
    width: 100%;
  }
  
  .college-intro {
    max-width: 50%;
    margin-bottom: var(--spacing-lg);
    
    @media (max-width: 992px) {
      max-width: 100%;
    }
    
    h2 {
      color: var(--color-blue-dark);
      margin-bottom: var(--spacing-sm);
    }
    
    p {
      font-size: 1.1rem;
      line-height: 1.5;
      text-wrap: pretty;
    }
  }
  
  .college-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    width: 80%;
    
    @media (max-width: 992px) {
      grid-template-columns: repeat(2, 1fr);
      width: 100%;
    }
    
    @media (max-width: 768px) {
      grid-template-columns: 1fr;
    }
  }
  
  .college-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    
    &:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
      text-decoration: none !important;
      
      .arrow-icon {
        transform: translateX(5px);
      }
      
      * {
        text-decoration: none !important;
      }
    }
  }
  
  .college-logo {
    width: 160%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
    
    img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
  }
  
  .college-name {
    font-size: 1.2rem;
    color: var(--color-blue-light);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
    font-family: var(--font-body);
    font-weight: bold;
  
  }
  
  .arrow-icon {
    margin-top: auto;
    transition: transform 0.2s ease;
    
    img {
      width: 24px;
      height: 24px;
    }
  }
}
