/*
Theme Name: LionExpress Custom
Theme URI: https://example.com/
Author: Custom
Description: News style theme with LionExpress-like homepage.
Version: 1.0
Text Domain: lionexpress-custom
*/

body { margin:0; font-family: "Poppins", sans-serif; background:#f5f5f5; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }

/* containers */
.le-container-full { width:100%; }
.le-container { width:95%; max-width:1300px; margin:0 auto; }

/* top banner */
.le-top-banner img { width:100%; display:block; }

/* main layout */
.le-main-three {
  display:grid;
  grid-template-columns:220px minmax(0,1fr) 340px;
  gap:20px;
  margin-top:20px;
}

/* left menu */
.le-left-menu {
  background:#ffffff;
  border-radius:18px;
  padding:12px 0;
  position:sticky;
  top:15px;
  align-self:flex-start;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.le-left-menu ul { list-style:none; }
.le-left-menu li { margin:2px 0; }
.le-left-menu a {
  display:flex;
  align-items:center;
  padding:10px 16px;
  border-radius:999px;
  margin:4px 10px;
  font-size:14px;
  transition:0.2s;
}
.le-left-menu .icon {
  width:28px;
  height:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right:10px;
  background:#ffe6e6;
  color:#d20000;
  font-size:16px;
}
.le-left-menu li.active a,
.le-left-menu a:hover {
  background:#ffefef;
  color:#d20000;
}
.le-app-buttons { margin-top:15px; padding:0 14px 8px; }
.le-app-buttons img { border-radius:12px; margin-bottom:8px; }

/* center content */
.le-center-content { min-height:400px; }

/* tabs */
.le-tabs-bar {
  background:#ffffff;
  border-radius:999px;
  padding:6px;
  display:flex;
  flex-wrap:wrap;
  gap:4px;
  margin-bottom:14px;
  box-shadow:0 1px 4px rgba(0,0,0,0.06);
}
.le-tabs-bar .tab {
  padding:6px 14px;
  border-radius:999px;
  font-size:13px;
  cursor:pointer;
  color:#555;
  white-space:nowrap;
}
.le-tabs-bar .tab.active { background:#d20000; color:#fff; }

/* lead post */
.le-main-news-card {
  background:#ffffff;
  border-radius:18px;
  padding:16px 18px 20px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  margin-bottom:14px;
}
.le-main-title { font-size:22px; line-height:1.3; margin-bottom:6px; }
.le-main-meta { font-size:12px; color:#777; margin-bottom:10px; }
.le-main-image img { border-radius:14px; margin-bottom:12px; }
.le-main-excerpt { font-size:14px; color:#444; }

/* article list */
.le-article-list-wrap {
  margin-top:20px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  padding:10px 16px;
}
.le-post-item {
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
  border-bottom:1px solid #f0f0f0;
}
.le-post-item:last-child { border-bottom:none; }
.le-post-left { flex:1; }
.le-post-title a { font-size:20px; color:#111; }
.le-post-title a:hover { color:#d20000; }
.le-post-meta { font-size:13px; color:#777; margin-top:6px; }
.le-post-right { width:180px; flex-shrink:0; }
.le-thumb img { border-radius:12px; }

/* right ads */
.le-right-ad {
  align-self:flex-start;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.le-ad-card {
  background:#ffffff;
  border-radius:18px;
  padding:10px;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
}
.le-ad-card img { border-radius:12px; }

/* responsive */
@media (max-width:1100px){
  .le-main-three{ grid-template-columns:190px minmax(0,1fr);}
  .le-right-ad{ display:none;}
}
@media (max-width:768px){
  .le-main-three{ grid-template-columns:1fr;}
  .le-left-menu{
    position:static;
    display:flex;
    overflow-x:auto;
    border-radius:12px;
  }
  .le-left-menu ul{ display:flex; }
  .le-left-menu a{ margin:4px; }
  .le-app-buttons{ display:none; }
  .le-post-item{ flex-direction:column; }
  .le-post-right{ width:100%; }
}


/* ===== HEADER (LionExpress style) ===== */
.le-main-header {
  background:#ffffff;
  border-bottom:1px solid #e5e5e5;
}

.le-header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:6px 0;
}

/* Logo */
.le-logo-img {
  height:60px;
  width:auto;
}

/* Center menu */
.le-header-nav {
  flex:1;
  display:flex;
  justify-content:center;
}

.le-header-menu {
  list-style:none;   /* bullets off */
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:24px;
  font-size:18px;
}

.le-header-menu li {
  margin:0;
  padding:0;
}

.le-header-menu li a {
  display:flex;
  align-items:center;
  gap:6px;
  color:#111;
}

.le-header-menu li a .icon {
  font-size:18px;
}

/* hover color */
.le-header-menu li a:hover {
  color:#d20000;
}

/* Right icons */
.le-header-right {
  display:flex;
  align-items:center;
  gap:8px;
}

.le-icon-btn {
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid #ddd;
  background:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

/* Responsive */
@media (max-width:900px){
  .le-header-inner {
    flex-wrap:wrap;
    row-gap:8px;
  }
  .le-header-nav {
    order:3;
  }
  .le-header-menu {
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
  }
}

@media (max-width:600px){
  .le-header-inner {
    flex-direction:column;
    align-items:flex-start;
  }
  .le-header-nav {
    width:100%;
  }
  .le-header-menu {
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .le-header-right {
    align-self:flex-end;
  }
}
