/* ===== BLOGS PAGE ===== */


.nav-active{
  color: var(--yellow) !important;
  font-weight: 600 !important;
}

/* ===== HERO ===== */
.blogs-hero{
  padding: clamp(80px, 12vh, 140px) 0 clamp(40px, 6vh, 80px);
  background: #fff;
  position: relative;
}
.blogs-hero-eyebrow{
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}
.blogs-hero-title{
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  letter-spacing: -3px;
  line-height: 1.0;
  margin: 0 0 24px;
  color: var(--ink);
}
.blogs-hero-lead{
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(23,23,23,.55);
  max-width: 48ch;
  margin: 0;
  line-height: 1.7;
}
.blogs-hero-line{
  width: 100%;
  height: 1px;
  background: rgba(23,23,23,.1);
  margin-top: clamp(40px, 6vh, 80px);
}

/* ===== FEATURED POST ===== */
.blogs-featured{
  padding: clamp(40px, 6vh, 80px) 0;
  background: #fff;
}
.blogs-featured-card{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .3s ease;
}
.blogs-featured-card:hover{
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.bfc-img{
  height: clamp(320px, 45vh, 520px);
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform .6s ease;
  overflow: hidden;
}
.blogs-featured-card:hover .bfc-img{
  transform: scale(1.03);
}
.bfc-tag{
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--yellow);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.bfc-body{
  padding: clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.bfc-meta{
  display: flex;
  align-items: center;
  gap: 16px;
}
.bfc-date, .bfc-read{
  font-size: 12px;
  color: rgba(23,23,23,.45);
  font-weight: 500;
}
.bfc-read::before{
  content: '·';
  margin-right: 16px;
}
.bfc-title{
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 300;
  letter-spacing: -.5px;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}
.bfc-excerpt{
  font-size: 15px;
  color: rgba(23,23,23,.6);
  line-height: 1.75;
  margin: 0;
}
.bfc-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  width: fit-content;
  transition: color .2s, border-color .2s;
}
.blogs-featured-card:hover .bfc-link{
  color: var(--yellow);
  border-color: var(--yellow);
}

/* ===== FILTER TABS ===== */
.blogs-filter-section{
  padding: 0 0 40px;
  background: #fff;
}
.blogs-filter-tabs{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(23,23,23,.1);
  padding-bottom: 0;
}
.bft-tab{
  background: none;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: rgba(23,23,23,.45);
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.bft-tab:hover{
  color: var(--ink);
}
.bft-tab.active{
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ===== BLOG GRID ===== */
.blogs-grid-section{
  padding: 40px 0 80px;
  background: #fff;
}
.blogs-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.bg-card{
  border-radius: 18px;
  overflow: hidden;
  background: #f7f7f7;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow .3s ease, transform .3s ease;
}
.bg-card:hover{
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.bg-card.is-hidden{
  display: none;
}
.bg-card-img{
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
  overflow: hidden;
}
.bg-card:hover .bg-card-img{
  transform: scale(1.04);
}
.bg-card-body{
  padding: 20px 22px 24px;
}
.bg-tag{
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}
.bg-title{
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: -.2px;
  line-height: 1.45;
  margin: 0 0 14px;
  color: var(--ink);
}
.bg-meta{
  display: flex;
  align-items: center;
  gap: 12px;
}
.bg-date, .bg-read{
  font-size: 12px;
  color: rgba(23,23,23,.4);
}

/* ===== CTA STRIP ===== */
.blogs-cta{
  background: var(--ink);
  padding: clamp(48px, 8vh, 80px) 0;
}
.blogs-cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.blogs-cta-title{
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 8px;
}
.blogs-cta-sub{
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin: 0;
}
.blogs-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease;
}
.blogs-cta-btn:hover{
  transform: translateX(4px);
  background: #d4541e;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px){
  .blogs-featured-card{
    grid-template-columns: 1fr;
  }
  .bfc-img{
    height: 280px;
  }
  .blogs-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px){
  .blogs-grid{
    grid-template-columns: 1fr;
  }
  .blogs-hero-title{
    letter-spacing: -2px;
  }
  .blogs-cta-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}
