/* 서비스 카탈로그 PDF 다운로드 — 목록·상세 공통 */

.svc-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}

.svc-card__more {
  color: var(--svc-blue, #1a73e8);
  font-size: 14px;
  font-weight: 600;
}

.svc-dl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #1a73e8;
  border-radius: 6px;
  background: #fff;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.svc-dl:hover,
.svc-dl:focus-visible {
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
}

.svc-dl:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}

.svc-dl--solid {
  min-height: 48px;
  padding: 0 20px;
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
  font-size: 15px;
}

.svc-dl--solid:hover,
.svc-dl--solid:focus-visible {
  background: #155fc2;
  border-color: #155fc2;
  color: #fff;
}

.svc-catalog {
  margin: 0;
  padding: 48px 0;
  background: #f5f8fc;
  color: #0d1b2a;
}

.svc-catalog__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 28px 30px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.04);
}

.svc-catalog__eyebrow {
  margin: 0 0 8px;
  color: #1a73e8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.svc-catalog__title {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  letter-spacing: -0.03em;
  word-break: keep-all;
}

.svc-catalog__desc {
  margin: 12px 0 0;
  max-width: 52rem;
  color: #5c6570;
  font-size: 15px;
  line-height: 1.7;
  word-break: keep-all;
}

.svc-catalog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .svc-card__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
  }
}

@media (max-width: 768px) {
  .svc-catalog {
    padding: 36px 0;
  }

  .svc-catalog__inner {
    width: min(1120px, calc(100% - 32px));
    padding: 22px 18px 24px;
  }

  .svc-card__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .svc-dl {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }

  .svc-catalog__actions .svc-dl {
    width: 100%;
  }

  .jbid-actions .svc-card__actions,
  .jplus-actions .svc-card__actions,
  .mdab-actions .svc-card__actions,
  .jodari-actions .svc-card__actions,
  .mkt-actions .svc-card__actions {
    width: 100%;
  }

  .jbid-actions .svc-dl,
  .jplus-actions .svc-dl,
  .mdab-actions .svc-dl,
  .jodari-actions .svc-dl,
  .mkt-actions .svc-dl {
    width: 100%;
  }
}
