* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #050505;
    color: #fff;
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}
.site-header{
    position:relative;
    padding: 30px 0;
}
.home .site-header {
    position: absolute;
    width: 100%;
    z-index: 100;

}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    color: white;
    text-decoration: none;
    font-size: 36px;
    font-weight: 700;
}

/* .logo-circle {
    width: 56px;
    height: 56px;
    border: 2px solid #c6a15b;
    border-radius: 50%;
} */

.hero-section {
    min-height: 100vh;
    background: url('../images/hero.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 760px;
}

/* .hero-line {
    width: 4px;
    height: 120px;
    background: #c6a15b;
    display: block;
    margin-bottom: 40px;
} */

.hero-text h2 {
    font-size: 110px;
    line-height: 1;
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 24px;
    color: #d1d1d1;
    margin-bottom: 40px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 34px;
    border: 1px solid #c6a15b;
    color: #c6a15b;
    text-decoration: none;
}

.layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
}

.latest-section,
.single-section {
    padding: 100px 0;
}

.section-heading h2 {
    color: #c6a15b;
    font-size: 52px;
    margin-bottom: 50px;
}

.article-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 36px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.article-content h3 {
    font-size: 42px;
    margin: 16px 0;
}

.article-content h3 a {
    color: white;
    text-decoration: none;
}

.article-category {
    color: #c6a15b;
}

.article-content p {
    color: #bcbcbc;
}

.article-meta {
    margin-top: 20px;
    color: #777;
}
.article-thumb {
    width: 320px;
    height: 220px;

    overflow: hidden;
    /* height: 160px; */
    /* flex-shrink: 0; */
}

.article-thumb img {
    width: 100%;
    height:100%;
    /* aspect-ratio: 16 / 9; */

    object-fit: cover;

    display: block;
}
.sidebar-box {
    margin-bottom: 50px;
}

.sidebar-box h3 {
    color: #c6a15b;
    margin-bottom: 20px;
    font-size: 32px;
}

.popular-item {
    display: grid;
    grid-template-columns: 40px 80px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    color: white;
    text-decoration: none;
}

.popular-rank {
    background: #c6a15b;
    color: black;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box li {
    margin-bottom: 16px;
}

.sidebar-box a {
    color: #d2d2d2;
    text-decoration: none;
}

.single-article h1 {
    font-size: 64px;
    margin: 20px 0;
}

.single-content {
    margin-top: 40px;
}

.single-content h2 {
    margin: 40px 0 20px;
}

.single-content p {
    margin-bottom: 24px;
    color: #d3d3d3;
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 50px 0 20px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    color: #777;
}
.archive-hero h1{
    font-size:24px;
    color:#fff;
    margin-bottom:20px;
}

@media(max-width: 1024px) {

    .layout-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h2 {
        font-size: 72px;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

}


.pagination-wrap{
    margin-top:60px;
    text-align:center;
} 
.pagination-wrap .page-numbers{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:48px;
    height:48px;

    margin:0 6px;

    border:1px solid #bfa15d;

    color:#fff;
    text-decoration:none;

    transition:.3s;
    text-align: center;
}

.pagination-wrap .page-numbers:hover{
    background:#bfa15d;
    color:#000;
}

.pagination-wrap .current{
    background:#bfa15d;
    color:#000;
}
.footer-links{

    display:flex;

    gap:20px;

    margin-top:20px;
    justify-content: center;
}

.footer-links a{

    color:#aaa;

    text-decoration:none;

    font-size:14px;

    transition:.3s;
}

.footer-links a:hover{
    color:#bfa15d;
}

/* ==========================
   PAGE
========================== */

.page-section{
    padding:120px 0 80px;
    /* background:#0f0f0f; */
    min-height:70vh;
}

.page-content{
    max-width:900px;
    /* margin:0 auto; */
}

.page-content h1{

    font-size:48px;

    color:#fff;

    margin-bottom:50px;

    padding-bottom:20px;

    border-bottom:2px solid #bfa15d;

    font-weight:700;
}

.page-content h2{

    font-size:28px;

    color:#fff;

    margin-top:50px;
    margin-bottom:20px;

    padding-left:15px;

    border-left:4px solid #bfa15d;
}

.page-content p{

    color:#cfcfcf;

    line-height:2;

    margin-bottom:24px;

    font-size:16px;
}

.page-content ul{

    margin:20px 0 30px 25px;

    color:#cfcfcf;
}

.page-content li{

    margin-bottom:10px;

    line-height:1.8;
}

.page-content a{

    color:#bfa15d;

    text-decoration:none;
}

.page-content a:hover{

    text-decoration:underline;
}

.page-content strong{

    color:#fff;
}

.page-content blockquote{

    margin:30px 0;

    padding:20px 30px;

    background:#1a1a1a;

    border-left:4px solid #bfa15d;

    color:#ddd;
}

.page-content table{

    width:100%;

    border-collapse:collapse;

    margin:30px 0;
}

.page-content th{

    background:#bfa15d;

    color:#000;

    padding:12px;
}

.page-content td{

    border:1px solid #333;

    padding:12px;

    color:#ddd;
}
@media(max-width: 768px) {

    .hero-text h2 {
        font-size: 52px;
    }

    .article-content h3 {
        font-size: 30px;
    }

    .single-article h1 {
        font-size: 42px;
    }

}
