/* ===================================================
   About Section Styles
   ================================================== */

/* Hero */
.about-hero{
  background:var(--deep);
  color:#fff;
  padding:80px 0 64px;
  text-align:center;
}
.about-hero h1{
  color:#fff;
  font-size:clamp(28px, 4vw, 48px);
  margin:0 0 20px;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}
.about-hero p{
  font-size:clamp(16px, 1.5vw, 20px);
  color:#d4e5d7;
  max-width:620px;
  margin:0 auto;
  line-height:1.6;
}

/* Content blocks */
.about-block{
  margin-top:60px;
}
.about-block h3{
  color:var(--deep);
  border-bottom:2px solid var(--leaf);
  padding-bottom:10px;
  margin-bottom:20px;
}

.about-block--accent{
  background:var(--sage);
  border-radius:var(--radius);
  padding:36px 40px;
  border-left:4px solid var(--deep);
}

/* Awards list */
.awards-list{
  list-style:none;
  padding:0;
  margin:16px 0 20px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.awards-list li{
  display:flex;
  align-items:center;
  gap:10px;
}
.awards-list li::before{
  content:'';
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--deep);
  flex-shrink:0;
}

/* Team grid */
.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(160px, 1fr));
  gap:20px;
  margin-top:28px;
}
.team-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px 16px;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform .2s ease;
}
.team-card:hover{transform:translateY(-4px);}
.team-initials{
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--deep);
  color:#fff;
  font-size:20px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 14px;
}
.team-name{
  font-weight:700;
  font-size:15px;
  color:var(--ink);
  margin-bottom:4px;
}
.team-role{
  font-size:13px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:.3px;
  text-transform:uppercase;
}

@media (max-width: 600px){
  .about-hero{padding:56px 0 48px;}
  .about-block--accent{padding:24px 20px;}
  .team-grid{grid-template-columns:repeat(2, 1fr);}
}

#overons{
  background:var(--bg);
}

#overons h2{text-align:center; margin-bottom:50px;}

.about{
  display:grid; 
  gap:clamp(24px, 5vw, 50px); 
  grid-template-columns: 1fr 1fr; 
  align-items:center;
  margin-top:40px;
}

.about-content{
  padding:20px;
}

.about-content h3{
  color:var(--deep);
  margin-top:24px;
}

.about-highlight{
  background:var(--sage);
  padding:24px;
  border-radius:12px;
  margin:24px 0;
  border-left:4px solid var(--deep);
}

.about figure{margin:0; overflow:hidden; border-radius:24px;}

.about figure img{width:100%; height:100%; object-fit:cover;}

@media (max-width: 860px){
  .about{
    grid-template-columns:1fr;
    gap: 32px;
  }
  
  .about figure{
    order:1;
  }
  
  .about-content{
    order:2;
    padding: 0;
  }
  
  .about-highlight {
    padding: 20px;
    margin: 20px 0;
  }
  
  #overons h2 {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px){
  .about{
    gap: 24px;
  }
  
  .about-highlight {
    padding: 16px;
    margin: 16px 0;
  }
  
  #overons h2 {
    font-size: 26px;
    margin-bottom: 24px;
  }
  
  .about-content h3 {
    font-size: 18px;
    margin-top: 20px;
  }
}
