.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head-row .section-title {
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #092033;
  margin: 0 0 14px;
}

.section-sub {
  font-size: 16.5px;
  color: #4b5563;
  max-width: 62ch;
  margin: 0 0 36px;
}

/* FILTERS */
.posts-toolbar {
  margin: 20px 0;
}

.filter-chips {
	display: flex;
	column-gap: 8px;
	flex-wrap: wrap;
	row-gap: 12px;
}

.filter-chips .chip {
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid #cdd3dc;
	background: #fff;
	font-size: 13px;
	font-weight: 600;
	color: #2a3947;
	cursor: pointer;
	transition: all 0.15s ease;
}

.chip.active {
  background: #092033;
  color: #fff;
  border-color: #092033;
}

.attr-card .ico-3 {
	background: #f7e7f0;
	color: #af1685;
}

/* GRID */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e9ee;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
}

.post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(9, 32, 51, .18), 0 8px 16px -8px rgba(9, 32, 51, .10);;
  border-color: #cdd3dc;
}

.post-img {
  flex: 0 0 auto;
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: #092033;
}

.post-img .topic-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.95);
  color: #092033;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1.5;
}

.img-mock {
	width: 100%;
	height: 100%;
	position: relative;
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, 0.92);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.img-mock::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, 0.18),
      transparent 50%
    ),
    radial-gradient(circle at 90% 110%, rgba(0, 0, 0, 0.25), transparent 60%);
}
.img-mock svg {
  width: 42%;
  height: auto;
  opacity: 0.5;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}

/* IMAGE */
.post-thumb {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.post-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

/* CONTENT */
.post-content {
  padding: 16px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: #737373;
  font-weight: 500;
}

.post-topic {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.post-title {
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
  color: #092033;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.post-excerpt {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}
.read-more {
  font-size: 13.5px;
  font-weight: 700;
  color: #43b02a;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.posts-by-author .more-row {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.posts-by-author .more-row .btn-ghost {
	color: #092033;
	background: transparent;
	border-color: #cdd3dc;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 14.5px;
	letter-spacing: 0.01em;
	cursor: pointer;
	gap: 8px;
	padding: 11px 20px;
	border-radius: 999px;
	border-width: 1.5px;
	border-style: solid;
	border-image: initial;
	transition: transform 0.12s, background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}


.posts-by-author .more-row  .btn-ghost:hover {
    color: #092033;
    border-color: #092033;
}