.rx-hero {
  text-align: center;
  padding: 40px 20px 40;
}

.rx-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.rx-hero p {
  color: #777;
  font-size: 16px;
}
.archive .rx-blog-grid .rx-meta {
  display: flex;
  justify-content: space-between;
  margin: 10px 0px 0;
  font-size: 13px;
  color: #777;
}
.archive .rx-blog-grid .rx-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: space-between;*/

}
.rx-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 20px 30px;
  max-width: 1200px;
  margin: auto;
}

.rx-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.rx-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.rx-content {
  padding: 22px;
}

.rx-meta {
  font-size: 13px;
  color: #999;
  display: block;
  margin-bottom: 8px;
}

.rx-content h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.rx-content h3 a {
  color: #111;
  text-decoration: none;
}

.rx-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

.rx-btn {
  display: inline-block;
  background: #b3273b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.rx-btn:hover {
  background: #941f31;
}

@media (max-width: 900px) {
  .rx-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rx-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    padding: 10px 0;
}
}

@media (max-width: 600px) {
  .rx-blog-grid {
    grid-template-columns: 1fr;
  }
  .rx-hero h1 {
        font-size: 28px;
        margin-bottom: 0px;
        padding: 25px 0;
    }
}
