/* Common */
.font-noto {
  font-family: 'Noto Sans KR', sans-serif !important;
}

.technology-section h2 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 32px;
}

.technology-section p {
  font-size: 1rem;
}

/* Technology List Grid */
.tech-list-grid {
  margin-bottom: 10px;
}

.tech-card {
  display: block;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
}

.tech-card:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

.tech-hero-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.tech-hero-btn:focus-visible {
  outline: 2px solid #000;
  outline-offset: 4px;
}

.tech-link-btn {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.tech-card__img {
  background: #f0f0f0;
  border-radius: 2px;
  overflow: hidden;
  /* 모든 카드에서 동일 높이로 고정 */
  height: clamp(200px, 22vw, 280px);
}

@media (max-width: 768px) {
  .tech-card__img {
    height: clamp(300px, 22vw, 200px);
  }
}

.tech-card__img img {
  /* 가로가 넘치면 좌우를 잘라 숨김(센터 크롭) */
  width: auto;
  height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tech-card__body {
  padding-top: 14px;
}

.tech-card__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #000;
  line-height: 1.35;
  min-height: 2.7em;
}

.tech-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

.tech-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f36b00;
  flex: 0 0 5px;
}

.tech-card__cta {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
}

.tech-card:hover .tech-card__title {
  text-decoration: underline;
}

/* Technology Drawer (side layer popup) */
body.tech-drawer-open {
  overflow: hidden;
}

.tech-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.tech-drawer.is-open {
  pointer-events: auto;
}

.tech-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity .25s ease;
}

.tech-drawer.is-open .tech-drawer__backdrop {
  opacity: 1;
}

.tech-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(1020px, 100%);
  background: #fff;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.18);
  outline: none;
}

.tech-drawer.is-open .tech-drawer__panel {
  transform: translateX(0);
}

.tech-drawer__close {
  position: sticky;
  top: 12px;
  margin-left: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.tech-drawer__close span {
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

.tech-drawer__content {
  padding: 28px 28px 40px;
}

.tech-drawer__title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.2vw, 44px);
  margin: 4px 0 18px;
}

.tech-drawer__media {
  background: #f0f0f0;
  overflow: hidden;
  padding: 0;
}

.tech-drawer__media img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.tech-drawer__body {
  margin-top: 18px;
  color: #222;
  line-height: 1.7;
}

.tech-drawer__body p {
  margin: 0;
}

.dbtn-sm {
  display: inline-block;
  width: auto;
  padding: 0.5em 1em;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-family: 'Noto Sans KR', sans-serif;
}

.dbtn-sm i {
  margin-left: 5px;
}

.dbtn-md {
  display: inline-block;
  width: auto;
  padding: 0.6em 1.2em;
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: 'Noto Sans KR', sans-serif;
}

.dbtn-md i {
  margin-left: 5px;
}

.dbtn-lg {
  display: inline-block;
  width: auto;
  padding: 1em 1.5em;
  text-decoration: none;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: 'Noto Sans KR', sans-serif;
  letter-spacing: -1px;
}

.dbtn-lg i {
  margin-left: 10px;
}

.dbtn-default {
  color: #000;
  border: 1px solid #000;
}

.dbtn-default:hover {
  background-color: #f0f0f0;
  color: #333;
}

.dbtn-white {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.dbtn-white:hover {
  background-color: #f0f0f0;
  color: #333;
}

/* Animation */
.fade-in-up {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  will-change: transform, opacity;
}

.fade-in-up.in-view {
  animation: fadeInUp 0.9s ease-out both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.delay-100 {
  animation-delay: .1s;
}

.delay-200 {
  animation-delay: .2s;
}

.delay-300 {
  animation-delay: .3s;
}

.delay-400 {
  animation-delay: .4s;
}

.delay-500 {
  animation-delay: .5s;
}

.delay-600 {
  animation-delay: .6s;
}

.delay-700 {
  animation-delay: .7s;
}

.delay-800 {
  animation-delay: .8s;
}

.delay-900 {
  animation-delay: .9s;
}

.delay-1000 {
  animation-delay: 1s;
}

/* Product Card */
.pc__img-wrapper {
  min-height: 400px;
}

.pc__img {
  width: 100%;
  height: auto;
  min-height: 400px;
}