/* Brand Page - Minimal Clean Styles */

/* 전체 레이아웃 스타일 */
body {
  padding-top: 64px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #555;
  background: #fff;
}

/* Hero Section */
.brand-hero {
  background: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.brand-hero-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.brand-hero-desc {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* Brand Note - 참고 문구 스타일 */
.brand-note {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-left: 4px solid #6c757d;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0 0 40px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.brand-note i {
  color: #6c757d;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.brand-note p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

/* Brand Assets Section */
.brand-section {
  background: #fff;
  padding: 80px 0;
}

.brand-section h2 {
  font-size: 2rem;
  font-weight: 300;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brand-card:hover {
  border-color: #ddd;
}

.brand-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 16px;
}

.brand-card-title {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 8px;
}

.brand-card-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.brand-download-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  color: #666;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.brand-download-btn:hover {
  border-color: #ccc;
  color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .brand-hero {
    padding: 60px 0 40px 0;
  }
  
  .brand-hero-title {
    font-size: 2rem;
  }
  
  .brand-section {
    padding: 60px 0;
  }
  
  .brand-section h2 {
    font-size: 1.7rem;
    margin-bottom: 40px;
  }
  
  .brand-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .brand-card {
    padding: 24px 16px;
  }
  
  .brand-card img {
    width: 100px;
    height: 100px;
  }
  
  .brand-note {
    padding: 16px 20px;
    margin: 0 0 32px 0;
  }
  
  .brand-note i {
    font-size: 1rem;
  }
  
  .brand-note p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .brand-grid {
    padding: 0 16px;
  }
  
  .brand-card {
    padding: 20px 16px;
  }
  
  .brand-card-btns {
    flex-direction: column;
  }
  
  .brand-note {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }
  
  .brand-note i {
    align-self: flex-start;
  }
} 