@charset "UTF-8";
/* ================================
   기본 브레이크포인트 (Base Breakpoints)
   ================================ */
/**
 * Exchange Pages Styles
 * - archive-exchange.php (거래소 목록)
 * - single-exchange.php (거래소 상세)
 * - exchange-page.php (거래소 커스텀 페이지)
 */
.exchange-list-page {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
}
.exchange-list-page .exchange-list-content-section {
  padding: clamp(80px, calc(3.125vw + 2.5rem), 100px) 40px;
}
@media screen and (max-width: 1279px) {
  .exchange-list-page .exchange-list-content-section {
    padding: clamp(60px, calc(3.9215686275vw + 1.8651960784rem), 80px) 30px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-list-page .exchange-list-content-section {
    padding: clamp(40px, calc(4.4642857143vw + 1.6071428571rem), 60px) 20px;
  }
}
.exchange-list-page .exchange-list-content-section .container {
  max-width: 1640px;
  margin: 0 auto;
  width: 100%;
}
.exchange-list-page .exchange-list-top-section {
  padding: 60px 0 40px;
  background: #f8f9fa;
}
.exchange-list-page .exchange-list-top-section .exchange-list-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}
.exchange-list-page .exchange-list-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1279px) {
  .exchange-list-page .exchange-list-board {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-list-page .exchange-list-board {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.exchange-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.exchange-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.exchange-item .exchange-item-link {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 1279px) {
  .exchange-item .exchange-item-link {
    padding: 18px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-item .exchange-item-link {
    padding: 12px;
  }
}
.exchange-item .exchange-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.exchange-item .exchange-item-header .exchange-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
@media screen and (max-width: 1279px) {
  .exchange-item .exchange-item-header .exchange-item-icon {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-item .exchange-item-header .exchange-item-icon {
    width: 30px;
    height: 30px;
  }
}
.exchange-item .exchange-item-header .exchange-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.exchange-item .exchange-item-header .exchange-item-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
@media screen and (max-width: 1279px) {
  .exchange-item .exchange-item-header .exchange-item-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-item .exchange-item-header .exchange-item-name {
    font-size: 16px;
  }
}
.exchange-item .exchange-item-refund {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 12px;
  background: #f0f8ff;
  border-radius: 8px;
}
@media screen and (max-width: 1279px) {
  .exchange-item .exchange-item-refund {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-item .exchange-item-refund {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 0;
    padding: 8px;
  }
}
.exchange-item .exchange-item-refund .refund-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
}
@media screen and (max-width: 1279px) {
  .exchange-item .exchange-item-refund .refund-label {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-item .exchange-item-refund .refund-label {
    font-size: 12px;
  }
}
.exchange-item .exchange-item-refund .refund-amount {
  font-size: 16px;
  font-weight: 700;
  color: #0066cc;
}
@media screen and (max-width: 1279px) {
  .exchange-item .exchange-item-refund .refund-amount {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-item .exchange-item-refund .refund-amount {
    font-size: 13px;
  }
}
.exchange-item .exchange-item-rate {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.exchange-item .exchange-item-rate:last-of-type {
  border-bottom: none;
}
.exchange-item .exchange-item-rate .rate-label {
  font-size: 14px;
  color: #666;
}
.exchange-item .exchange-item-rate .rate-value {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}
@media screen and (max-width: 1279px) {
  .exchange-item .exchange-item-rate .rate-value {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .exchange-item .exchange-item-rate .rate-value {
    font-size: 13px;
  }
}
.exchange-item .exchange-item-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.exchange-item .exchange-item-badges .exchange-item-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}
.exchange-item .exchange-item-badges .exchange-item-badge.badge-1 {
  background: #ff6b6b;
  color: #fff;
}
.exchange-item .exchange-item-badges .exchange-item-badge.badge-2 {
  background: #4ecdc4;
  color: #fff;
}

.no-exchanges {
  text-align: center;
  padding: 60px 20px;
}
.no-exchanges p {
  font-size: 18px;
  color: #666;
}

.single-exchange {
  min-height: calc(100vh - 200px);
}
.single-exchange .single-exchange-top-section {
  padding: 40px 0;
  background: #f8f9fa;
}
.single-exchange .single-exchange-top-section .single-exchange-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
}
.single-exchange .exchange-content-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-content-inner {
    flex-direction: column;
    gap: 20px;
  }
}
.single-exchange .exchange-content-inner > div {
  flex: 1;
}
.single-exchange .single-exchange-content-section {
  padding: clamp(160px, calc(6.25vw + 5rem), 200px) 40px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .single-exchange-content-section {
    padding: clamp(120px, calc(11.7647058824vw + 1.8455882353rem), 180px) 30px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .single-exchange-content-section {
    padding: clamp(80px, calc(8.9285714286vw + 3.2142857143rem), 120px) 20px;
  }
}
.single-exchange .single-exchange-content-section .container {
  max-width: 1640px;
  margin: 0 auto;
}
.single-exchange .exchange-navigation-top {
  margin-bottom: 30px;
}
.single-exchange .exchange-navigation-top .back-to-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #f0f0f0;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
}
.single-exchange .exchange-navigation-top .back-to-list:hover {
  background: #e0e0e0;
}
.single-exchange .exchange-navigation-top .back-to-list svg {
  width: 20px;
  height: 20px;
}
.single-exchange .exchange-content {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .single-exchange .exchange-content {
    padding: 24px;
  }
}
.single-exchange .exchange-content-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-content-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-content-title {
    font-size: 20px;
  }
}
.single-exchange .exchange-content-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.single-exchange .exchange-content-info > img {
  width: 120px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-content-info > img {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-content-info > img {
    width: 80px;
  }
}
.single-exchange .exchange-content-info .exchange-content-info-text {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-content-info .exchange-content-info-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-content-info .exchange-content-info-text {
    font-size: 14px;
  }
}
.single-exchange .exchange-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 30px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-header {
    gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
.single-exchange .exchange-header .coin-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-header .coin-icon {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-header .coin-icon {
    width: 40px;
    height: 40px;
  }
}
.single-exchange .exchange-header .coin-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-exchange .exchange-header .coin-info {
  flex: 1;
}
.single-exchange .exchange-header .coin-info .coin-name {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: normal;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-header .coin-info .coin-name {
    margin: 0 0 8px 0;
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-header .coin-info .coin-name {
    margin: 0 0 6px 0;
    font-size: 24px;
  }
}
.single-exchange .exchange-header .coin-info .average-refund {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-exchange .exchange-header .coin-info .average-refund .refund-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  padding: 4px 12px;
  background: #f0f8ff;
  border-radius: 20px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-header .coin-info .average-refund .refund-label {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-header .coin-info .average-refund .refund-label {
    font-size: 12px;
  }
}
.single-exchange .exchange-header .coin-info .average-refund .refund-amount {
  font-size: 18px;
  font-weight: 700;
  color: #0066cc;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-header .coin-info .average-refund .refund-amount {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-header .coin-info .average-refund .refund-amount {
    font-size: 14px;
  }
}
.single-exchange .exchange-rates {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.single-exchange .exchange-rates .rate-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}
.single-exchange .exchange-rates .rate-item .rate-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 12px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-rates .rate-item .rate-label {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-rates .rate-item .rate-label {
    font-size: 12px;
  }
}
.single-exchange .exchange-rates .rate-item .rate-values {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.single-exchange .exchange-rates .rate-item .rate-values .rate-discount {
  font-size: 18px;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-rates .rate-item .rate-values .rate-discount {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-rates .rate-item .rate-values .rate-discount {
    font-size: 14px;
  }
}
.single-exchange .exchange-rates .rate-item .rate-values .rate-percent {
  font-size: 22px;
  font-weight: 700;
  color: #0066cc;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-rates .rate-item .rate-values .rate-percent {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-rates .rate-item .rate-values .rate-percent {
    font-size: 18px;
  }
}
.single-exchange .exchange-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.single-exchange .exchange-badges .exchange-badge {
  display: inline-block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-badges .exchange-badge {
    padding: 6px 12px;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-badges .exchange-badge {
    padding: 4px 10px;
    font-size: 12px;
  }
}
.single-exchange .exchange-badges .exchange-badge.badge-1 {
  background: #ff6b6b;
  color: #fff;
}
.single-exchange .exchange-badges .exchange-badge.badge-2 {
  background: #4ecdc4;
  color: #fff;
}
.single-exchange .benefit-item {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #0066cc;
}
@media screen and (max-width: 1279px) {
  .single-exchange .benefit-item {
    padding: 18px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .benefit-item {
    margin-bottom: 0;
    padding: 16px;
  }
}
.single-exchange .benefit-item .benefit-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .benefit-item .benefit-label {
    margin-bottom: 10px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .benefit-item .benefit-label {
    margin-bottom: 8px;
    font-size: 14px;
  }
}
.single-exchange .benefit-item .benefit-content {
  font-size: 15px;
  line-height: 1.3em;
  color: #333;
  white-space: pre-wrap;
}
@media screen and (max-width: 1279px) {
  .single-exchange .benefit-item .benefit-content {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .benefit-item .benefit-content {
    font-size: 13px;
  }
}
.single-exchange .benefit-item.new-benefit {
  border-left-color: #ff6b6b;
}
.single-exchange .benefit-item.general-benefit {
  border-left-color: #4ecdc4;
}
.single-exchange .benefit-item.payback-benefit {
  border-left-color: #ffd93d;
}
.single-exchange .exchange-benefits-inner {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-benefits-inner + .exchange-benefits-inner {
    margin-top: 20px;
  }
}
.single-exchange .exchange-box-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-box-title {
    margin-bottom: 16px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-box-title {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
.single-exchange .exchange-benefits-inner-content {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-benefits-inner-content {
    flex-direction: column;
    gap: 12px;
  }
}
.single-exchange .exchange-benefits-inner-content .benefit-item {
  flex: 1;
}
.single-exchange .exchange-link-section {
  margin-bottom: 24px;
  border-radius: 10px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-link-section {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-link-section {
    margin-top: 36px;
    margin-bottom: 16px;
  }
}
.single-exchange .exchange-link-section .link-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.single-exchange .exchange-link-section .exchange-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-exchange .exchange-link-section .exchange-link:hover {
  background: #e9ecef;
}
.single-exchange .exchange-link-section .exchange-link .link-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-link-section .exchange-link .link-icon {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-link-section .exchange-link .link-icon {
    width: 24px;
    height: 24px;
  }
}
.single-exchange .exchange-link-section .exchange-link .link-name {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-link-section .exchange-link .link-name {
    font-size: 15px;
  }
}
.single-exchange .exchange-link-section .exchange-link .link-url {
  font-size: 14px;
  color: #0066cc;
  margin-left: auto;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-link-section .exchange-link .link-url {
    font-size: 13px;
  }
}
.single-exchange .exchange-link-section .exchange-link-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-link-section .exchange-link-text {
    font-size: 13px;
  }
}
.single-exchange .signup-links {
  margin-bottom: 24px;
  padding: 20px;
  background: #f0f8ff;
  border-radius: 10px;
}
.single-exchange .signup-links .signup-label {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.single-exchange .signup-links .signup-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.single-exchange .signup-links .signup-buttons .signup-link {
  display: inline-block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1279px) {
  .single-exchange .signup-links .signup-buttons .signup-link {
    padding: 10px 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .signup-links .signup-buttons .signup-link {
    padding: 8px 16px;
    font-size: 13px;
  }
}
.single-exchange .signup-links .signup-buttons .signup-link.new-signup {
  background: #0066cc;
  color: #fff;
}
.single-exchange .signup-links .signup-buttons .signup-link.new-signup:hover {
  background: #0052a3;
}
.single-exchange .signup-links .signup-buttons .signup-link.change-signup {
  background: #4ecdc4;
  color: #fff;
}
.single-exchange .signup-links .signup-buttons .signup-link.change-signup:hover {
  background: #3ab7ae;
}
.single-exchange .exchange-description {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
}
.single-exchange .exchange-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}
.single-exchange .exchange-actions {
  margin-top: 40px;
  text-align: center;
}
.single-exchange .exchange-actions .btn-back-to-list {
  display: inline-block;
  padding: 14px 32px;
  background: #f0f0f0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1279px) {
  .single-exchange .exchange-actions .btn-back-to-list {
    padding: 12px 28px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .single-exchange .exchange-actions .btn-back-to-list {
    padding: 10px 24px;
    font-size: 14px;
  }
}
.single-exchange .exchange-actions .btn-back-to-list:hover {
  background: #e0e0e0;
}