
#hero-12 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0 8rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
#hero-12 .container {
  position: relative;
}
#hero-12 .hero-content-wrapper-12 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#hero-12 .hero-title-12 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-12 .hero-subtitle-12 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}
#hero-12 .hero-cta-button-12 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-12 .hero-cta-button-12:hover {
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  #hero-12 {
    min-height: 60vh;
    padding: 4rem 0 6rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }
  #hero-12 .hero-title-12 {
    font-size: 2.4rem;
  }
  #hero-12 .hero-subtitle-12 {
    font-size: 1.1rem;
  }
}



/* Container */
#category-posts-25 {
  padding: 80px 20px;
  background: #f9fafb;
}
#category-posts-25 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#category-posts-25 .section-title {
  font-size: 2rem;
  font-weight: 600;
}
#category-posts-25 .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: .5rem;
}

/* Mosaic grid */
#category-posts-25 .mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  grid-template-areas:
    "large small1 small2"
    "large small3 small4";
  gap: 1rem;
}
@media (max-width: 992px) {
  #category-posts-25 .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
    grid-template-areas:
      "large large"
      "small1 small2"
      "small3 small4";
  }
}
@media (max-width: 576px) {
  #category-posts-25 .mosaic-grid {
    display: block;
  }
}

/* Card base */
#category-posts-25 .mosaic-card {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}
#category-posts-25 .mosaic-card:hover {
  transform: translateY(-5px);
}

/* Positioning */
#category-posts-25 .mosaic-card-1 { grid-area: large; }
#category-posts-25 .mosaic-card-2 { grid-area: small1; }
#category-posts-25 .mosaic-card-3 { grid-area: small2; }
#category-posts-25 .mosaic-card-4 { grid-area: small3; }
#category-posts-25 .mosaic-card-5 { grid-area: small4; }

/* Image fill */
#category-posts-25 .mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
#category-posts-25 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
  text-align: left;
}
#category-posts-25 .mosaic-card:hover .overlay {
  opacity: 1;
}

/* Overlay content */
#category-posts-25 .overlay h3 {
  font-size: 1.125rem;
  margin: 0 0 .5rem;
}
#category-posts-25 .overlay .meta {
  font-size: .875rem;
  margin-bottom: .75rem;
}
#category-posts-25 .overlay .meta i {
  margin-right: .25rem;
}

/* Read More button */
#category-posts-25 .btn-readmore {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid #fff;
  border-radius: .5rem;
  padding: .4rem .75rem;
  transition: background .3s ease, color .3s ease;
}
#category-posts-25 .btn-readmore:hover {
  background: #fff;
  color: #333;
}
#category-posts-25 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-25 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-25 .pagination-wrapper,
#category-posts-25 .load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}




#offers-7 {
  padding: 80px 0;
  background-color: #e9f5ff;
}
#offers-7 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: #0a58ca;
}
#offers-7 .offer-headline {
  text-align: center;
  font-weight: 500;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  color: #343a40;
}
#offers-7 .referral-steps-col h4 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #212529;
}
#offers-7 .referral-steps-list {
  list-style: none;
  padding-left: 0;
  counter-reset: step-counter;
  margin-bottom: 1.5rem;
}
#offers-7 .referral-steps-list li {
  counter-increment: step-counter;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 45px;
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
}
#offers-7 .referral-steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 1;
}
#offers-7 .reward-info {
  background-color: #fff;
  border: 1px dashed #0d6efd;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
}
#offers-7 .reward-info p {
  margin-bottom: 0.5rem;
}
#offers-7 .reward-info p:last-child {
  margin-bottom: 0;
}
#offers-7 .reward-info strong {
  color: #198754;
}
#offers-7 .referral-visual-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#offers-7 .referral-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 2rem;
}
#offers-7 .referral-cta-block {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  width: 100%;
  max-width: 450px;
}
#offers-7 .referral-cta-block p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #495057;
}
#offers-7 .referral-link-input {
  background-color: #e9ecef;
  font-family: monospace;
  font-size: 0.9rem;
  text-align: center;
}
#offers-7 .referral-cta-block .input-group {
  margin-bottom: 1rem;
}
#offers-7 .referral-cta-block .btn-copy {
  min-width: 100px;
}
#offers-7 .referral-cta-block .btn-invite {
  width: 100%;
  margin-top: 1rem;
  padding: 0.7rem;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  #offers-7 .referral-steps-col {
    margin-bottom: 3rem;
  }
  #offers-7 .referral-visual-col {
    order: -1;
    margin-bottom: 2rem;
  }
  #offers-7 .referral-image {
    max-width: 60%;
  }
}


