.activityPage {
  padding: 26px 0 40px;
}

.activityPage__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
  color: #111;
}

.activityPage__muted {
  color: #666;
  margin-top: 8px;
}

.activityYearBlock {
  margin-bottom: 26px;
}

.activityGrid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .activityGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .activityGrid {
    grid-template-columns: 1fr;
  }
}

.postCard {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.postCard:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.postCard__img {
  height: 120px;
  background: #d9d9d9;
  background-size: cover;
  background-position: center;
}

.postCard__body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.postCard__title {
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 6px;
  color: #111;
}

.postCard__date {
  font-size: 10px;
  margin: 0 0 10px;
  color: #666;
}

.postCard__actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.btn {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--black {
  background: #111;
  color: #fff;
  font-size: 10px;
  padding: 6px 10px;
}

.btn--black:hover,
.btn--viewMore:hover {
  opacity: 0.9;
}

.activityBottom {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.btn--viewMore {
  background: #111;
  color: #fff;
  padding: 8px 16px;
  font-size: 11px;
  border-radius: 7px;
}

@media (max-width: 620px) {
  .btn--black {
    padding: 8px 12px;
    font-size: 12px;
  }
  .btn--viewMore {
    padding: 10px 18px;
    font-size: 12px;
  }
}
