:root{
--primary:#ff685f;
--primary-dark:#ff564b;
--secondary:#0f172a;
--text:#64748b;
--bg:#f8fafc;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:#111827;
line-height:1.7;
}

.author-page{
max-width:1200px;
margin:auto;
padding:40px 20px;
}

/* HERO */

.author-hero{
background:linear-gradient(135deg,#ff685f,#ff8b83);
padding:90px 40px;
border-radius:30px;
text-align:center;
color:#fff;
margin-bottom:50px;
}

.author-badge{
display:inline-block;
padding:10px 22px;
background:rgba(255,255,255,.15);
border:1px solid rgba(255,255,255,.3);
border-radius:50px;
margin-bottom:25px;
backdrop-filter:blur(10px);
}

.author-hero h1{
font-size:56px;
font-weight:800;
margin-bottom:20px;
}

.author-hero p{
max-width:850px;
margin:auto;
font-size:18px;
}

.hero-stats{
display:flex;
justify-content:center;
gap:25px;
margin-top:40px;
flex-wrap:wrap;
}

.stat{
padding:20px 30px;
background:rgba(255,255,255,.15);
border-radius:20px;
backdrop-filter:blur(10px);
min-width:180px;
}

.stat h3{
font-size:30px;
margin-bottom:5px;
}

/* INFO GRID */

.info-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
margin-bottom:40px;
}

.card{
background:#fff;
padding:35px;
border-radius:25px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h2{
margin-bottom:20px;
font-size:28px;
}

.card ul{
padding-left:20px;
}

.card li{
margin-bottom:12px;
}

/* PROCESS */

.editorial-card{
margin-bottom:40px;
}

.process-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:15px;
margin-top:20px;
}

.process-item{
background:#fff4f3;
padding:18px;
border-radius:14px;
border:1px solid #ffd2ce;
font-weight:600;
}

/* TRUST */

.trust-box{
background:#fff;
padding:45px;
border-radius:25px;
border-left:6px solid var(--primary);
box-shadow:0 10px 30px rgba(0,0,0,.08);
margin-bottom:40px;
}

.trust-box h2{
margin-bottom:15px;
}

/* REVIEWER */

.reviewer{
margin-bottom:50px;
}

.reviewer-box{
background:#fff;
padding:30px;
border-radius:25px;
display:flex;
align-items:center;
gap:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.reviewer-icon{
width:80px;
height:80px;
background:var(--primary);
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-weight:700;
font-size:22px;
}

/* ARTICLES */

.article-section{
margin-bottom:60px;
}

.article-section h2{
text-align:center;
margin-bottom:35px;
font-size:38px;
}

.article-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.article-card{
background:#fff;
padding:30px;
border-radius:22px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
transition:.3s;
}

.article-card:hover{
transform:translateY(-8px);
}

.article-card h3{
margin-bottom:15px;
}

.article-card a{
color:var(--primary);
font-weight:700;
text-decoration:none;
}

/* CTA */

.footer-links{
background:#fff;
padding:60px 30px;
text-align:center;
border-radius:30px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.footer-links h2{
font-size:36px;
margin-bottom:15px;
}

.footer-links p{
max-width:700px;
margin:auto auto 30px;
}

.btn-group{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:700;
transition:.3s;
}

.btn-primary{
background:var(--primary);
color:#fff;
}

.btn-primary:hover{
background:var(--primary-dark);
}

.btn-secondary{
border:2px solid var(--primary);
color:var(--primary);
}

.btn-secondary:hover{
background:var(--primary);
color:#fff;
}

/* MOBILE */

@media(max-width:768px){

.author-hero{
padding:70px 25px;
}

.author-hero h1{
font-size:34px;
}

.author-hero p{
font-size:16px;
}

.article-section h2,
.footer-links h2{
font-size:28px;
}

.reviewer-box{
flex-direction:column;
text-align:center;
}

}