.rheonics-archive {
  background: #F9FAFB;
}

/* Hero Section */
.rheonics-hero {
  background-color: #0F5387;
  color: white;
  padding: 80px 0;
}

.rheonics-hero h1 {
  font-size: 48px;
  line-height: 54px;
  margin-bottom: 20px;
  font-weight: 700;
  width: 100%;
  max-width: 454px;
  color: white;
}

.rheonics-hero p {
  color: #D1D5DC;
  font-size: 20px;
  font-weight: 400;
  line-height: 32.5px;
  width: 100%;
  max-width: 980px;
}

.rheonics-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 17px;
  background-color: rgba(55, 170, 225, 0.2);
  border-color: rgba(55, 170, 225, 0.3);
  border-width: 1px;
  border-radius: 50px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: white;
}

.rheonics-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #37AAE1;
  border-radius: 50%;
  margin-right: 10px;
}

/* Filters */
.rheonics-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px auto;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: white;
  color: #0A0A0A;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.filter-btn.active {
  background: #0F5387;
  color: white;
}

.filters-left {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn span {
  background: rgba(0,0,0,0.05);
  padding: 0px 8px;
  border-radius: 50px;
  font-size: 12px;
}

.filter-btn.active span {
  background: rgba(255,255,255,0.2);
}

.items-count {
  color: #4A5565;
  font-size: 14px;
}

/* CTA */
.rheonics-cta {
  margin: 60px auto;
  padding: 30px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #37AAE1;
  background: linear-gradient(287deg, rgba(55, 170, 225, 0.00) 25.43%, rgba(91, 185, 238, 0.17) 49.86%, rgba(135, 203, 255, 0.00) 80.2%), linear-gradient(273deg, rgba(55, 170, 225, 0.00) -104.06%, rgba(0, 144, 255, 0.09) 91.91%), rgba(129, 214, 255, 0.00);
  box-shadow: 0 20px 50px 0 rgba(219, 219, 219, 0.50);
}

.rheonics-cta h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #0F5387;
  margin: 10px 0px 20px;
}

.rheonics-cta p {
  color: #282828;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  max-width: 650px;
  margin: 0 auto 20px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.cta-buttons .btn {
  border-radius: 8px;
  border: 1px solid #0F5387;
  background: #ECEEF2;
  display: flex;
  height: 40px;
  padding: 9px 14px 11px 16px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #0F5387;
  font-size: 14px;
  font-weight: 500;
}

/* Pagination */
.rheonics-pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
}

.rheonics-pagination a,
.rheonics-pagination span {
  padding: 8px 12px;
  border-radius: 6px;
  background: #f2f2f2;
  text-decoration: none;
  color: #333;
}

.rheonics-pagination .current {
  background: #0a66c2;
  color: white;
}

/* Prev Blog Banner */
.rheonics-previous-blog {
  padding: 40px 0;
  background: #0F5387;
}

.previous-blog-content {
  max-width: 100%;
}

.previous-blog-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  margin-bottom: 8px;
}

.previous-blog-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.previous-blog-info h3 {
  margin-top: 0px;
  font-size: 18px;
  color: white;
}

.previous-blog-info p {
  font-size: 14px;
  margin: 0px;
  color: white;
}

.previous-blog-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  color: #1e73be;
  padding: 10px 14px;
  border-radius: 8px;
  background-color: white;
}

/* Responsive */
@media (max-width: 1024px) {

  .items-count {
    display: block;
    margin-top: 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .previous-blog-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}