
/* Section spacing & background */
#category-posts-19 {
  padding: 80px 0;
  background: #f7f8fa;
}

/* Header */
#category-posts-19 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#category-posts-19 .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
}
#category-posts-19 .section-subtitle {
  font-size: 1rem;
  color: #555;
}

/* Grid cards */
#category-posts-19 .post-card-wrapper {
  display: block;
  text-decoration: none;
  color: inherit;
}
#category-posts-19 .post-card {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
#category-posts-19 .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Image */
#category-posts-19 .post-card img {
  width: 100%;
  display: block;
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
}

/* Card body */
#category-posts-19 .card-body {
  padding: 1rem;
}
#category-posts-19 .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: #222;
}
#category-posts-19 .card-meta {
  font-size: .875rem;
  color: #888;
  margin-bottom: .75rem;
}
#category-posts-19 .card-meta i {
  margin-right: .25rem;
}

/* Excerpt */
#category-posts-19 .card-excerpt {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Read More button */
#category-posts-19 .btn-readmore {
  font-size: .875rem;
  font-weight: 500;
  color: #4f46e5;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color .3s ease;
}
#category-posts-19 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-19 .btn-readmore:hover {
  color: #4338ca;
}
#category-posts-19 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-19 .pagination-wrapper,
#category-posts-19 .load-more-wrapper {
  text-align: center;
  margin-top: 2.5rem;
}




/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #fff;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #666;
  margin-top: 8px;
}

/* === Tabs Nav === */
.post-tabs {
  margin-bottom: 30px;
}
.post-tabs .nav-link {
  font-weight: 600;
  color: #555;
  border: none;
  border-bottom: 2px solid transparent;
}
.post-tabs .nav-link.active {
  color: #000;
  border-color: #007bff;
}

/* === Grid === */
.tab-content .post-grid {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .tab-content .post-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@media (min-width: 992px) {
  .tab-content .post-grid {
    grid-template-columns: repeat(3,1fr);
  }
}
.post-card {
  background: #f8f9fa;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}
.post-card:hover {
  transform: translateY(-5px);
}
.post-card img {
  width: 100%;
  display: block;
}
.post-card .card-body {
  padding: 1rem;
}
.post-card .card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.post-card .card-body p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}
.post-card .btn-readmore {
  font-size: 0.85rem;
}

/* === More Posts Button === */
.more-post-btn {
  text-align: center;
  margin-top: 40px;
}




#offers-1 {
  padding: 60px 0;
  background-color: #f1f3f5;
}
#offers-1 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #1a1a1a;
}
#offers-1 .offer-card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
#offers-1 .offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
#offers-1 .offer-card .card-img-top {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: brightness(0.95);
}
#offers-1 .offer-card .card-body {
  padding: 1.5rem;
}
#offers-1 .offer-card .card-title {
  font-weight: 600;
  font-size: 1.15rem;
  color: #0d6efd;
  margin-bottom: 0.75rem;
}
#offers-1 .offer-card .card-text {
  color: #495057;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
#offers-1 .offer-code-wrapper {
  margin-bottom: 0.5rem;
  min-height: 30px;
}
#offers-1 .offer-code {
  font-weight: 700;
  color: #fff;
  background-color: #dc3545;
  padding: 0.3rem 0.8rem;
  border-radius: 50rem;
  font-size: 0.85rem;
  display: inline-block;
  letter-spacing: 0.5px;
  margin-left: 5px;
}
#offers-1 .offer-expiry {
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 1.2rem;
  min-height: 20px;
}
#offers-1 .offer-expiry i {
  margin-right: 5px;
}
#offers-1 .offer-card .btn-offer-cta {
  padding: 0.7rem 1.3rem;
  font-weight: 600;
  background-color: #198754;
  border: none;
}
#offers-1 .offer-card .btn-offer-cta:hover {
  background-color: #157347;
}


