/*
Theme Name: Hello Leopards Blog
Template: hello-elementor
Version: 1.0
*/

:root {
  --lcs-yellow: #f6c400;
  --lcs-black: #111111;
  --lcs-dark: #222222;
  --lcs-grey: #f5f5f5;
  --lcs-text: #333333;
}

.lcs-blog-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 20px;
}

.lcs-post-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  margin-bottom: 30px;
}

.lcs-post-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.lcs-post-card-content {
  padding: 28px;
}

.lcs-category {
  display: inline-block;
  background: var(--lcs-yellow);
  color: var(--lcs-black);
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.lcs-post-card h2,
.lcs-single-title {
  color: var(--lcs-black);
  font-weight: 800;
  line-height: 1.2;
}

.lcs-post-card h2 {
  font-size: 28px;
}

.lcs-post-card h2 a {
  color: inherit;
  text-decoration: none;
}

.lcs-meta {
  color: #777;
  font-size: 14px;
  margin: 12px 0 18px;
}

.lcs-excerpt {
  color: var(--lcs-text);
  line-height: 1.7;
}

.lcs-read-more {
  display: inline-block;
  margin-top: 18px;
  background: var(--lcs-black);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.lcs-read-more:hover {
  background: var(--lcs-yellow);
  color: var(--lcs-black);
}

.lcs-single-hero {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.lcs-single-title {
  color: #fff;
  font-size: 46px;
  max-width: 950px;
  margin: 15px auto;
}

.lcs-single-content {
  max-width: 820px;
  margin: 50px auto;
  padding: 0 20px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--lcs-text);
}

.lcs-single-content h2 {
  font-size: 32px;
  color: var(--lcs-black);
  margin-top: 40px;
  border-left: 6px solid var(--lcs-yellow);
  padding-left: 16px;
}

.lcs-single-content h3 {
  font-size: 26px;
  color: var(--lcs-black);
  margin-top: 30px;
}

.lcs-single-content img {
  border-radius: 16px;
  margin: 25px 0;
}

.lcs-cta {
  background: var(--lcs-yellow);
  color: var(--lcs-black);
  padding: 35px;
  border-radius: 18px;
  margin: 45px 0;
  text-align: center;
}

.lcs-cta h3 {
  margin-top: 0;
}

.lcs-post-nav {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lcs-post-nav a {
  color: var(--lcs-black);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 768px) {
  .lcs-single-title {
    font-size: 32px;
  }

  .lcs-post-card h2 {
    font-size: 24px;
  }

  .lcs-post-nav {
    flex-direction: column;
  }
}

.lcs-blog-page {
  background: #f5f5f5;
}

.lcs-blog-banner {
  background: linear-gradient(135deg, #111 0%, #3a3a3a 100%);
  border-bottom: 5px solid #f6c400;
  padding: 70px 20px;
  text-align: center;
}

.lcs-blog-banner h1 {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  margin: 0 0 12px;
}

.lcs-blog-banner p {
  color: #ddd;
  font-size: 18px;
  margin: 0;
}

.lcs-blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 35px;
}

.lcs-blog-main {
  width: 100%;
}

.lcs-featured-post {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 45% 55%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  border-top: 5px solid #f6c400;
}

.lcs-featured-post img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.lcs-featured-content {
  padding: 35px;
}

.lcs-featured-content h2 {
  font-size: 34px;
  line-height: 1.2;
  margin: 15px 0;
}

.lcs-featured-content h2 a {
  color: #111;
  text-decoration: none;
}

.lcs-blog-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lcs-blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}

.lcs-blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.lcs-blog-card-body {
  padding: 24px;
}

.lcs-blog-card h2 {
  font-size: 23px;
  line-height: 1.3;
}

.lcs-blog-card h2 a {
  color: #111;
  text-decoration: none;
}

@media (max-width: 900px) {
  .lcs-blog-container {
    grid-template-columns: 1fr;
  }

  .lcs-featured-post {
    grid-template-columns: 1fr;
  }

  .lcs-blog-grid-two {
    grid-template-columns: 1fr;
  }
}

.lcs-blog-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.lcs-blog-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.lcs-read-btn {
  display: inline-block;
  margin-top: 10px;
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

.lcs-read-btn:hover {
  background: #f6c400;
  color: #111;
}

.lcs-blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.lcs-sidebar-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  border-top: 5px solid #f6c400;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.lcs-sidebar-box h3 {
  font-size: 22px;
  color: #111;
  margin: 0 0 18px;
}

.lcs-sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lcs-sidebar-box li {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.lcs-sidebar-box li:last-child {
  border-bottom: none;
}

.lcs-sidebar-box a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.lcs-sidebar-box a:hover {
  color: #c89d00;
}

@media (max-width: 1100px) {
  .lcs-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .lcs-blog-container {
    grid-template-columns: 1fr;
  }

  .lcs-blog-grid {
    grid-template-columns: 1fr;
  }

  .lcs-blog-banner h1 {
    font-size: 34px;
  }
}

.lcs-single-page {
  background: #f5f5f5;
}

.lcs-single-hero {
  background: linear-gradient(135deg, #111 0%, #333 100%);
  border-bottom: 5px solid #f6c400;
  padding: 65px 20px;
  text-align: center;
}

.lcs-single-hero h1 {
  max-width: 950px;
  margin: 18px auto 12px;
  color: #fff;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
}

.lcs-single-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 35px;
}

.lcs-single-main {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.lcs-single-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

.lcs-single-content {
  padding: 40px;
  font-size: 18px;
  line-height: 1.85;
  color: #333;
}

.lcs-single-content h2 {
  font-size: 32px;
  color: #111;
  border-left: 6px solid #f6c400;
  padding-left: 15px;
  margin-top: 35px;
}

.lcs-single-content h3 {
  font-size: 26px;
  color: #111;
  margin-top: 28px;
}

.lcs-author-box {
  margin: 0 40px 40px;
  padding: 28px;
  background: #f7f7f7;
  border-left: 5px solid #f6c400;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.lcs-author-avatar img {
  border-radius: 50%;
}

.lcs-author-box h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #111;
}

.lcs-author-box p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.lcs-post-nav {
  padding: 0 40px 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.lcs-post-nav a {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.lcs-post-nav a:hover {
  color: #c89d00;
}

@media (max-width: 900px) {
  .lcs-single-container {
    grid-template-columns: 1fr;
  }

  .lcs-single-hero h1 {
    font-size: 32px;
  }

  .lcs-single-content {
    padding: 28px;
  }

  .lcs-author-box {
    margin: 0 28px 28px;
    flex-direction: column;
    text-align: center;
  }
}