
  .rh-b9 * { box-sizing: border-box; font-family: 'Mont', sans-serif; }
  .rh-b9 { box-sizing: border-box !important; width: 100%; background: #f7f7f7; }
  .rh-b9-wrap { width: 100%; max-width: 1600px; margin: 0 auto; padding: 48px 80px 64px; }

  .rh-b9-label {
    font-family: 'Mont', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #808080;
    margin: 0 0 28px 0;
    display: block;
  }

  .rh-b9-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .rh-b9-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 3px solid #E6E6E6;
  }

  .rh-b9-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(38,38,38,0.08);
    border-top-color: #BFD8B3;
  }

  .rh-b9-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
  }

  .rh-b9-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .rh-b9-body {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .rh-b9-tag {
    font-family: 'Mont', sans-serif;
    font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #99AD8F;
    margin: 0 0 10px 0;
    padding: 0;
    display: block;
  }

  .rh-b9-title {
    font-family: 'Mont', sans-serif;
    font-size: 14px; font-weight: 600;
    color: #262626; line-height: 1.45;
    margin: 0 0 12px 0;
    padding: 0;
    flex: 1;
    display: block;
  }

  .rh-b9-desc {
    font-family: 'Mont', sans-serif;
    font-size: 12px; font-weight: 600;
    color: #808080; line-height: 1.6;
    margin: 0 0 16px 0;
    padding: 0;
    display: block;
  }

  .rh-b9-link {
    font-family: 'Mont', sans-serif;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #606C59 !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0; padding: 0;
  }

  .rh-b9-link::after { content: '→'; transition: transform 0.15s; }
  .rh-b9-card:hover .rh-b9-link::after { transform: translateX(3px); }

  @media (max-width: 1024px) {
    .rh-b9-wrap { padding: 40px 60px 52px; }
    .rh-b9-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .rh-b9-wrap { padding: 32px 24px 40px; }
    .rh-b9-grid { grid-template-columns: 1fr; }
  }
