:root{
  --bg:#f3f4f6;
  --white:#ffffff;
  --text:#1f1f1f;
  --muted:#8a8a8a;
  --gold:#c89600;
  --gold-dark:#a97d00;
  --border:#dfdfdf;
  --soft:#f8f8f8;
  --shadow:0 2px 12px rgba(0,0,0,.06);
  --radius:16px;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(1280px, calc(100% - 32px));
  margin:0 auto;
}

/* =========================
   TOPBAR
========================= */
.topbar{
  background:var(--gold);
  color:#fff;
}

.topbar-inner{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.social-icons,
.top-links{
  display:flex;
  align-items:center;
  gap:12px;
}

.social-icons a,
.footer-social a{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  color:#fff;
  transition:.2s ease;
}

.social-icons a:hover,
.footer-social a:hover{
  background:#fff;
  color:var(--gold);
}

.top-links a{
  font-weight:700;
  color:#fff;
}

/* =========================
   HEADER
========================= */
.main-header{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:grid;
  grid-template-columns:220px 1fr 290px;
  gap:20px;
  align-items:center;
  padding:18px 0;
}

.site-logo img{
  width:auto;
  max-width:100%;
  max-height:72px;
  height:auto;
}

.main-menu{
  display:flex;
  align-items:center;
  gap:34px;
  font-weight:800;
  font-size:18px;
}

.main-menu a:hover{
  color:var(--gold);
}

.search-box{
  display:flex;
  align-items:center;
  background:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  overflow:hidden;
  height:48px;
}

.search-box input{
  border:none;
  outline:none;
  flex:1;
  padding:0 18px;
  font-size:15px;
  background:transparent;
}

.search-box button{
  width:50px;
  height:48px;
  border:none;
  background:#fff;
  cursor:pointer;
  font-size:16px;
}

/* =========================
   PAGE
========================= */
.page-main{
  padding:26px 0 0;
}

.home-wrap{
  padding-bottom:40px;
}

/* =========================
   HERO
========================= */
.hero-section{
  width:100%;
  display:flex;
  justify-content:center;
  margin:0 0 26px;
}

.hero-wide{
  width:min(1500px, calc(100% - 32px));
  margin:0 auto;
}

.hero-card{
  position:relative;
  display:block;
  width:100%;
  overflow:hidden;
  border-radius:22px;
  background:#ddd;
  box-shadow:var(--shadow);
}

.hero-card img{
  width:100%;
  height:560px;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:22px;
  color:#fff;
  background:linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.08));
}

.hero-label{
  font-weight:800;
  font-size:15px;
  display:inline-block;
  margin-bottom:10px;
}

.hero-overlay h1{
  font-size:27px;
  line-height:1.2;
  margin:0;
  font-weight:900;
}

/* =========================
   CHIP
========================= */
.section-chip{
  display:inline-block;
  background:var(--gold);
  color:#fff;
  font-weight:900;
  font-size:22px;
  line-height:1;
  padding:12px 18px;
  border-radius:7px;
  margin:10px 0 16px;
}

.mt-30{
  margin-top:30px;
}

/* =========================
   FEATURE ROW
========================= */
.feature-row{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:18px;
  margin-bottom:22px;
}

.feature-big-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:#ddd;
  box-shadow:var(--shadow);
}

.feature-big-card img{
  height:390px;
  object-fit:cover;
}

.feature-big-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:22px;
  color:#fff;
  background:linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.08));
}

.feature-big-overlay h2{
  font-size:25px;
  line-height:1.2;
  margin:0;
  font-weight:900;
}

.feature-side{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:10px;
  box-shadow:var(--shadow);
}

.mini-side-card{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:12px;
  align-items:start;
  padding:10px;
  border-radius:10px;
}

.mini-side-card img{
  height:70px;
  object-fit:cover;
  border-radius:8px;
}

.mini-side-card h4{
  margin:0;
  font-size:15px;
  line-height:1.3;
  font-weight:800;
}

/* =========================
   CONTENT GRID
========================= */
.content-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:22px;
  align-items:start;
}

.section-heading{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px 20px;
  display:flex;
  align-items:flex-end;
  gap:8px;
  margin-bottom:16px;
  box-shadow:var(--shadow);
}

.section-heading h2{
  margin:0;
  font-size:32px;
  line-height:1;
}

.section-heading span{
  color:var(--muted);
  font-size:16px;
}

/* =========================
   LATEST CARD
========================= */
.latest-card{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:18px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  margin-bottom:18px;
  box-shadow:var(--shadow);
}

.latest-thumb img{
  height:170px;
  object-fit:cover;
  border-radius:14px;
}

.latest-body h3{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.25;
  font-weight:900;
}

.latest-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:var(--muted);
  font-size:14px;
  margin-bottom:12px;
}

.latest-body p{
  margin:0;
  color:#545454;
  font-size:18px;
  line-height:1.55;
}

/* =========================
   SIDEBAR
========================= */
.sidebar-box{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  margin-bottom:18px;
  box-shadow:var(--shadow);
}

.sidebar-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:14px;
}

.sidebar-title h3{
  margin:0;
  font-size:34px;
  line-height:1;
}

.badge-hot,
.badge-browse{
  padding:4px 10px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
}

.badge-hot{
  background:#fff1b8;
  color:#9a6f00;
}

.badge-browse{
  background:#e7f7df;
  color:#4d8f38;
}

.trend-item,
.press-item{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  padding:12px 0;
  border-top:1px solid #eee;
}

.trend-item:first-of-type,
.press-item:first-of-type{
  border-top:none;
  padding-top:0;
}

.trend-number{
  width:30px;
  height:30px;
  border-radius:8px;
  background:#0f1a2f;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

.trend-content h4{
  margin:0 0 6px;
  font-size:16px;
  line-height:1.35;
  font-weight:900;
}

.trend-content small{
  color:var(--muted);
  font-size:13px;
}

.category-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.category-list a{
  font-size:18px;
  color:#795548;
}

.ads-box{
  margin-top:18px;
  min-height:260px;
  border:2px dashed #e5e5e5;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#9a9a9a;
  font-size:38px;
  font-weight:800;
  background:#fafafa;
}

/* =========================
   FOLLOW BOX
========================= */
.follow-box{
  padding:22px;
  border-radius:16px;
  background:linear-gradient(180deg, #fffdf7 0%, #fff 100%);
  border:1px solid #eadfb8;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.follow-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#f7e7aa;
  color:#8a6800;
  font-size:11px;
  font-weight:800;
  letter-spacing:.4px;
  margin-bottom:14px;
}

.follow-title{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.2;
  font-weight:900;
  color:#1f1f1f;
}

.follow-text{
  margin:0 0 18px;
  font-size:14px;
  line-height:1.6;
  color:#666;
}

.follow-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-bottom:18px;
}

.follow-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:12px;
  background:#fff;
  border:1px solid #e7e7e7;
  font-size:14px;
  font-weight:700;
  transition:.2s ease;
}

.follow-item:hover{
  transform:translateY(-2px);
  background:#fff8df;
  border-color:#e0c15a;
}

.follow-item i{
  width:18px;
  text-align:center;
  color:#c89600;
  font-size:16px;
}

.follow-btn{
  display:block;
  text-align:center;
  padding:13px 16px;
  border-radius:12px;
  background:#c89600;
  color:#fff;
  font-weight:800;
  font-size:14px;
  transition:.2s ease;
}

.follow-btn:hover{
  background:#a97d00;
}

/* =========================
   VIDEO
========================= */
.video-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.video-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.video-thumb{
  position:relative;
}

.video-thumb img{
  height:220px;
  object-fit:cover;
}

.play-btn{
  position:absolute;
  left:14px;
  bottom:14px;
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(0,0,0,.65);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
}

.video-card h4{
  padding:12px 14px 16px;
  margin:0;
  font-size:16px;
  line-height:1.35;
  font-weight:900;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  margin-top:50px;
  background:#efefef;
  border-top:1px solid #ddd;
}

.footer-inner{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:40px;
  padding:40px 0 28px;
}

.footer-col h3{
  margin:0 0 16px;
  font-size:24px;
  color:#111;
}

.footer-brand img{
  width:auto;
  max-width:220px;
  height:auto;
  margin-bottom:16px;
}

.footer-brand h4{
  margin:20px 0 14px;
  font-size:18px;
  color:#111;
}

.footer-desc{
  font-size:15px;
  line-height:1.8;
  color:#555;
  margin:0 0 18px;
  max-width:420px;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.footer-links a{
  font-size:16px;
  color:#444;
  transition:.2s ease;
}

.footer-links a:hover{
  color:var(--gold);
  padding-left:4px;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:10px;
}

.footer-social a{
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(200,150,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-dark);
  font-size:15px;
  transition:.2s ease;
}

.footer-social a:hover{
  background:var(--gold);
  color:#fff;
}

.copyright{
  border-top:1px solid #d8d8d8;
  padding:18px 0;
  color:#666;
  font-size:15px;
}

/* =========================
   ARTICLE PAGE
========================= */
.article-layout{
  max-width:1180px;
  margin:30px auto 40px;
  display:grid;
  grid-template-columns:minmax(0, 760px) 340px;
  gap:28px;
  align-items:start;
}

.article-main{
  min-width:0;
}

.article-post{
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.article-breadcrumb{
  font-size:13px;
  color:#7a7a7a;
  padding:18px 28px 0;
}

.article-breadcrumb a{
  color:#7a7a7a;
}

.article-breadcrumb span{
  margin:0 8px;
}

.article-header{
  padding:18px 28px 22px;
}

.article-category-badge{
  display:inline-block;
  background:#f7b500;
  color:#111;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.4px;
  padding:7px 12px;
  border-radius:999px;
  margin-bottom:14px;
}

.article-title{
  font-size:42px;
  line-height:1.1;
  font-weight:900;
  color:#111;
  margin:0 0 14px;
}

.article-excerpt{
  font-size:18px;
  line-height:1.7;
  color:#555;
  margin:0 0 20px;
  max-width:90%;
}

.article-meta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-top:10px;
  border-top:1px solid #ececec;
}

.article-author-meta{
  display:flex;
  align-items:center;
  gap:12px;
}

.article-author-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#f7b500;
  color:#111;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.article-author-avatar.large{
  width:68px;
  height:68px;
  font-size:28px;
}

.article-author-text{
  display:flex;
  flex-direction:column;
}

.article-author-text strong{
  font-size:14px;
  color:#111;
}

.article-author-text small{
  font-size:12px;
  color:#777;
  margin-top:3px;
}

.article-share-top{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.article-share-top span{
  font-size:13px;
  color:#666;
  font-weight:700;
}

.article-share-top a{
  width:38px;
  height:38px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:#f5f5f5;
  border:1px solid #e7e7e7;
  color:#111;
  font-size:15px;
  transition:.2s;
}

.article-featured-wrap{
  position:relative;
  overflow:hidden;
}

.article-featured-image{
  width:100%;
  height:420px;        /* 🔥 semua jadi sama tinggi */
  object-fit:cover;    /* 🔥 crop bagi penuh */
}

.article-content-wrap{
  display:grid;
  grid-template-columns:56px minmax(0,1fr);
  gap:22px;
  padding:28px;
}

.article-share-floating{
  position:sticky;
  top:110px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-self:start;
}

.article-share-floating a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#f5f5f5;
  border:1px solid #e7e7e7;
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:16px;
  transition:.2s;
}

.article-body{
  min-width:0;
  color:#1e1e1e;
  font-size:18px;
  line-height:1.9;
}

.article-body p{
  margin:0 0 20px;
  color:#222;
}

.article-body h2{
  font-size:30px;
  line-height:1.3;
  margin:34px 0 14px;
  font-weight:900;
  color:#111;
}

.article-body h3{
  font-size:22px;
  line-height:1.35;
  margin:24px 0 12px;
  font-weight:800;
  color:#111;
}

.article-body ul,
.article-body ol{
  margin:0 0 22px;
  padding-left:22px;
}

.article-body li{
  margin-bottom:10px;
  line-height:1.8;
}

.article-body img,
.article-body .article-image{
  width:100%;
  max-width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  margin:24px 0;
}

.article-body figure{
  margin:28px 0;
}

.article-body figure img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  margin:0;
}

.article-body figcaption{
  margin-top:8px;
  font-size:13px;
  line-height:1.6;
  color:#777;
  text-align:center;
}

.article-body blockquote{
  margin:28px 0;
  padding:18px 20px;
  border-left:4px solid #f7b500;
  background:#fff8df;
  border-radius:10px;
  font-size:18px;
  line-height:1.8;
  color:#333;
  font-style:italic;
}

.article-highlight{
  background:#fff7e8;
  border:1px solid #f1d28a;
  border-radius:12px;
  padding:18px 20px;
  margin:28px 0;
}

.article-highlight h3{
  margin-top:0;
}

.article-note-box,
.article-subscribe-box,
.article-author-box,
.article-share-bottom,
.article-related-posts,
.article-more-category{
  margin:0 28px 28px;
}

.article-note-box{
  background:#fff8df;
  border:1px solid #f3e2a2;
  border-radius:12px;
  padding:18px 20px;
}

.article-note-box h3{
  margin:0 0 8px;
  font-size:18px;
}

.article-note-box p{
  margin:0;
  font-size:15px;
  line-height:1.8;
}

.article-subscribe-box{
  background:linear-gradient(135deg,#111,#2c2c2c);
  color:#fff;
  border-radius:16px;
  padding:26px;
}

.subscribe-badge{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  letter-spacing:.5px;
  background:#f7b500;
  color:#111;
  border-radius:999px;
  padding:6px 10px;
  margin-bottom:12px;
}

.article-subscribe-box h3{
  font-size:28px;
  margin:0 0 10px;
}

.article-subscribe-box p{
  margin:0 0 18px;
  color:rgba(255,255,255,0.82);
}

.article-subscribe-form{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.article-subscribe-form input{
  flex:1;
  min-width:220px;
  height:48px;
  border:none;
  border-radius:999px;
  padding:0 16px;
  font-size:14px;
}

.article-subscribe-form button{
  height:48px;
  border:none;
  background:#f7b500;
  color:#111;
  font-weight:800;
  border-radius:999px;
  padding:0 20px;
  cursor:pointer;
}

.article-share-bottom{
  background:#fafafa;
  border:1px solid #ececec;
  border-radius:12px;
  padding:18px 20px;
}

.article-share-bottom p{
  margin:0 0 12px;
  font-weight:700;
}

.article-share-bottom-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.article-share-bottom-links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  background:#fff;
  border:1px solid #e7e7e7;
  color:#111;
  font-weight:700;
  transition:.2s;
}

.article-author-box{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#fff;
  border:1px solid #ececec;
  border-radius:14px;
  padding:22px;
}

.article-author-box-text h4{
  margin:0 0 8px;
  font-size:22px;
}

.article-author-box-text p{
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:#555;
}

.article-related-posts .section-heading,
.article-more-category .section-heading{
  background:none;
  border:none;
  box-shadow:none;
  padding:0;
  margin-bottom:16px;
}

.article-related-posts .section-heading h3,
.article-more-category .section-heading h3{
  margin:0;
  font-size:24px;
  line-height:1.2;
  color:#111;
}

.article-related-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.article-related-card{
  text-decoration:none;
  background:#fff;
  border:1px solid #ececec;
  border-radius:14px;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}

.article-related-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
}

.article-related-thumb{
  aspect-ratio:16 / 10;
  overflow:hidden;
}

.article-related-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.article-related-card-body{
  padding:14px;
}

.article-related-card-body span{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  color:#b57a00;
  text-transform:uppercase;
  letter-spacing:.4px;
  margin-bottom:8px;
}

.article-related-card-body h4{
  margin:0;
  font-size:16px;
  line-height:1.45;
  color:#111;
}

.article-more-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.article-more-item{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:14px;
  text-decoration:none;
  background:#fff;
  border:1px solid #ececec;
  border-radius:14px;
  padding:12px;
  transition:.2s ease;
}

.article-more-item:hover{
  box-shadow:0 8px 22px rgba(0,0,0,0.06);
}

.article-more-item img{
  width:100%;
  height:100px;
  object-fit:cover;
  border-radius:10px;
}

.article-more-item-text span{
  display:inline-block;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  color:#b57a00;
  margin-bottom:6px;
}

.article-more-item-text h4{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.45;
  color:#111;
}

.article-more-item-text small{
  color:#777;
  font-size:12px;
}

.article-sidebar{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.sidebar-sticky{
  position:sticky;
  top:95px;
}

/* =========================
   HOVER COLORS
========================= */
.article-share-top a:hover,
.article-share-floating a:hover,
.article-share-bottom-links a:hover,
.follow-item:hover{
  transform:translateY(-2px);
}

.share-facebook:hover{
  background:#1877f2;
  color:#fff;
  border-color:#1877f2;
}

.share-whatsapp:hover{
  background:#25d366;
  color:#fff;
  border-color:#25d366;
}

.share-telegram:hover{
  background:#229ed9;
  color:#fff;
  border-color:#229ed9;
}

.share-x:hover{
  background:#111;
  color:#fff;
  border-color:#111;
}

.share-linkedin:hover{
  background:#0a66c2;
  color:#fff;
  border-color:#0a66c2;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1100px){
  .header-inner,
  .feature-row,
  .content-grid,
  .footer-inner{
    grid-template-columns:1fr;
  }

  .main-menu{
    flex-wrap:wrap;
    gap:16px;
  }

  .article-layout{
    grid-template-columns:1fr;
  }

  .article-sidebar{
    order:2;
  }

  .sidebar-sticky,
  .article-sidebar{
    position:static;
  }

  .article-related-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width:768px){
  .latest-card{
    grid-template-columns:1fr;
  }

  .video-grid{
    grid-template-columns:1fr;
  }

  .hero-card img,
  .feature-big-card img{
    height:280px;
  }

  .sidebar-title h3,
  .section-heading h2{
    font-size:24px;
  }

  .latest-body h3{
    font-size:20px;
  }

  .main-menu{
    font-size:15px;
    gap:14px;
  }

  .header-inner{
    grid-template-columns:1fr;
  }

  .search-box{
    width:100%;
  }

  .topbar-inner{
    flex-direction:column;
    justify-content:center;
    gap:10px;
    padding:10px 0;
  }

  .article-layout{
    margin:18px auto 28px;
    gap:18px;
  }

  /* FOOTER MOBILE */

  .footer-inner{
    grid-template-columns:1fr;
    gap:28px;
    padding:32px 0 24px;
  }

  .footer-col h3{
    font-size:22px;
  }

  .footer-desc{
    font-size:14px;
  }

}

  .article-header{
    padding:18px 18px 20px;
  }

  .article-breadcrumb{
    padding:16px 18px 0;
  }

  .article-title{
    font-size:28px;
    line-height:1.2;
  }

  .article-excerpt{
    max-width:100%;
    font-size:16px;
  }


  .article-content-wrap{
    grid-template-columns:1fr;
    padding:18px;
  }

  .article-share-floating{
    position:static;
    flex-direction:row;
    flex-wrap:wrap;
    margin-bottom:8px;
  }

  .article-body{
    font-size:16px;
    line-height:1.85;
  }

  .article-body h2{
    font-size:24px;
  }

  .article-body h3{
    font-size:20px;
  }

  .article-note-box,
  .article-subscribe-box,
  .article-author-box,
  .article-share-bottom,
  .article-related-posts,
  .article-more-category{
    margin:0 18px 18px;
  }

  .article-related-grid{
    grid-template-columns:1fr;
  }

  .article-more-item{
    grid-template-columns:1fr;
  }

  .article-more-item img{
    height:180px;
  }

  .article-author-box{
    flex-direction:column;
  }

  .follow-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* FIX IMAGE SIZE FOR LATEST POSTS */
.latest-thumb {
  width: 280px;
  height: 180px;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  flex-shrink: 0;
}

.latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.feature-main {
  width: 100%;
  min-width: 0;
}

.feature-big-card {
  position: relative;
  display: block;
  width: 100%;
  height: 310px;
  overflow: hidden;
  border-radius: 18px;
}

.feature-big-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-big-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 18px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color: #fff;
}