/* Product pages */

/* =========================
       Product - 공통 콘텐츠
       ========================= */
    .section-heading {
      display: grid;
      grid-template-columns: 80px 1fr;
      gap: 1.5rem;
      max-width: 900px;
      margin: 0 auto 3rem;
      text-align: left;
    }

    .section-heading h2 {
      margin: 0 0 0.75rem;
      font-size: 2rem;
    }

    .section-heading p:last-child {
      margin: 0;
      color: #666;
    }

    .section-heading-with-image {
      grid-template-columns: 80px minmax(0, 1fr) minmax(160px, 0.35fr);
      max-width: 1100px;
      align-items: center;
    }

    .section-heading-product-image {
      width: 100%;
      max-width: 180px;
      max-height: 160px;
      justify-self: end;
      object-fit: contain;
    }

    .section-number {
      margin: 0;
      color: #d84333;
      font-size: 2rem;
      font-weight: 700;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
      text-align: left;
    }

    .feature-grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .feature-grid article {
      min-height: 135px;
      padding: 1.5rem;
      border: 1px solid #ddd;
      background: #fff;
    }

    .feature-grid h3 {
      margin: 0 0 0.6rem;
      font-size: 1.2rem;
    }

    .feature-grid p {
      margin: 0;
      color: #666;
      font-size: 1.03rem;
    }

    .process-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      margin-top: 2rem;
      margin-bottom: 1.2rem;
      border: 1px solid #ddd;
      background: #ddd;
    }

    .process-strip span {
      position: relative;
      padding: 1rem 0.5rem;
      background: #fff;
      font-size: 1rem;
      font-weight: 600;
    }

    /* Product - 제품 목록 */
    .product-card-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      text-align: left;
    }

    .product-card {
      display: grid;
      grid-template-columns: 180px 1fr;
      min-height: 210px;
      overflow: hidden;
      border: 1px solid #ddd;
      background: #fff;
      color: #333;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .product-card:hover,
    .product-card:focus-visible {
      transform: translateY(-3px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    }

    .product-card img {
      width: 100%;
      height: 100%;
      min-height: 210px;
      padding: 0 0.5rem;
      object-fit: contain;
      background: #fff;
    }

    .product-card div {
      padding: 1.5rem;
      align-self: center;
    }

    .product-card span {
      color: #d84333;
      font-size: 0.85rem;
      font-weight: 700;
    }

    .product-card h2 {
      margin: 0.45rem 0;
      font-size: 1.4rem;
    }

    .product-card p {
      margin: 0;
      color: #666;
      font-size: 1rem;
    }

    /* Product - 제품 상세 상단 */
    .product-hero-inner {
      max-width: 800px;
    }

    .product-hero p:last-child {
      max-width: 800px;
      margin: 0;
      color: #f0f1f2;
      font-size: 1.15rem;
    }

    .product-hero p strong {
      font-weight: 800;
    }

.intro-product { --intro-image: url("/img/intro/Intro_Product.webp"); }
    .intro-infra { --intro-image: url("/img/intro/Intro_Infra.webp"); }
    .intro-backup-hci { --intro-image: url("/img/intro/Intro_BackupHCI.webp"); }
    .intro-rpa { --intro-image: url("/img/intro/Intro_RPA.webp"); }
    .intro-ocr { --intro-image: url("/img/intro/Intro_OCR.webp"); }

    .product-showcase-image {
      display: grid;
      min-height: 170px;
      margin: 0 auto 3.5rem;
      place-items: center;
    }

    .product-showcase-image img {
      display: block;
      max-width: 100%;
      max-height: 260px;
      object-fit: contain;
    }

    .product-showcase-image.product-showcase-logo img {
      width: min(100%, 420px);
      height: auto;
      max-height: none;
    }

    .detail-columns {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin-top: 4rem;
      text-align: left;
    }

    .detail-columns h2 {
      margin: 0 0 1rem;
      font-size: 1.5rem;
    }

    .check-list {
      padding: 0;
      list-style: none;
    }

    .check-list li {
      position: relative;
      padding: 0.5rem 0 0.5rem 1.4rem;
      border-bottom: 1px solid #eee;
      color: #555;
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: #d84333;
      font-weight: 700;
    }

    .wide-product-image {
      width: 100%;
      max-height: 440px;
      margin-top: 3rem;
      margin-bottom: 1rem;
      object-fit: contain;
    }

    .rpa-capabilities-image,
    .nutanix-platform-image {
      border: 1px solid #ddd;
      background: #fff;
    }

    .document-ai-slide-image {
      max-height: none;
      border: 1px solid #ddd;
      background: #fff;
    }

    .wide-product-video {
      display: block;
      width: 100%;
      background: #111;
    }


    .product-example-list {
      margin: 0;
      padding-left: 1.15rem;
      color: #666;
    }

    .product-example-list li + li {
      margin-top: 0.45rem;
    }

    /* Product - 상세 페이지 문의 영역 */
    .contact-band {
      padding: 3.5rem 1.5rem;
      background: #272b30;
      color: #fff;
      text-align: left;
    }

    .contact-band .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .contact-band h2,
    .contact-band p {
      margin: 0;
    }

    .contact-band p {
      margin-top: 0.45rem;
      color: #d9dcdf;
    }

    .contact-band a {
      flex: 0 0 auto;
      padding: 0.8rem 1.35rem;
      border: 1px solid #fff;
      color: #fff;
      font-weight: 700;
      text-decoration: none;
      transition: background-color 0.2s ease, border-color 0.2s ease;
    }

    .contact-band a:hover,
    .contact-band a:focus-visible {
      border-color: #e74c3c;
      background: #e74c3c;
    }

@media (max-width: 1000px) {
  .product-card-grid,
  .feature-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .feature-grid,
  .feature-grid-3,
  .product-card-grid,
  .detail-columns { grid-template-columns: 1fr; }

  .product-showcase-image {
    min-height: 130px;
    margin-bottom: 2.5rem;
  }

  .product-showcase-image img { max-height: 180px; }

  .product-showcase-image.product-showcase-logo img {
    width: min(100%, 280px);
    height: auto;
  }

  .section-heading {
  grid-template-columns: 1fr;
  gap: 0.4rem;
  }

  .section-heading-with-image {
  grid-template-columns: 1fr;
  }

  .section-heading-product-image {
  max-width: 160px;
  justify-self: start;
  }
  
  .process-strip {
  grid-template-columns: 1fr;
  }
  
  
  .product-card {
  grid-template-columns: 1fr;
  }
  
  .product-card img {
  height: 190px;
  min-height: 190px;
  }
  
  .contact-band .container {
  align-items: flex-start;
  flex-direction: column;
  }
}
