  :root {
  --black: #111111;
  --gray: #6b6b6b;
  --light-gray: #9a9a9a;
  --border: #e5e5e5;
  --red: #e53935;
}
a {
    background-color: transparent;
    color: #000000;
    text-decoration: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Karla', sans-serif;
  color: var(--black);
  background: #ffffff;
}

img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* LAYOUT */
.container {
  max-width: 1290px;
  margin:50px auto;
  padding: 24px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr;
  gap: 32px;
}

/* TRENDING */
.section-title {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 16px;
}

.trending .post {
  margin-bottom: 28px;
}

.category {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--light-gray);
  margin: 8px 0 4px;
}

.trending h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* FEATURED */
.featured img {
  border-radius: 6px;
}

.tags {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--light-gray);
}

.featured h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin: 12px 0;
}

.meta {
  font-size: 13px;
  color: var(--gray);
}

/* SIDEBAR */
.sidebar {
  display: block;
}

.ad-box,
.editor-box {
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 24px;
}

.ad-title {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color:#000000;
  margin-bottom: 10px;
}

.btn {
    display: block;
    text-align: center;
    background: var(--red);
    color: #fff !important;
    padding: 10px;
    margin-top: 12px;
    border-radius: 4px;
    font-size: 19px;
    text-decoration: none;
    background:#000000;
}

.editor-box h5 {
  font-size: 13px;
  margin-bottom: 12px;
}

.mini-post {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.mini-post p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
/* ===============================
   MAIN SECTION
================================ */
.container {
  max-width: 1290px;
  margin:80px auto;
  padding: 0 20px;
  font-family: 'Karla', sans-serif;
}

.editors-choice__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ===============================
   GRID LAYOUT
================================ */
.editors-choice__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}

/* ===============================
   LEFT FEATURED POST
================================ */
.featured-post {
  position: sticky;
  top: 20px;
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
}

.featured-post__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #ffffff;
  max-width: 80%;
      background: #0000009e;
    PADDING: 12px;
    border-radius: 10px;
    
}
.featured-post__content h3 a{
 color: #ffff!important;
}
.featured-post__content span{
    color: #e53935 !important;
    background: #fff;
    padding: 10px;
    border-radius: 26px;
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 0px;
    display: inline-block;
}
.featured-post__category {
  font-size: 12px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.featured-post__title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 10px;
}

/* ===============================
   RIGHT POSTS GRID
================================ */
.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap:5px;
}
.post-card__title{
margin:0;
}

.post-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.post-card__category {
  font-size: 11px;
  letter-spacing: 1px;
  color: #777;
}

.post-card__title {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
}
.post-card__title:hover{
color:#f23a0b;
}

/* ===============================
   MORE BUTTON
================================ */
#editors-choice-more {
  text-align: center;
  margin-top: 45px;
}

.editors-choice__button {
  border: 1px solid #000;
  background: transparent;
  padding: 10px 30px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s ease;
}

.editors-choice__button:hover {
  background: #000;
  color: #fff;
}

/* Team Section */
.team-section {
  font-family: 'Karla', sans-serif;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.team-mission,.team-members{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* Left Mission */
.team-mission h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight:700;
}

.team-mission p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  max-width: 420px;
}

.team-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  text-decoration: underline;
  color: #000;
}

/* Right Team */
.team-members h2 {
    font-size: 32px;
    margin-bottom: 15px;
    position: absolute;
    top: -57px;
        font-weight: 700;
}

.team-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
  margin-bottom: 35px;
}

/* Cards */
.team-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.team-card {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.team-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card span {
  font-size: 12px;
  line-height: 1.5;
  color: #555;
}
/* SECTION BASE */
.lp-posts-section {
  font-family: 'Karla', sans-serif;
}

/* GRID */
.lp-posts-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 40px;
}

/* LEFT */
.lp-section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
}

.lp-post-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.lp-post-item img {
  width:239px;
  border-radius: 8px;
  object-fit: cover;
}

.lp-post-category {
  font-size: 12px;
  text-transform: uppercase;
  color: #777;
}

.lp-post-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 6px;
}

.lp-post-title a {
  color: #000;
  text-decoration: none;
}

.lp-post-title a:hover {
  text-decoration: underline;
}

/* PAGINATION */
.lp-pagination {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}

.lp-page-btn {
  padding: 6px 12px;
  border: 1px solid #ddd;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.lp-page-btn:hover {
  background: #000;
  color: #fff;
}

.lp-page-btn.active {
  background: #000;
  color: #fff;
}

.lp-page-dots {
  padding: 6px 10px;
  color: #777;
}

/* RIGHT SIDEBAR */
.lp-posts-right {
  position: relative;
}

.lp-sticky-box {
  position: sticky;
  top: 20px;
}

.lp-featured-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.lp-sidebar-title {
font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    text-align: center;
}
#editors-choice-section{
background: #f1f1f1;
    padding: 19px;
    border-radius: 12px;
}
.lp-sidebar-list {
  list-style: none;
  padding: 0;
}

.lp-sidebar-list li {
  margin-bottom: 12px;
}

.lp-sidebar-list a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

.lp-sidebar-list a:hover {
  text-decoration: underline;
}
/* BASE */
.nxh-header {
  font-family: 'Karla', sans-serif;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .lp-posts-grid {
    grid-template-columns: 1fr;
  }

  .lp-post-item {
    flex-direction: column;
  }

  .lp-post-item img {
    width: 100%;
  }

  .lp-sticky-box {
    position: static;
  }

  .lp-pagination {
    justify-content: center;
  }
}

/* Responsive */
@media (max-width:999px) {
.team-mission{
    width: 330px;
}
.team-cards {
  grid-template-columns: repeat(2, 1fr);
}

}
@media (max-width:560px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-cards {
    grid-template-columns: 1fr 1fr;
  }
  .team-members h2 {
    position: relative;
    top: 0px;
}
.team-section {
    padding:7px 0px 0px 0px;
}


  .team-mission h2,
  .team-members h2 {
    font-size: 26px;
  }
  .container {
    margin: 38px auto;
    padding: 0 20px;
    font-family: 'Karla', sans-serif;
}
.lp-posts-grid {
    display: flex;
    flex-direction: column-reverse;
}
}


/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1500px) {
.container {
  max-width: 1190px;
}
  }
@media (max-width: 900px) {
  .editors-choice__grid {
    grid-template-columns: 1fr;
  }
  .featured-post {
    position: relative;
    height: 360px;
  }
}
/* RESPONSIVE */
@media (max-width: 1100px) {
  .grid {
    grid-template-columns: 1fr 2fr 1fr;
  }
}

@media (max-width:580px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .featured h1 {
    font-size: 26px;
  }
}
