/* 서울 웨딩박람회 카드섹션 네온 스타일 */
body {
  background: #181c2b !important;
}

/* 상단 헤더(네비게이션)와 제목 글씨 네온 효과 */
header, .site-header, nav, .main-navigation, .navbar, .gnb, .menu, .site-nav, .site-navigation {
  color: #00fff7 !important;
  text-shadow: 0 0 8px #00fff7, 0 0 2px #fff;
}
h1, h2, h3, .entry-title, .page-title {
  color: #00fff7 !important;
  text-shadow: 0 0 8px #00fff7, 0 0 2px #fff;
}

.swf-card-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px 0;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
  width: 100%;
}
.swf-card {
  background: #181c2b;
  border-radius: 18px;
  box-shadow: 0 0 16px 2px #00fff7, 0 0 0 2px #00fff7 inset;
  padding: 20px 12px 14px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  min-width: 0;
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .swf-card-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
  }
}
@media (max-width: 800px) {
  * {
    box-sizing: border-box !important;
  }
  body, html, #page, #content, .site, .container, .entry-content, .swf-card-section {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .swf-card-section {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  .swf-card {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 0 14px 0 !important;
    box-sizing: border-box;
    box-shadow: 0 0 28px 8px #00fff7, 0 0 0 2px #00fff7 inset !important;
  }
  .swf-card-img, .swf-card-img img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    box-sizing: border-box;
  }
}
.swf-card:hover {
  box-shadow: 0 0 32px 6px #00fff7, 0 0 0 2px #00fff7 inset;
  transform: translateY(-6px) scale(1.03);
}
.swf-card-img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 0 12px #00fff7;
}
.swf-card-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  text-shadow: 0 0 8px #00fff7, 0 0 2px #fff;
  text-align: center;
}
.swf-card-date, .swf-card-location {
  color: #b2f7ff;
  font-size: 0.95rem;
  margin-bottom: 6px;
  text-align: center;
}
.swf-card-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #00fff7;
  color: #181c2b;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 0 8px #00fff7, 0 0 2px #fff;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
}
.swf-card-btn:hover {
  background: #181c2b;
  color: #00fff7;
  box-shadow: 0 0 16px #00fff7, 0 0 4px #fff;
  border: 1.5px solid #00fff7;
}
body .swf-card-section {
  justify-items: center;
} 