/* ===================== About page ===================== */
.about-page-section{padding:70px 0 110px;}

.about-page-inner{max-width:820px;margin:0 auto;}

.about-page-inner .section-title{text-align:left;margin-bottom:32px;}

.about-photo{
  width:100%;aspect-ratio:16/9;
  background:var(--tint-forest);
  border-radius:20px;overflow:hidden;
  margin-bottom:36px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--dune-d);
}
.about-photo img{width:100%;height:100%;object-fit:cover;display:block;}
.about-photo span{font-size:14px;color:var(--forest);opacity:.5;font-family:var(--font-label);}

.about-page-text p{font-size:17px;line-height:2;color:var(--ink);margin-bottom:22px;}
.about-page-text p strong{color:var(--forest);}

.about-page-inner .decl-outer{margin-top:60px;}

/* ===== PDF download card ===== */
.about-pdf{margin-top:60px;}
.about-pdf-card{
  display:block;
  max-width:640px;margin:0 auto;
  background:var(--white);
  border:1px solid var(--dune-d);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(15,51,34,.1);
  text-decoration:none;
  transition:transform .2s ease, box-shadow .2s ease;
}
.about-pdf-card:hover{transform:translateY(-4px);box-shadow:0 18px 36px rgba(15,51,34,.14);}
.about-pdf-thumb{
  width:100%;aspect-ratio:210/297;
  background:var(--dune-l);
  display:flex;align-items:center;justify-content:center;
  border-bottom:1px solid var(--dune-d);
}
.about-pdf-thumb img{width:100%;height:100%;object-fit:contain;display:block;}
.about-pdf-thumb span{font-size:13px;color:var(--forest);opacity:.5;font-family:var(--font-label);}
.about-pdf-label{
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:22px 24px;
  font-family:var(--font-label);font-weight:700;font-size:18px;
  color:var(--forest);
}
.about-pdf-label svg{width:22px;height:22px;flex:none;}

@media (max-width:640px){
  .about-page-section{padding:50px 0 80px;}
  .about-page-inner .section-title{margin-bottom:22px;}
  .about-photo{margin-bottom:24px;border-radius:14px;}
  .about-page-text p{font-size:15.5px;line-height:1.9;margin-bottom:18px;}
  .about-page-inner .decl-outer{margin-top:44px;}
  .about-pdf{margin-top:44px;}
  .about-pdf-card{max-width:100%;}
  .about-pdf-label{font-size:14px;padding:14px 16px;text-align:center;}
}
