﻿/* ---------- 공통 래퍼 / 섹션 타이틀 ---------- */
.wc-net-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 20px;
  font-family: 'Noto Sans KR', 'Helvetica Neue', Arial, sans-serif;
  color: #222;
  box-sizing: border-box;
}
.wc-net-wrap * { box-sizing: border-box; }

.wc-net-section { margin-bottom: 90px; }
.wc-net-section:last-child { margin-bottom: 0; }

.wc-net-head { text-align: center; margin-bottom: 42px; }
.wc-net-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 10px;
}
.wc-net-title {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.wc-net-sub {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ---------- 카드 그리드 ---------- */
.wc-net-grid2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* ---------- 개별 카드 (사진 배경 + 어두운 오버레이) ---------- */
.wc-net-card2 {
  position: relative;
  overflow: hidden;
  border-radius: 0px 30px 0px 30px;
  min-height: 560px;
  padding: 32px 24px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-color: #202020; /* 이미지가 아직 없을 때 기본 배경 */
  isolation: isolate;
}
.wc-net-card2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 31, 31, 0.7);
  z-index: 0;
}

/* 상단 원형 아이콘 */
.wc-net-card2-icon {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.wc-net-card2-icon svg { width: 32px; height: 32px; fill: #fff; }

/* 카드 제목 */
.wc-net-card2-title {
  position: absolute;
  top: 92px;
  left: 0; right: 0;
  text-align: center;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.45;
  padding: 0 22px;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}

/* 반투명 패널 안 불릿 리스트 */
/* 항목 개수와 상관없이 첫 줄이 항상 같은 높이에서 시작하도록 절대 위치로 고정 */
.wc-net-card2-body {
  position: absolute;
  top: 230px;
  left: 24px;
  right: 24px;
  z-index: 1;
  backdrop-filter: blur(2px);
  padding: 10px 10px;
}
.wc-net-card2-body ul { margin: 0; padding: 0; }
.wc-net-card2-body li {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  position: relative;
}
<!--
.wc-net-card2-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d8c48a;
}
-->

/* 하단 브랜드명 + 원형 화살표 버튼 */
.wc-net-card2-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.wc-net-card2-name { font-size: 19px; font-weight: 800; line-height: 1.3; }
.wc-net-card2-name-sub { font-size: 11.5px; letter-spacing: 1px; opacity: .85; margin-top: 2px; }
.wc-net-card2-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.wc-net-card2-arrow:hover { background: #fff; color: #111; }
.wc-net-card2-arrow svg { width: 30px; height: 30px; fill: currentColor; }

/* 카드 최하단 브랜드 표기 */
.wc-net-card2-brand {
  position: relative;
  z-index: 1;
  margin: 10px 0 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: left;
  opacity: .8;
}
.wc-net-card2-brand a,
.wc-net-card2-brand a:visited,
.wc-net-card2-brand a:active,
.wc-net-card2-brand a:link {
  color: #fff !important;
  text-decoration: none;
}
.wc-net-card2-brand a:hover,
.wc-net-wrap .wc-net-card2-brand a:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

/* ---------- 반응형 ---------- */
@media (max-width: 1024px) {
  .wc-net-grid2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .wc-net-grid2 { grid-template-columns: 1fr; }
  .wc-net-card2 { min-height: 480px; }
  .wc-net-title { font-size: 24px; }
}