.gro-blog-grid {
  display: grid;
  gap: 1.5rem;
  margin: 1rem 0 2rem;
}

.gro-blog-grid,
.gro-card,
.gro-card-body,
.gro-pagination,
.gro-breadcrumb,
.gro-search-form,
.gro-sort-form,
.gro-tax-list,
.gro-reset,
.gro-page-link,
.gro-title,
.gro-title a,
.gro-excerpt,
.gro-meta,
.gro-read-more,
.gro-pill {
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.gro-blog-grid.gro-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gro-blog-grid.gro-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gro-blog-grid.gro-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .gro-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gro-blog-grid {
    grid-template-columns: 1fr;
  }
}

.gro-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.07);
}

.gro-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gro-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gro-meta {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.gro-title {
  font-size: 1.15rem;
  margin: 0;
}

.gro-title a {
  color: #0f172a;
  text-decoration: none;
}

.gro-title a:hover {
  color: #25b68d;
}

.gro-excerpt {
  color: #475569;
  font-size: 0.98rem;
}

.gro-read-more {
  align-self: flex-start;
  color: #25b68d;
  text-decoration: none;
  font-weight: 600;
}

.gro-pagination {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}

.gro-page-link a,
.gro-page-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
}

.gro-page-link .current {
  background: #25b68d;
  color: #fff;
  border-color: #25b68d;
}

.gro-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  flex-wrap: nowrap;
  min-width: 0;
}

.gro-breadcrumb a {
  color: #25b68d;
  text-decoration: none;
}

.gro-breadcrumb>*:not(:last-child) {
  flex-shrink: 0;
}

.gro-breadcrumb> :last-child {
  flex: 1 1 0;
  min-width: 0;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gro-sep {
  color: #94a3b8;
}

.gro-search-form,
.gro-sort-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.gro-search-form input[type='search'] {
  flex: 1;
  padding: 0.55rem 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.gro-search-form button,
.gro-sort-form select {
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.gro-tax-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.gro-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #0f172a;
  background: #fff;
}

.gro-pill.is-active {
  background: #25b68d;
  color: #fff;
  border-color: #25b68d;
}

.gro-reset {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}

.gro-recent-list {
  display: grid;
  gap: 0.6rem;
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.gro-recent-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.gro-recent-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
}

.gro-recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gro-recent-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.gro-recent-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  padding-bottom: 5px;
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.gro-recent-title a {
  color: #25b68d;
  text-decoration: none;
}

.gro-recent-title a:hover {
  text-decoration: underline;
}

.gro-recent-link {
  font-size: 0.95rem;
  color: #0f172a;
  text-decoration: underline;
  font-weight: 600;
  font-family: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
}

.gro-recent-thumb.placeholder {
  background: #e2e8f0;
}

.gro-single-nav {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.gro-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  background: #fff;
  color: #0f172a;
  min-width: 0;
}

.gro-nav-btn.placeholder {
  visibility: hidden;
}

.gro-nav-label {
  font-size: 0.9rem;
  color: #64748b;
}

.gro-nav-title {
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.gro-nav-btn.is-prev {
  align-items: flex-start;
}

.gro-nav-btn.is-next {
  align-items: flex-end;
}