/* CT-BY · cj-specialist-grid · polished v1 */
.cjsg { padding: 80px 0; background: #FBFAF5; position: relative; }
.cjsg-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Section head — unified language across all CT-BY sections */
.cjsg-eyebrow {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #3F5F55;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Montserrat', -apple-system, sans-serif;
}
.cjsg-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  margin: 0 0 8px;
  color: #1F1F1D;
  line-height: 1.18;
  letter-spacing: -0.005em;
  position: relative;
  display: inline-block;
}
.cjsg-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #3F5F55;
  margin-top: 14px;
  border-radius: 1px;
}
.cjsg-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  color: #6F6F68;
  margin: 6px 0 44px;
  font-family: 'Montserrat', sans-serif;
  max-width: 640px;
  line-height: 1.5;
}

/* Grid */
.cjsg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.cjsg-card {
  background: #fff;
  border: 1px solid #ECE6D9;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.cjsg-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -22px rgba(28,38,33,0.28);
  border-color: #D4CEBE;
}

/* Photo — premium aspect + treatment */
.cjsg-photo {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #EDE5D6 0%, #DDD5C2 100%);
  overflow: hidden;
  position: relative;
}
.cjsg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.cjsg-photo__ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #B8AE96; font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Body */
.cjsg-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cjsg-name {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: #1F1F1D;
  letter-spacing: -0.008em;
  line-height: 1.2;
}
.cjsg-row {
  font-size: 13.5px;
  line-height: 1.55;
  color: #3a4942;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}
.cjsg-row b {
  color: #3F5F55;
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.cjsg-rl {
  color: #3F5F55;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-size: 12.5px;
  margin-left: 6px;
  font-weight: 500;
}

/* Buttons */
.cjsg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #3F5F55;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 28px;
  text-decoration: none;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.01em;
  margin-top: 6px;
  transition: background 0.2s, transform 0.18s;
}
.cjsg-btn:hover {
  background: #335048;
  transform: translateY(-1px);
}
.cjsg-link {
  color: #3F5F55;
  font-size: 12.5px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  margin-top: 2px;
  transition: opacity 0.2s;
}
.cjsg-link:hover { opacity: 0.7; text-decoration: underline; text-underline-offset: 3px; }

/* Mobile */
@media (max-width: 860px) {
  .cjsg { padding: 56px 0; }
  .cjsg-wrap { padding: 0 20px; }
  .cjsg-grid { grid-template-columns: 1fr; gap: 20px; }
  .cjsg-sub { margin-bottom: 32px; }
  .cjsg-body { padding: 18px 20px 22px; }
}
@media (min-width: 861px) and (max-width: 1199px) {
  .cjsg-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cjsg-card, .cjsg-btn { transition: none; }
  .cjsg-card:hover { transform: none; }
}
