/* 매거진 레이아웃 CSS */

/* ===== 기본 설정 ===== */
.magazine-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  font-family:
    "Pretendard",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: #1a1a2e;
  line-height: 1.6;
}

.magazine-wrapper * {
  box-sizing: border-box;
}

/* ===== 히어로 섹션 ===== */
.hero-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.hero-main {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 16px;
  color: #fff;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

/* Hero 배경 이미지 - 전체 커버 */
.hero-main .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Hero 그라데이션 오버레이 */
.hero-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 400px;
}

/* 이미지 없을 때 장식 효과 */
.hero-main:not(.has-image)::after {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.3) 0%,
    rgba(118, 75, 162, 0.3) 100%
  );
}

.hero-main:not(.has-image)::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.3) 0%,
    transparent 70%
  );
  z-index: 1;
}

.hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #667eea;
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 4;
}

.hero-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 16px;
  position: relative;
  color: #fff;
}

.hero-excerpt {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 20px;
  max-width: 80%;
  position: relative;
  color: #fff;
}

.hero-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  opacity: 0.7;
  position: relative;
  color: #fff;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.side-article {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.side-article:hover {
  border-color: #667eea;
  transform: translateX(4px);
}

.side-article h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 8px 0 0;
  line-height: 1.4;
}

.side-article .meta {
  font-size: 12px;
  color: #64748b;
  margin-top: 8px;
}

.category-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.category-tag.startup {
  background: #e0e7ff;
  color: #4338ca;
}
.category-tag.blockchain {
  background: #fef3c7;
  color: #b45309;
}
.category-tag.support {
  background: #d1fae5;
  color: #047857;
}

/* ===== 카테고리 네비게이션 ===== */
.category-nav {
  display: flex;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 40px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cat-link {
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  background: #f1f5f9;
}

.cat-link:hover {
  background: #e2e8f0;
  color: #334155;
}

.cat-link.active {
  background: #1a1a2e;
  color: #fff;
}

/* ===== 3단 그리드 ===== */
.magazine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
}

/* 메인 컨텐츠 영역 - 오버플로우 방지 */
.main-content {
  min-width: 0;
  overflow: hidden;
}

/* ===== 섹션 공통 ===== */
.content-section {
  margin-bottom: 48px;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

/* Swiper 오버플로우 컨트롤 */
.content-section .swiper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.content-section .swiper-wrapper {
  width: 100%;
}

.content-section .swiper-slide {
  height: auto;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #1a1a2e;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.section-title a:hover {
  color: #667eea;
}

.title-label {
  display: inline-block;
  background: #667eea;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-right: 8px;
  letter-spacing: 0.5px;
}

.section-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.swiper-nav {
  display: flex;
  gap: 8px;
}

.swiper-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: #64748b;
}

.swiper-btn:hover {
  background: #f1f5f9;
  border-color: #667eea;
  color: #667eea;
}

.swiper-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.more-link {
  font-size: 14px;
  color: #64748b;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.more-link:hover {
  color: #667eea;
}

/* ===== 아티클 그리드 (스타트업 섹션) ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.article-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.card-image {
  height: 180px;
  position: relative;
}

.article-card.featured .card-image {
  height: 100%;
  min-height: 240px;
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ef4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.card-content {
  padding: 20px;
}

.card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 8px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
}

.article-card.featured .card-title {
  font-size: 20px;
}

.card-excerpt {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #94a3b8;
}

/* ===== 슬라이더 카드 ===== */
.stnews-swiper,
.bcnews-swiper {
  overflow: hidden;
}

.stnews-swiper .article-card,
.bcnews-swiper .article-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.stnews-swiper .card-image,
.bcnews-swiper .card-image {
  height: 160px;
  flex-shrink: 0;
}

.stnews-swiper .card-content,
.bcnews-swiper .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.stnews-swiper .card-title,
.bcnews-swiper .card-title {
  font-size: 15px;
  margin: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.stnews-swiper .card-meta,
.bcnews-swiper .card-meta {
  margin-top: 12px;
  gap: 12px;
  font-size: 12px;
}

/* ===== 블록체인 리스트 (썸네일 포함) ===== */
.article-list-thumb {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.list-thumb-item {
  background: #fff;
}

.list-thumb-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.list-thumb-link:hover {
  background: #f8fafc;
}

.list-thumb-content {
  flex: 1;
  min-width: 0;
}

.list-thumb-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1a1a2e;
}

.list-thumb-link:hover h3 {
  color: #667eea;
}

.list-thumb-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #94a3b8;
}

.list-thumb-image {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
}

.list-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== 아티클 리스트 (블록체인 섹션) ===== */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-article {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s;
  cursor: pointer;
}

.list-article:hover {
  background: #f1f5f9;
  transform: translateX(4px);
}

.list-number {
  font-size: 28px;
  font-weight: 800;
  color: #e2e8f0;
  line-height: 1;
  min-width: 40px;
}

.list-article:hover .list-number {
  color: #667eea;
}

.list-content {
  flex: 1;
}

.list-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: #667eea;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.list-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.4;
}

.list-excerpt {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 12px;
}

.list-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #94a3b8;
}

/* ===== 지원사업 그리드 ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  position: relative;
  transition: all 0.3s;
}

.support-card:hover {
  border-color: #667eea;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.1);
}

.support-card.urgent {
  border-color: #ef4444;
  background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
}

.support-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #ef4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.support-badge.new {
  background: #667eea;
}

.support-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.support-org {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 16px;
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.info-item .label {
  color: #94a3b8;
}

.info-item .value {
  font-weight: 600;
  color: #1a1a2e;
}

.info-item .value.deadline {
  color: #ef4444;
}

.support-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.support-btn:hover {
  background: #667eea;
}

/* ===== 지원사업 슬라이더 ===== */
.support-swiper {
  overflow: hidden;
}

.support-slide-card {
  display: flex;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  min-height: 140px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.3s;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.support-slide-card:hover {
  border-color: #667eea;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

.support-slide-card.urgent {
  border-color: #fecaca;
  background: linear-gradient(180deg, #fff 0%, #fef2f2 100%);
}

.support-slide-card.urgent:hover {
  border-color: #ef4444;
}

.support-tag {
  margin-bottom: 5px;
  background: #667eea;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.support-tag.urgent {
  background: #ef4444;
}

.support-tag.new {
  background: #667eea;
}

.support-slide-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 16px;
  color: #1a1a2e;
  /* 제목 전체 표시 - 자르지 않음 */
  display: block;
  word-break: keep-all;
}

.support-slide-card:hover .support-slide-title {
  color: #667eea;
}

.support-slide-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: auto;
  width: 100%;
}

.support-region {
  color: #64748b;
}

.support-dday {
  font-weight: 700;
  color: #1a1a2e;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 4px;
}

.support-dday.urgent {
  color: #ef4444;
  background: #fef2f2;
}

/* title-label 지원사업 색상 */
.title-label.support {
  background: #10b981;
}

/* ===== 사이드바 ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
}

.sidebar-widget.crypto {
  padding: 24px 10px;
}

.widget-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

/* 실시간 인기 */
.trending-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: trending;
}

.trending-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.trending-list li:last-child {
  border-bottom: none;
}

.trending-list .rank {
  min-width: 24px;
  height: 24px;
  background: #1a1a2e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.trending-list li:nth-child(1) .rank {
  background: #ef4444;
}
.trending-list li:nth-child(2) .rank {
  background: #f97316;
}
.trending-list li:nth-child(3) .rank {
  background: #eab308;
}

.trending-list a {
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  line-height: 1.4;
}

.trending-list a:hover {
  color: #667eea;
}

/* 뉴스레터 */
.newsletter {
  background: #003d96;
  color: #fff;
}

.newsletter .widget-title {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.widget-desc {
  font-size: 14px;
  opacity: 0.9;
  margin: 0 0 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  width: calc(100% - 60px);
}

.newsletter-form button {
  padding: 12px 20px;
  background: #1a1a2e;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #000;
}

/* 마감 임박 */
.deadline-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.deadline-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.deadline-list li:last-child {
  border-bottom: none;
}

.d-day {
  min-width: 52px;
  padding: 4px 8px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px;
}

.d-day.urgent {
  background: #fef2f2;
  color: #ef4444;
}

.deadline-list a {
  font-size: 14px;
  color: #334155;
  text-decoration: none;
  line-height: 1.4;
}

.deadline-list a:hover {
  color: #667eea;
}

/* 지원사업 통계 */
.stats .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stats .stat-item {
  background: #f8fafc;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.stats .stat-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 4px;
}

.stats .stat-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

/* 암호화폐 시세 위젯 */
.crypto .crypto-widget-wrap {
  margin: -8px -8px -16px;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  min-height: 200px;
}

.crypto .crypto-widget-wrap gecko-coin-list-widget {
  display: block;
  --cg-background: transparent;
}

.crypto .crypto-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: #94a3b8;
  font-size: 13px;
  background: #f8fafc;
  border-radius: 8px;
  margin: 8px;
}

.crypto .crypto-loading::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #e2e8f0;
  border-top-color: #667eea;
  border-radius: 50%;
  margin-right: 8px;
  animation: crypto-spin 0.8s linear infinite;
}

@keyframes crypto-spin {
  to { transform: rotate(360deg); }
}

/* 태그 클라우드 */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 13px;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.2s;
}

.tag:hover {
  background: #667eea;
  color: #fff;
}

/* 데이터 없음 */
.no-data {
  padding: 32px;
  text-align: center;
  color: #94a3b8;
  font-size: 14px;
  background: #f8fafc;
  border-radius: 8px;
}

.article-grid .no-data,
.article-list .no-data,
.support-grid .no-data {
  grid-column: 1 / -1;
}

/* 카드 이미지 */
.card-image {
  height: 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image.no-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 링크 스타일 */
.hero-main a {
  color: inherit;
  text-decoration: none;
}

.card-title a,
.list-content h3 a {
  color: inherit;
  text-decoration: none;
}

.card-title a:hover,
.list-content h3 a:hover {
  color: #667eea;
}

.side-article {
  display: block;
  text-decoration: none;
  color: inherit;
}

.interview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.interview-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

.interview-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.interview-card.main {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.interview-image {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.interview-quote {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}

.interview-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interview-content.compact {
  padding: 24px;
}

.interview-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 8px;
}

.interview-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.interview-content.compact h3 {
  font-size: 16px;
}

.interview-content p {
  font-size: 14px;
  color: #64748b;
  margin: 0 0 16px;
  line-height: 1.5;
}

.read-more {
  font-size: 14px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* ===== 반응형 ===== */
@media (max-width: 1200px) {
  .magazine-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-widget {
    flex: 1;
    min-width: 280px;
  }
}

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .hero-main {
    min-height: 300px;
  }

  .hero-content {
    min-height: 300px;
    padding: 32px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-side {
    gap: 12px;
    padding-bottom: 8px;
  }

  .side-article {
    min-width: 260px;
    flex-shrink: 0;
  }

  .article-grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .article-card.featured .card-image {
    height: 200px;
  }

  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .interview-grid {
    grid-template-columns: 1fr;
  }

  .interview-card.main {
    grid-template-columns: 1fr;
  }

  .interview-image {
    min-height: 200px;
  }

  .list-thumb-image {
    width: 70px;
    height: 52px;
  }
}

@media (max-width: 768px) {
  .magazine-wrapper {
    padding: 0 16px;
  }

  .hero-main {
    min-height: 260px;
  }

  .hero-content {
    min-height: 260px;
    padding: 24px;
  }

  .hero-title {
    font-size: 22px;
  }

  /* 모바일에서 hero-excerpt 숨김 */
  .hero-excerpt {
    display: none;
  }

  .category-nav {
    margin: 0 -16px 32px;
    padding: 16px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-card.featured {
    grid-column: span 1;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    flex-direction: column;
  }

  .sidebar-widget {
    min-width: auto;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .list-article {
    padding: 16px;
  }

  .list-number {
    font-size: 24px;
    min-width: 32px;
  }

  .list-content h3 {
    font-size: 15px;
  }

  .interview-quote {
    font-size: 16px;
  }

  /* 모바일 섹션 헤더 - 1열 레이아웃, 타이틀 크기 증가 */
  .section-header {
    align-items: flex-start;
    gap: 12px;
  }

  .section-title {
    font-size: 20px;
    width: 100%;
  }

  .section-title a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
  }

  .title-label {
    font-size: 10px;
    padding: 3px 8px;
  }

  .section-controls {
    justify-content: space-between;
  }

  .more-link {
    display: none;
  }

  /* 모바일에서 swiper 네비게이션 작게 */
  .swiper-btn {
    width: 32px;
    height: 32px;
  }

  .swiper-btn svg {
    width: 16px;
    height: 16px;
  }

  .list-thumb-link {
    padding: 12px 16px;
  }

  .list-thumb-content h3 {
    font-size: 18px;
  }

  .list-thumb-image {
    width: 60px;
    height: 45px;
  }
}
