:root {
  --pmc-black: #0a0a0a;
  --pmc-ink: #171717;
  --pmc-gold: #c9962f;
  --pmc-cream: #f7f0e8;
  --pmc-white: #ffffff;
}

.pm-categories-page .entry-title,
.pm-categories-page .page-title,
.pm-categories-page .wp-block-post-title {
  display: none !important;
}

.pm-categories-page .site-main,
.pm-categories-page main,
.pm-categories-page .content-area,
.pm-categories-page .entry-content {
  max-width: none !important;
  width: 100% !important;
}

.pm-categories-page .entry-content {
  margin: 0 !important;
  padding: 0 !important;
}

.pmc-wrap {
  width: 100%;
  margin: 0 auto;
  background: var(--pmc-white);
  color: var(--pmc-ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.pmc-hero {
  background:
    linear-gradient(90deg, rgba(247,240,232,.98) 0%, rgba(247,240,232,.98) 43%, rgba(247,240,232,.78) 60%, rgba(247,240,232,.15) 100%),
    var(--pmc-hero-image) right center / auto 100% no-repeat,
    var(--pmc-cream);
}

.pmc-hero-inner {
  min-height: 310px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px clamp(24px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.pmc-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.pmc-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 700;
  color: #8b6a25;
}

.pmc-hero h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 6vw, 84px);
  line-height: .9;
  letter-spacing: -.045em;
  font-weight: 700;
  color: #080808;
}

.pmc-hero p {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.5vw, 21px);
  line-height: 1.5;
  color: #3b352e;
}

.pmc-gold-rule {
  width: 74px;
  height: 3px;
  margin-top: 24px;
  background: var(--pmc-gold);
}

.pmc-categories {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px clamp(18px, 3vw, 28px) 30px;
}

.pmc-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pmc-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  text-decoration: none !important;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.pmc-card:hover,
.pmc-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

.pmc-image-wrap {
  display: block;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  background: #eee;
}

.pmc-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.pmc-card:hover .pmc-image-wrap img {
  transform: scale(1.04);
}

.pmc-label {
  min-height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(12,12,12,.96);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: -.01em;
}

.pmc-arrow {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--pmc-gold);
  font-size: 18px;
  font-weight: 400;
}

.pmc-benefits {
  background: #0d0d0d;
  color: #fff;
  padding: 34px clamp(24px, 5vw, 70px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.pmc-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pmc-benefit .pmc-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: var(--pmc-gold);
  font-size: 18px;
}

.pmc-benefit strong,
.pmc-benefit small {
  display: block;
}

.pmc-benefit strong {
  font-size: 14px;
  margin-bottom: 6px;
}

.pmc-benefit small {
  color: #c9c9c9;
  font-size: 12px;
}

.pmc-newsletter {
  background: #0d0d0d;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 26px clamp(24px, 5vw, 70px);
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: center;
}

.pmc-newsletter strong,
.pmc-newsletter span {
  display: block;
}

.pmc-newsletter strong {
  font-size: 15px;
  margin-bottom: 6px;
}

.pmc-newsletter span {
  font-size: 12px;
  color: #c8c8c8;
}

.pmc-news-form {
  display: flex;
  min-width: 0;
}

.pmc-news-form input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 7px 0 0 7px;
  background: #fff;
  color: #111;
  outline: none;
}

.pmc-news-form button {
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 0 7px 7px 0;
  background: var(--pmc-gold);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.pmc-signoff {
  background: #0d0d0d;
  color: #9f9f9f;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 20px clamp(24px, 5vw, 70px) 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

.pmc-signoff em {
  color: #d7b66a;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
}

@media (min-width: 980px) {
  .pmc-grid .pmc-card:nth-child(n+11) {
    grid-column: span 1;
  }
}

@media (max-width: 1100px) {
  .pmc-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pmc-benefits { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .pmc-hero {
    background:
      linear-gradient(90deg, rgba(247,240,232,.98), rgba(247,240,232,.92)),
      var(--pmc-hero-image) right center / auto 100% no-repeat,
      var(--pmc-cream);
  }
  .pmc-hero-inner {
    grid-template-columns: 1fr;
    min-height: 255px;
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .pmc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .pmc-label { min-height: 50px; padding: 0 12px; font-size: 13px; }
  .pmc-arrow { width: 24px; height: 24px; font-size: 15px; }
  .pmc-newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .pmc-categories { padding-left: 10px; padding-right: 10px; }
  .pmc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .pmc-image-wrap { aspect-ratio: 1 / 1; }
  .pmc-label { font-size: 11px; padding: 0 9px; }
  .pmc-benefits { grid-template-columns: 1fr; }
  .pmc-news-form { flex-direction: column; gap: 8px; }
  .pmc-news-form input,
  .pmc-news-form button { border-radius: 7px; width: 100%; }
  .pmc-signoff { flex-direction: column; }
}
