```css
/* =========================================================
VENUS FACTOR — FINAL UPDATED AUTHOR PAGE CSS
COMPACT + PROFESSIONAL + PERFECTLY ALIGNED VERSION
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&display=swap');

/* =========================================================
RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Jost',sans-serif;
    background:#f5f5f3;
    color:#111111;
    line-height:1.7;
    overflow-x:hidden;
}

/* =========================================================
GLOBAL
========================================================= */

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:0.3s ease;
}

.container{
    width:100%;
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

/* =========================================================
HEADER
========================================================= */

.site-header{
    background:#ffffff;
    border-bottom:1px solid #e7e7e7;
    position:sticky;
    top:0;
    z-index:999;
}

.header-inner{
    max-width:1100px;
    margin:auto;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.site-logo{
    font-size:32px;
    font-weight:800;
    letter-spacing:-1px;
    color:#111111;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:26px;
}

.site-nav a{
    font-size:15px;
    font-weight:600;
    color:#222222;
}

.site-nav a:hover{
    color:#0ea5e9;
}

/* =========================================================
AUTHOR HERO
========================================================= */

.author-hero{
    padding:42px 20px 24px;
}

.author-hero-inner{
    max-width:1100px;
    margin:auto;

    display:grid;
    grid-template-columns:210px 1fr;

    gap:38px;
    align-items:center;
}

.author-hero img{
    width:210px;
    height:210px;
    object-fit:cover;

    border-radius:50%;
    border:5px solid #ffffff;

    box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.author-role{
    display:inline-block;

    font-size:11px;
    font-weight:700;

    text-transform:uppercase;
    letter-spacing:2px;

    color:#0ea5e9;

    margin-bottom:14px;
}

.author-content h1{
    font-size:50px;
    line-height:1;

    font-weight:800;
    letter-spacing:-2px;

    margin-bottom:18px;

    color:#111111;
}

.author-content p{
    font-size:16px;
    color:#4b5563;

    line-height:1.8;

    margin-bottom:15px;

    max-width:760px;
}

/* =========================================================
MAIN CONTENT
========================================================= */

.author-section{
    padding:0 20px 36px;
}

.author-inner{
    max-width:1100px;
    margin:auto;
}

.author-inner h2{
    font-size:34px;
    line-height:1.15;

    font-weight:800;
    letter-spacing:-1px;

    margin-top:28px;
    margin-bottom:12px;

    color:#111111;
}

.author-inner p{
    font-size:16px;
    line-height:1.8;

    color:#4b5563;

    margin-bottom:14px;
}

/* =========================================================
FOCUS GRID
========================================================= */

.focus-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:22px;
    margin-bottom:30px;
}

.focus-card{
    background:#ffffff;

    border:1px solid #ececec;
    border-radius:20px;

    padding:22px;
}

.focus-card h3{
    font-size:19px;
    line-height:1.35;

    font-weight:700;

    margin-bottom:12px;

    color:#111111;
}

.focus-card p{
    font-size:15px;
    line-height:1.8;

    color:#4b5563;

    margin:0;
}

/* =========================================================
NOTICE BOX
========================================================= */

.highlight-box{
    background:#eef8fd;

    border-left:5px solid #0ea5e9;
    border-radius:18px;

    padding:24px;

    margin-top:4px;
    margin-bottom:34px;
}

.highlight-box p{
    font-size:15px;
    line-height:1.8;

    color:#374151;

    margin-bottom:12px;
}

.highlight-box p:last-child{
    margin-bottom:0;
}

/* =========================================================
ARTICLE GRID
========================================================= */

.article-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin-top:24px;
}

.article-card{
    background:#ffffff;

    border:1px solid #ececec;
    border-radius:22px;

    overflow:hidden;

    transition:0.3s ease;
}

.article-card:hover{
    transform:translateY(-4px);

    box-shadow:0 10px 24px rgba(0,0,0,0.08);
}

.article-card img{
    width:100%;
    height:205px;

    object-fit:cover;
}

.article-content{
    padding:20px;
}

.article-category{
    display:inline-block;

    font-size:11px;
    font-weight:700;

    letter-spacing:1.5px;
    text-transform:uppercase;

    color:#0ea5e9;

    margin-bottom:10px;
}

.article-card h3{
    font-size:19px;
    line-height:1.35;

    font-weight:800;

    color:#111111;

    margin-bottom:12px;
}

.article-card p{
    font-size:15px;
    line-height:1.8;

    color:#4b5563;

    margin-bottom:18px;
}

.read-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:46px;

    border-radius:999px;

    background:#0ea5e9;
    color:#ffffff;

    font-size:15px;
    font-weight:700;
}

.read-btn:hover{
    background:#0284c7;
}

/* =========================================================
EDITORIAL NOTE
========================================================= */

.editorial-note{
    padding:38px 20px 24px;
}

.editorial-note-inner{
    max-width:900px;
    margin:auto;

    text-align:center;
}

.editorial-note p{
    font-size:15px;
    line-height:1.8;

    color:#4b5563;

    margin-bottom:12px;
}

/* =========================================================
FOOTER
========================================================= */

.main-footer{
    background:#ebe8df;

    margin-top:18px;
}

/* FIXED ALIGNMENT */

.footer-container{
    max-width:1100px;
    margin:auto;

    padding:42px 20px 30px;

    display:grid;

    grid-template-columns:1.6fr 1fr 1fr 1fr;

    gap:48px;

    align-items:flex-start;
}

.footer-column{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
}

.footer-column h3{
    font-size:34px;
    line-height:1;

    font-weight:800;

    color:#111111;

    margin-bottom:18px;
}

.footer-column h4{
    font-size:20px;
    line-height:1.2;

    font-weight:700;

    color:#111111;

    margin-bottom:22px;

    min-height:24px;
}

.footer-column p{
    font-size:15px;
    line-height:1.8;

    color:#4b5563;

    max-width:300px;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:14px;
}

.footer-column ul li a{
    font-size:15px;
    line-height:1.7;

    color:#4b5563;
}

.footer-column ul li a:hover{
    color:#111111;
}

/* =========================================================
DISCLAIMER
========================================================= */

.footer-disclaimer{
    border-top:1px solid rgba(0,0,0,0.08);
}

.footer-disclaimer-inner{
    max-width:1100px;
    margin:auto;

    padding:28px 20px;
}

.footer-disclaimer p{
    font-size:14px;
    line-height:1.8;

    color:#4b5563;

    margin-bottom:12px;
}

.footer-bottom{
    border-top:1px solid rgba(0,0,0,0.08);

    padding:16px;

    text-align:center;
}

.footer-bottom p{
    font-size:13px;
    color:#6b7280;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:992px){

.author-hero-inner{
    grid-template-columns:1fr;
    text-align:center;
}

.author-hero img{
    margin:auto;
}

.focus-grid{
    grid-template-columns:1fr;
}

.article-list{
    grid-template-columns:1fr;
}

.footer-container{
    grid-template-columns:1fr 1fr;
    gap:34px;
}

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

.header-inner{
    flex-direction:column;
    gap:14px;
}

.site-logo{
    font-size:28px;
}

.site-nav{
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
}

.author-hero{
    padding-top:36px;
}

.author-hero img{
    width:170px;
    height:170px;
}

.author-content h1{
    font-size:38px;
}

.author-inner h2{
    font-size:30px;
}

.author-content p,
.author-inner p,
.focus-card p,
.article-card p,
.editorial-note p,
.footer-column p{
    font-size:15px;
}

.footer-container{
    grid-template-columns:1fr;
    gap:28px;
}

.footer-column h3{
    font-size:30px;
}

.footer-column h4{
    margin-bottom:16px;
}

}
```
