 .pc-eyebrow {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8912e;
    border: 1px solid rgba(184,145,46,.3);
    padding: 5px 18px;
    border-radius: 2px;
    margin-bottom: 14px;
  }
  .pc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
  }
  @media (max-width: 768px) {
    .pc-grid { grid-template-columns: 1fr; }
  }
  .pc-card {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e8e4da;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: box-shadow .3s, transform .3s;
  }
  .pc-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.1);
    transform: translateY(-4px);
  }
  .pc-img-wrap {
    position: relative;
    overflow: hidden;
  }
  .pc-img-wrap img {
    width: 100%;
    height:500px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .5s ease;
  }
  .pc-img-wrap img.pos-center { object-position: center center; }
  .pc-card:hover .pc-img-wrap img { transform: scale(1.04); }
  .pc-cat-num {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(255,255,255,.92);
    border-left: 2px solid #b8912e;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b8912e;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 0 3px 3px 0;
  }
  .pc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,16,10,.7) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .35s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }
  .pc-card:hover .pc-overlay { opacity: 1; }
  .pc-overlay-tags { display: flex; flex-wrap: wrap; gap: 6px; }
  .pc-overlay-tag {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 9px;
    border-radius: 2px;
  }
  .pc-body {
    padding: 22px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
  }
  .pc-body h3 {
    font-size: 18px !important;
    font-weight: 700;
    color: #1a1a1a !important;
    margin: 0 0 6px;
  }
  .pc-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.65;
    margin: 0 0 16px;
    flex: 1;
  }
  .pc-items { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
  .pc-item {
    font-size: 11px;
    font-weight: 600;
    color: #7a5c1a;
    background: rgba(184,145,46,.1);
    border: 1px solid rgba(184,145,46,.2);
    padding: 4px 10px;
    border-radius: 3px;
  }
  .pc-divider { height: 1px; background: #eeebe4; margin-bottom: 16px; }
  .pc-footer { display: flex; align-items: center; justify-content: space-between; }
  .pc-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b8912e;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .pc-dot { width: 6px; height: 6px; border-radius: 50%; background: #d4c4a0; }
  .pc-bottom {
    margin-top: 28px;
    background: #faf8f4;
    border: 1px solid #eeebe4;
    border-radius: 6px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .pc-bottom-chips { display: flex; flex-wrap: wrap; gap: 16px; }
  .pc-chip { font-size: 13px; font-weight: 600; color: #555; display: flex; align-items: center; gap: 8px; }
  .pc-chip-dot { width: 7px; height: 7px; border-radius: 50%; background: #b8912e; flex-shrink: 0; }
  .pc-cta-btn {
    background: #1a1a1a;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    display: inline-block;
  }
  .pc-cta-btn:hover { background: #b8912e; }