/* event.css - Galaxy Z Fold8 / Flip8 Event Page Styles */

:root {
  --evt-blue: #2b5cff;
  --evt-light-blue: #eef2ff;
  --evt-dark-blue: #4659b5;
  --evt-bg: #f9f9fb;
  --evt-text: #222;
  --evt-gray: #666;
  --evt-border: #eaedf4;
  --evt-primary: #3b5bdb;
}

body.event-page {
  background-color: var(--evt-bg);
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--evt-text);
  margin: 0;
  padding: 0;
}

/* Header */
.evt-header {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 100;
}
.evt-header-inner {
  max-width: 1000px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.evt-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-size: 20px;
}
.evt-logo img {
  height: 24px;
  margin-right: 6px;
}
.evt-logo b {
  font-weight: 800;
  color: #3b5bdb;
}
.evt-official-btn {
  border: 1px solid #ccc;
  padding: 4px 12px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Section */
.evt-hero {
  position: relative;
  text-align: center;
  padding: 60px 20px 400px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9f9fb 0%, #e2e8f0 100%);
}
.evt-badge {
  display: inline-block;
  color: var(--evt-blue);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.evt-hero-sub {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
}
.evt-hero-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--evt-blue);
  margin: 0 0 20px;
  letter-spacing: -1px;
}
.evt-hero-title span {
  color: #1a36a8;
}
.evt-hero-desc {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 30px;
}
.evt-tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.evt-tags span {
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #444;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.evt-tags span b {
  color: var(--evt-blue);
}

.evt-hero-phones {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  gap: 20px;
  pointer-events: none;
}
.hero-phone {
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}
.hero-phone.flip {
  transform: translateY(20px) rotate(-5deg);
}
.hero-phone.fold {
  transform: translateY(40px) rotate(5deg);
}

/* Sections */
.evt-section {
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}
.evt-section.pt-0 {
  padding-top: 0;
}
.evt-container {
  max-width: 860px;
  margin: 0 auto;
}
.evt-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}
.evt-card.bg-light-blue {
  background: var(--evt-light-blue);
  box-shadow: none;
}

.evt-sec-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 40px;
}
.evt-sec-title b {
  color: var(--evt-blue);
}
.evt-sec-title.left {
  text-align: left;
  margin-bottom: 16px;
}

/* Grid 3 */
.evt-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.evt-feat-item {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--evt-border);
  border-radius: 16px;
  background: #fff;
}
.evt-feat-item h3 {
  color: var(--evt-blue);
  font-size: 16px;
  margin: 0 0 10px;
}
.evt-feat-item p {
  font-size: 13px;
  color: var(--evt-gray);
  line-height: 1.5;
  margin: 0 0 20px;
}
.evt-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: #f1f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--evt-blue);
}
.evt-icon-box svg {
  width: 40px;
  height: 40px;
}

/* Delivery */
.evt-delivery-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.evt-delivery-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}
.evt-delivery-img svg {
  width: 80px;
  height: 80px;
  color: var(--evt-blue);
}
.evt-delivery-feats {
  display: flex;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  gap: 20px;
  justify-content: space-between;
}
.evt-d-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.evt-d-icon {
  width: 32px;
  height: 32px;
  background: var(--evt-light-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--evt-blue);
}
.evt-d-feat h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}
.evt-d-feat p {
  margin: 0;
  font-size: 13px;
  color: var(--evt-gray);
  line-height: 1.4;
}

/* Steps */
.evt-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.evt-step {
  flex: 1;
  position: relative;
}
.evt-step-num {
  width: 24px;
  height: 24px;
  background: var(--evt-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin: 0 auto 16px;
}
.evt-step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evt-step-icon svg {
  width: 40px;
  height: 40px;
}
.evt-step h4 {
  margin: 0 0 8px;
  font-size: 15px;
}
.evt-step p {
  margin: 0;
  font-size: 13px;
  color: var(--evt-gray);
}
.evt-step-arr {
  width: 24px;
  color: #ccc;
  margin-top: -40px;
}

/* CTA Section */
.evt-cta-box {
  background: var(--evt-dark-blue);
  border-radius: 24px;
  padding: 40px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.evt-cta-left h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 800;
}
.evt-cta-left p {
  margin: 0 0 30px;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.evt-cta-icons {
  display: flex;
  gap: 30px;
}
.cta-ic {
  text-align: center;
  font-size: 12px;
}
.cta-ic span {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  line-height: 48px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.evt-cta-right {
  width: 260px;
}
.cta-r-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  color: #333;
  text-align: center;
}
.cta-r-card p {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.cta-r-btn {
  display: block;
  background: var(--evt-blue);
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.2s;
}
.cta-r-btn:hover {
  background: #1a36a8;
}

.evt-footer-note {
  text-align: center;
  color: #999;
  font-size: 12px;
  margin: 20px 0;
}

/* Sticky Bar */
.evt-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 16px 20px;
  z-index: 900;
}
.evt-sticky-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
}
.evt-btn {
  flex: 1;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.evt-btn-kakao {
  background: #fee500;
  color: #371d1e;
  flex: 0 0 30%;
}
.evt-btn-primary {
  background: #ff1a1a;
  color: #fff;
}
.evt-btn-primary:hover {
  background: #e00000;
}
.cf-submit {
  background: #ff1a1a !important;
}
.cf-submit:hover {
  background: #e00000 !important;
}

/* Modal Popup */
.evt-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.evt-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.evt-modal {
  background: #fff;
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  transform: translateY(20px);
  transition: 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.evt-modal-overlay.is-active .evt-modal {
  transform: translateY(0);
}
.evt-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}
.evt-modal-header h2 {
  margin: 0 0 10px;
  font-size: 22px;
}
.evt-modal-header p {
  margin: 0 0 20px;
  font-size: 14px;
  color: #666;
}

/* Modal Form Model Select */
.cf-model-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.cf-model-card {
  cursor: pointer;
  display: block;
  margin: 0;
}
.cf-model-card input {
  display: none;
}
.cf-model-card .card-inner {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px 6px;
  text-align: center;
  transition: 0.2s;
  background: #fff;
  height: 100%;
  box-sizing: border-box;
}
.cf-model-card .card-inner img {
  width: 100%;
  max-width: 80px;
  height: 90px;
  object-fit: contain;
  margin-bottom: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.cf-model-card .card-inner span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  line-height: 1.2;
}
.cf-model-card input:checked + .card-inner {
  border-color: var(--evt-blue);
  background: var(--evt-light-blue);
  box-shadow: 0 0 0 1.5px var(--evt-blue);
}
.cf-model-card input:checked + .card-inner span {
  color: var(--evt-blue);
}

/* Special Event Section */
.evt-special-header {
  text-align: center;
  margin-bottom: 40px;
}
.evt-special-header p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px;
}
.evt-special-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -1px;
}
.text-red {
  color: #ff1a1a;
}
.evt-sp-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.evt-sp-card {
  background: #fff;
  border: 1px solid var(--evt-border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.evt-sp-badge {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 8px 16px 8px 0;
  border-radius: 0 20px 20px 0;
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  top: 24px;
  left: 0;
  z-index: 10;
}
.evt-sp-badge span {
  background: #ff1a1a;
  color: #fff;
  padding: 8px 12px;
  border-radius: 0 16px 16px 0;
  margin-right: 8px;
}
.evt-sp-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 80px 40px 40px;
}
.sp-text h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}
.sp-text p {
  font-size: 15px;
  color: #444;
  margin: 0 0 20px;
  line-height: 1.5;
}
.sp-note {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}
.sp-note.mt-2 { margin-top: 10px; }
.sp-note.mt-3 { margin-top: 15px; }
.sp-note .highlight {
  background: linear-gradient(to top, #ffd6d6 40%, transparent 40%);
  color: #333;
  padding: 0 2px;
  font-weight: 600;
}
.sp-img {
  width: 180px;
  display: flex;
  justify-content: flex-end;
}
/* 사은품 실물을 크게 보여줄 카드 (2인 구매 이벤트 등) */
.sp-img-lg {
  width: 340px;
  flex-shrink: 0;
  align-self: center;
}
.sp-img-lg img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

/* Specs & Dates Section */
.evt-specs-sec {
  background: #fdfaf7; /* 아주 연한 웜톤 배경 (시안 참고) */
  padding-bottom: 60px;
}
.evt-specs-header {
  text-align: center;
  margin-bottom: 30px;
}
.evt-specs-eyebrow {
  color: #ff1a1a;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 4px;
}
.evt-specs-header h2 {
  font-size: 32px;
  font-weight: 900;
  margin: 0;
  letter-spacing: -1px;
}
.evt-dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}
.evt-date-col {
  text-align: left;
}
.evt-date-col.right {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.evt-date-col.right span {
  font-weight: 700;
  color: #222;
  display: inline-block;
  width: 50px;
}
.evt-date-col strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.evt-date-col p {
  margin: 0;
  color: #555;
  font-size: 16px;
}
.evt-date-divider {
  width: 2px;
  height: 40px;
  background: #ff1a1a;
}
.evt-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.evt-spec-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.evt-spec-img {
  width: 100%;
  height: 180px;
  background: #f5f5f5; /* 사진 들어올 공란 표시 */
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evt-spec-img::after {
  content: "이미지 영역";
  color: #ccc;
  font-size: 14px;
}
.evt-spec-dots {
  margin-bottom: 15px;
}
.evt-spec-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  background: #ddd;
}
.evt-spec-dots .dot.violet { background: #9b81af; }
.evt-spec-dots .dot.cream { background: #f3f0e8; }
.evt-spec-dots .dot.gray { background: #4b4b4b; }
.evt-spec-dots .dot.lavender { background: #dcd3e8; }
.evt-spec-dots .dot.pink { background: #f7cac9; }

.evt-spec-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 2px;
}
.evt-spec-card .eng {
  font-size: 12px;
  color: #999;
  margin: 0 0 20px;
}
.evt-spec-info {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
}
.evt-spec-info p { margin: 0; }
.evt-spec-btn {
  background: #ff1a1a;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: 0.2s;
}
.evt-spec-btn:hover {
  background: #e00000;
}
.evt-spec-promo {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
}
.evt-spec-promo .promo-header {
  background: #6431ff;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}
.evt-spec-promo .promo-body {
  padding: 30px;
  text-align: center;
  background: #ebeeff;
  flex: 1;
}
.evt-spec-promo .promo-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: #6431ff;
  margin: 0 0 20px;
  line-height: 1.3;
}
.promo-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.promo-graphic .chip {
  background: #fff;
  border: 1px solid #6431ff;
  color: #6431ff;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
}
.promo-graphic .chip.blue {
  background: #6431ff;
  color: #fff;
}
.promo-graphic .arrow {
  color: #6431ff;
  font-size: 12px;
}
.evt-promo-img {
  width: 100%;
  height: 140px;
  background: rgba(255,255,255,0.5);
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.evt-promo-img::after {
  content: "이미지 영역";
  color: #999;
  font-size: 14px;
}
.badge-up {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff1a1a;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  transform: rotate(15deg);
}

/* Purchase Tips Section */
.evt-tips-list {
  display: flex;
  flex-direction: column;
}
.evt-tip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background: #fff;
  border-top: 1px solid #eee;
}
.evt-tip-card:nth-child(even) {
  background: #f9f9fb;
}
.evt-tip-card:first-child {
  border-top: 2px solid #222;
}
.evt-tip-card:last-child {
  border-bottom: 1px solid #eee;
}
.evt-tip-left {
  flex: 1;
  padding-right: 40px;
}
.tip-badge {
  display: inline-block;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
}
.tip-badge span {
  font-size: 11px;
  font-weight: 400;
  margin-right: 4px;
}
.tip-badge.red {
  background: #ff1a1a;
}
.tip-badge.black {
  background: #222;
}
.evt-tip-left h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #111;
}
.evt-tip-left p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.evt-tip-right {
  width: 200px;
  height: 120px;
  flex-shrink: 0;
}
.empty-img {
  background: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 13px;
  border: 1px dashed #ddd;
}

/* Combo Benefits Section (동시 가입 혜택) */
.evt-combo-header {
  margin-bottom: 30px;
}
.evt-combo-header h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  color: #111;
  letter-spacing: -1px;
}
.evt-combo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.evt-combo-card {
  background: #f7f7f7;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.combo-text {
  margin-bottom: 20px;
}
.combo-red {
  color: #ff1a1a;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
}
.combo-text h3 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #111;
  line-height: 1.3;
}
.combo-sub {
  font-size: 14px;
  color: #777;
  margin: 0;
}
.combo-img {
  position: relative;
  width: 100%;
}
.combo-plus {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  /* Hero Mobile */
  .evt-hero { padding-top: 40px !important; }
  .evt-hero-content { flex-direction: column !important; text-align: center !important; }
  .evt-hero-text { min-width: auto !important; padding-bottom: 30px !important; }
  .evt-tags { justify-content: center !important; }
  .evt-hero-title { font-size: 36px !important; margin-bottom: 15px !important; }
  .evt-hero-sub { font-size: 20px !important; }
  .evt-hero-schedule { padding: 12px 20px !important; font-size: 14px !important; }
  
  .evt-hero-image { text-align: center !important; margin-right: 0 !important; }
  .evt-hero-image img { max-height: 400px !important; object-position: center bottom !important; margin-bottom: 0 !important; }
  
  .evt-hero-desc { font-size: 16px; }
  .hero-phone { height: 260px; }
  .evt-grid-3 { grid-template-columns: 1fr; }
  .evt-delivery-top { flex-direction: column; text-align: center; }
  .evt-delivery-text .evt-sec-title.left { text-align: center; }
  .evt-delivery-img { margin-top: 20px; }
  .evt-delivery-feats { flex-direction: column; }
  .evt-steps { flex-direction: column; gap: 30px; }
  .evt-step-arr { transform: rotate(90deg); margin: 0; }
  .evt-cta-box { flex-direction: column; text-align: center; gap: 30px; }
  .evt-cta-icons { justify-content: center; flex-wrap: wrap; }
  .evt-cta-right { width: 100%; }
  
  /* Special Event Mobile */
  .evt-special-header h2 { font-size: 32px; }
  .evt-sp-body { flex-direction: column; padding: 70px 20px 30px; }
  .sp-img { margin-top: 20px; align-self: center; justify-content: center; width: 100%; }
  .sp-img-lg { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .sp-img-lg img { max-height: 300px; }
  
  /* Specs Mobile */
  .evt-specs-grid { grid-template-columns: 1fr; }
  .evt-dates { flex-direction: column; gap: 15px; }
  .evt-date-divider { width: 40px; height: 2px; }
  .evt-date-col { text-align: center; }
  
  /* Tips Mobile */
  .evt-tip-card { flex-direction: column; align-items: flex-start; padding: 30px 20px; }
  .evt-tip-left { padding-right: 0; margin-bottom: 20px; }
  .evt-tip-right { width: 100%; height: 160px; }
  
  /* Combo Mobile */
  .evt-combo-header h2 { font-size: 28px; }
  .evt-combo-grid { grid-template-columns: 1fr; }
  .evt-combo-card { padding: 30px 20px; }
}


/* 섹션 전체를 대체하는 이미지 (제목·카드가 이미지에 포함된 경우) */
.evt-full-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
