/* ==========================
   About Vani Section

   ========================== */

.credit-container { 
  width: 90%;
  margin: 3rem auto 1rem auto;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: maroon;
}

.categories{
    margin: 0 0 1rem 0;
}

main > section {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.6;
  } 

.credit-section{
  width: 90%;
  margin: 0 auto 1rem auto;
}

.credit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.credit-card {
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 8px;
    background: #fafafa;
    transition: transform 0.2s ease;
}

.credit-card:hover {
    transform: translateY(-4px);
}

.credit-date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.director {
    font-size: 0.9rem;
    color: #555;
}



/* ==========================
   Tablet & Up
   ========================== */

@media (min-width: 1024px) {
  
    .showreel_profile {
      flex-direction: row;
      gap: 1em ;
    }

}

