.mc-chip {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 100px;
  background: var(--mc-sage);
  color: var(--mc-brand-600);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mc-chip--solid {
  background: var(--mc-accent);
  color: var(--mc-ink);
}

.mc-feature-wrap {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.mc-feature-post {
  background: var(--mc-white);
  border: 1px solid var(--mc-border);
  border-radius: var(--mc-radius-lg);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15, 46, 44, 0.07);
  transition: box-shadow .45s var(--mc-ease);
}

.mc-feature-post:hover {
  box-shadow: var(--mc-shadow-lg);
}

.mc-feature-post__inner {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  align-items: stretch;
}

.mc-feature-post__media {
  border-radius: 0;
}

.mc-feature-post__media img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

.mc-feature-post__body {
  padding: 46px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mc-feature-post__tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.mc-feature-post__body h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1.2;
  margin-bottom: 15px;
}

.mc-feature-post__body>p {
  font-size: 0.97rem;
  margin-bottom: 24px;
}

.mc-feature-post__meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px 0 24px;
  border-top: 1px solid var(--mc-border);
  font-size: 0.84rem;
  color: var(--mc-text-muted);
}

.mc-feature-post__meta i {
  color: var(--mc-accent-600);
  margin-right: 7px;
}

.mc-feature-post__body .mc-btn {
  align-self: flex-start;
}

.mc-bloglist__grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 50px;
  align-items: start;
}

.mc-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 30px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--mc-border);
}

.mc-filter__chip {
  padding: 9px 20px;
  border: 1px solid var(--mc-border);
  border-radius: 100px;
  background: transparent;
  color: var(--mc-text);
  font-family: var(--mc-font-body);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .32s var(--mc-ease);
}

.mc-filter__chip:hover {
  border-color: var(--mc-brand);
  color: var(--mc-brand);
}

.mc-filter__chip.is-active {
  background: var(--mc-ink);
  border-color: var(--mc-ink);
  color: #fff;
}

.mc-post-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.mc-post-card {
  display: flex;
  flex-direction: column;
  background: var(--mc-cream-200);
  border: 1px solid var(--mc-border);
  border-radius: var(--mc-radius);
  overflow: hidden;
  transition: transform .4s var(--mc-ease), box-shadow .4s var(--mc-ease);
}

.mc-post-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--mc-shadow);
}

.mc-post-card__media {
  border-radius: 0;
  display: block;
}

.mc-post-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.mc-post-card__body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mc-post-card__body .mc-chip {
  align-self: flex-start;
  margin-bottom: 14px;
}

.mc-post-card h3 {
  font-size: 1.14rem;
  line-height: 1.33;
  margin-bottom: 11px;
}

.mc-post-card h3 a {
  color: var(--mc-ink);
}

.mc-post-card h3 a:hover {
  color: var(--mc-brand);
}

.mc-post-card p {
  font-size: 0.89rem;
  margin-bottom: 18px;
  flex: 1;
}

.mc-post-card__meta {
  display: flex;
  gap: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--mc-border);
  font-size: 0.78rem;
  color: var(--mc-text-muted);
  letter-spacing: 0.03em;
}

.mc-pager {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.mc-pager__btn {
  min-width: 46px;
  height: 46px;
  padding-inline: 15px;
  border: 1px solid var(--mc-border);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mc-ink);
  background: var(--mc-white);
  transition: all .32s var(--mc-ease);
}

.mc-pager__btn:hover {
  background: var(--mc-sage-200);
  border-color: var(--mc-brand);
  color: var(--mc-brand);
}

.mc-pager__btn.is-current {
  background: var(--mc-ink);
  border-color: var(--mc-ink);
  color: #fff;
}

.mc-pager__btn--next {
  background: var(--mc-brand);
  border-color: var(--mc-brand);
  color: #fff;
}

.mc-pager__btn--next:hover {
  background: var(--mc-brand-600);
  color: #fff;
}

.mc-bloglist__aside {
  position: sticky;
  top: calc(var(--mc-header-h) + 24px);
}

.mc-side {
  padding: 26px 24px;
  background: var(--mc-cream-200);
  border: 1px solid var(--mc-border);
  border-radius: var(--mc-radius);
}

.mc-side+.mc-side {
  margin-top: 22px;
}

.mc-side__title {
  font-size: 1.02rem;
  margin-bottom: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--mc-border);
}

.mc-side__search {
  display: flex;
  gap: 8px;
}

.mc-side__search input {
  flex: 1;
  min-width: 0;
  padding: 12px 15px;
  border: 1px solid var(--mc-border);
  border-radius: 11px;
  background: #fff;
  font-family: var(--mc-font-body);
  font-size: 0.88rem;
  color: var(--mc-text);
}

.mc-side__search input:focus {
  outline: none;
  border-color: var(--mc-brand);
}

.mc-side__search button {
  width: 46px;
  border: none;
  border-radius: 11px;
  background: var(--mc-brand);
  color: #fff;
  flex: none;
  cursor: pointer;
  transition: background .3s var(--mc-ease);
}

.mc-side__search button:hover {
  background: var(--mc-ink);
}

.mc-side__cats {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-side__cats li+li {
  border-top: 1px solid var(--mc-border);
}

.mc-side__cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mc-text);
}

.mc-side__cats a:hover {
  color: var(--mc-brand);
  padding-left: 6px;
}

.mc-side__cats span {
  min-width: 28px;
  height: 24px;
  padding-inline: 7px;
  border-radius: 100px;
  background: var(--mc-sage);
  color: var(--mc-brand-600);
  font-size: 0.74rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mc-side__recent {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mc-side__recent li+li {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--mc-border);
}

.mc-side__recent a {
  display: flex;
  gap: 14px;
  align-items: center;
}

.mc-side__recent img {
  width: 62px;
  height: 62px;
  border-radius: 11px;
  object-fit: cover;
  flex: none;
}

.mc-side__recent strong {
  display: block;
  font-family: var(--mc-font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mc-ink);
  line-height: 1.35;
  margin-bottom: 5px;
  transition: color .3s var(--mc-ease);
}

.mc-side__recent a:hover strong {
  color: var(--mc-brand);
}

.mc-side__recent span {
  font-size: 0.76rem;
  color: var(--mc-text-muted);
}

.mc-side--cta {
  background: var(--mc-ink);
  border-color: var(--mc-ink);
  text-align: center;
}

.mc-side--cta h4 {
  color: #fff;
  font-size: 1.06rem;
  margin-bottom: 10px;
}

.mc-side--cta p {
  color: var(--mc-text-light);
  font-size: 0.88rem;
  margin-bottom: 20px;
}