/* ============================================================
   About page
   ============================================================ */

.philosophy-grid,
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.philosophy-card,
.business-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 28px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.philosophy-card:hover,
.business-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.philosophy-card-label,
.biz-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 800;
  margin-bottom: 14px;
}
.philosophy-card h3 {
  font-size: 19px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.45;
}
.philosophy-card p,
.biz-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
}
.business-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 72px 48px;
}
.business-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.business-heading {
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
}
.biz-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.biz-icon-wrapper svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.biz-video .biz-icon-wrapper { background: #f2dfd3; }
.biz-video .biz-icon-wrapper svg { stroke: var(--amber); }
.biz-pub .biz-icon-wrapper { background: var(--rose-soft); }
.biz-pub .biz-icon-wrapper svg { stroke: var(--rose); }
.biz-next .biz-icon-wrapper { background: #e8daf4; }
.biz-next .biz-icon-wrapper svg { stroke: var(--violet); }
.biz-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
}
.info-image-container {
  margin-top: 32px;
  max-width: 820px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.info-img {
  width: 100%;
  height: auto;
  display: block;
}
.info-img-protect {
  position: relative;
  display: block;
  user-select: none;
}
.info-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  cursor: default;
}
.info-img-protect img {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: none;
}

@media (max-width: 900px) {
  .philosophy-grid,
  .business-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 768px) {
  .business-section { padding: 52px 24px; }
}
