/* teaching.css */
.teaching-experience {
    padding: 4rem 2rem;
    background-color: #ffffff;
    color: #111;
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }
  
  .teaching-experience h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .ta-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
  }
  
  .ta-card {
    background-color: #f9f9f9;
    color: #111;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    text-align: left;
    width: 100%;
    transition: transform 0.3s ease;
  }
  
  .ta-card:hover {
    transform: translateY(-5px);
  }
  
  .ta-card h3 {
    font-size: 1.2rem;
    color: #007BFF;
    margin-top: 0;
  }
  
  .ta-card p {
    font-size: 0.95rem;
    margin: 0.3rem 0;
  }
  