/* ─── SIDEBAR ─── */
.sidebar { display: flex; flex-direction: column; gap: 28px; }

/* Newsletter card */
.nl-card {
    background: var(--g700);
    border-radius: var(--r16);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
}
.nl-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}
.nl-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(184,145,58,0.2);
    border: 1px solid rgba(184,145,58,0.3);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #e8cc7a;
    margin-bottom: 16px;
}
.nl-badge-dot { width: 5px; height: 5px; background: var(--gold-lt); border-radius: 50%; }
.nl-title { font-family: 'Lora', Georgia, serif; font-size: 19px; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 8px; }
.nl-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 18px; }
.nl-form { display: flex; flex-direction: column; gap: 8px; }
.nl-input {
    padding: 11px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--r8);
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--white);
    outline: none;
    transition: all var(--ease);
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { border-color: rgba(184,145,58,0.5); background: rgba(255,255,255,0.13); }
.nl-btn {
    padding: 11px;
    background: var(--gold-lt);
    border: none;
    border-radius: var(--r8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--g900);
    cursor: pointer;
    transition: all var(--ease);
}
.nl-btn:hover { background: #ddb960; }
.nl-trust { text-align: center; font-size: 11.5px; color: rgba(255,255,255,0.3); margin-top: 8px; }

/* Sidebar box */
.sbox { background: var(--white); border: 1px solid var(--border); border-radius: var(--r16); overflow: hidden; }
.sbox-hd { padding: 16px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.sbox-title { font-family: 'Lora', Georgia, serif; font-size: 15px; font-weight: 700; color: var(--ink); }
.sbox-more { font-size: 12px; color: var(--g500); text-decoration: none; font-weight: 500; }
.sbox-more:hover { color: var(--g700); }
.sbox-bd { padding: 4px 20px 16px; }

/* Author */
.author-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 22px 20px; }
.author-avatar-lg { width: 76px; height: 76px; border-radius: 50%; overflow: hidden; border: 3px solid var(--g100); margin-bottom: 14px; background: var(--g100); }
.author-avatar-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.auth-name { font-family: 'Lora', Georgia, serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.auth-role { font-size: 12.5px; color: var(--g600); font-weight: 600; margin-bottom: 10px; }
.auth-bio { font-size: 13px; color: var(--ink3); line-height: 1.65; margin-bottom: 14px; }
.auth-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 16px; }
.auth-tag { font-size: 11.5px; font-weight: 500; padding: 4px 10px; background: var(--g50); color: var(--g700); border: 1px solid var(--g100); border-radius: 100px; }
.auth-btn { width: 100%; padding: 9px; background: transparent; border: 1.5px solid var(--g200); border-radius: var(--r8); font-size: 13.5px; font-weight: 600; color: var(--g600); cursor: pointer; font-family: inherit; transition: all var(--ease); text-decoration: none; display: block; text-align: center; }
.auth-btn:hover { background: var(--g50); border-color: var(--g300); color: var(--g700); }

/* Trending */
.trend-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); cursor: pointer; transition: all var(--ease); text-decoration: none; color: inherit; }
.trend-item:last-child { border-bottom: none; padding-bottom: 0; }
.trend-item:hover .trend-title { color: var(--g600); }
.trend-num { font-family: 'Lora', Georgia, serif; font-size: 20px; font-weight: 700; color: var(--border2); line-height: 1; min-width: 24px; padding-top: 2px; }
.trend-label .tag { font-size: 10px; padding: 2px 7px; margin-bottom: 3px; }
.trend-title { font-size: 13.5px; font-weight: 500; color: var(--ink); line-height: 1.4; transition: color var(--ease); }

/* Widget area */
.widget { margin-bottom: 28px; }
.widget-title { font-family: 'Lora', Georgia, serif; font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
