/* ========================================
   全局样式 - 匹配React项目
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

:root {
  /* React项目颜色系统 */
  --cinnabar: #d84734;
  --gold-foil: #d4b16c;
  --cream: #fdfbf5;
  --charcoal: #2c2c2c;
  --ink-black: #1a1a1a;
  --text-gray: #666666;
  --text-light: #999999;
  --border-gray: #e5e5e5;
  
  /* 兼容旧变量 */
  --primary-color: #d84734;
  --secondary-color: #d4b16c;
  --text-color: #1a1a1a;
  --text-secondary: #666666;
  --bg-color: #fdfbf5;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
  
  /* 阴影系统 */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  
  /* 动画缓动函数 */
  --ease-dramatic: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  --transition: all 0.3s var(--ease-smooth);
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  line-height: 1.8;
  color: var(--ink-black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif SC', serif;
  line-height: 1.4;
  font-weight: 700;
}

/* ========================================
   容器 - 匹配React项目 max-w-7xl
======================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   导航栏 - 匹配React项目
======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-gray);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.logo a {
  text-decoration: none;
}

.logo h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cinnabar);
  white-space: nowrap;
  font-family: 'Noto Serif SC', serif;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--ink-black);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  font-size: 0.875rem;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cinnabar);
  transition: all 0.3s var(--ease-expo-out);
  transform: translateX(-50%);
}

.nav-menu a:hover {
  color: var(--cinnabar);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--cinnabar);
}

.nav-menu a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* 语言切换 */
.language-dropdown {
  position: relative;
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--border-gray);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.875rem;
  color: var(--ink-black);
}

.lang-dropdown-btn:hover {
  border-color: var(--cinnabar);
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border-gray);
  border-radius: 0.375rem;
  box-shadow: var(--shadow-md);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s var(--ease-expo-out);
  z-index: 1001;
}

.language-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: var(--transition);
  font-size: 0.875rem;
  color: var(--ink-black);
}

.lang-option:hover {
  background: var(--cream);
}

.lang-option.active {
  color: var(--cinnabar);
}

.lang-option.active i {
  display: block;
}

.lang-option i {
  display: none;
  color: var(--cinnabar);
}

/* 移动端菜单按钮 */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.375rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink-black);
  transition: var(--transition);
}

/* ========================================
   通用组件样式 - 匹配React项目
======================================== */

/* Section Subtitle */
.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cinnabar);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Section Title */
.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ink-black);
  margin-bottom: 1rem;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

/* Button Primary */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--cinnabar);
  color: white;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: 0 4px 20px rgba(216, 71, 52, 0.4);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #c03d2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(216, 71, 52, 0.5);
}

/* Button Secondary */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Button Outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--cinnabar);
  border: 2px solid var(--cinnabar);
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--cinnabar);
  color: white;
  transform: translateY(-2px);
}

/* Card Hover Effect */
.card-hover {
  transition: all 0.4s var(--ease-smooth);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(to right, var(--cinnabar), var(--gold-foil));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glass Effect */
.glass-effect {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
}

/* Ink Wash Background */
.ink-wash-bg {
  background: linear-gradient(135deg, rgba(216, 71, 52, 0.03) 0%, rgba(212, 177, 108, 0.03) 100%);
}

/* ========================================
   Hero 轮播图 - 匹配React项目
======================================== */
.hero-carousel {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.carousel-slides {
  position: relative;
  height: 100%;
  width: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  transition: all 0.8s var(--ease-smooth);
  opacity: 0;
  transform: scale(1.05);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
}

.carousel-slide.active .slide-bg {
  transform: scale(1.1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), transparent);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  z-index: 10;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 2rem;
  }
}

.hero-content-inner {
  max-width: 42rem;
}

.hero-subtitle {
  font-size: 0.875rem;
  color: var(--gold-foil);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
  animation: fade-in-up 0.8s var(--ease-expo-out) forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: 'Noto Serif SC', serif;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  animation: fade-in-up 0.8s var(--ease-expo-out) forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 36rem;
  line-height: 1.6;
  animation: fade-in-up 0.8s var(--ease-expo-out) forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fade-in-up 0.8s var(--ease-expo-out) forwards;
  animation-delay: 0.8s;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  z-index: 20;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-prev {
  left: 1rem;
}

@media (min-width: 768px) {
  .carousel-prev {
    left: 2rem;
  }
}

.carousel-next {
  right: 1rem;
}

@media (min-width: 768px) {
  .carousel-next {
    right: 2rem;
  }
}

.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
  width: 32px;
  border-radius: 4px;
  background: var(--cinnabar);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  z-index: 20;
}

@media (min-width: 768px) {
  .scroll-indicator {
    display: flex;
  }
}

.scroll-indicator span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: pulse 2s infinite;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in animation */
.fade-in {
  opacity: 0;
  animation: fade-in-up 0.8s var(--ease-expo-out) forwards;
}

/* Animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }
.delay-9 { animation-delay: 0.9s; }

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* ========================================
   页面横幅 - 匹配React项目
======================================== */
.page-banner {
  position: relative;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, rgba(216, 71, 52, 0.1) 0%, rgba(212, 177, 108, 0.1) 100%);
  margin-top: 80px;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg-1.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: -1;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ink-black);
  margin-bottom: 1rem;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--cinnabar);
}

/* ========================================
   通用章节样式
======================================== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

/* ========================================
   关于我们部分 - 匹配React项目
======================================== */
.about,
.about-section {
  padding: 5rem 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about::before,
.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(216, 71, 52, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
}

.about::after,
.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(212, 177, 108, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(50%, 50%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-text {
  position: relative;
}

.about-text .section-subtitle {
  text-align: left;
}

.about-text .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats,
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .about-stats,
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--cinnabar);
  margin-bottom: 0.5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-black);
  margin-bottom: 0.25rem;
  font-family: 'Noto Serif SC', serif;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.about-image {
  position: relative;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .image-container img {
    height: 500px;
  }
}

.floating-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  max-width: 200px;
  transition: all 0.3s var(--ease-smooth);
}

.floating-card:hover {
  transform: translateY(-5px);
}

.card-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--cinnabar);
  margin-bottom: 0.25rem;
  font-family: 'Noto Serif SC', serif;
}

.card-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.decorative-frame {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(212, 177, 108, 0.3);
  border-radius: 1.5rem;
  z-index: -1;
}

/* ========================================
   党建引领部分 - 匹配React项目
======================================== */
.party_building,
.party-section {
  padding: 5rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.party_building::before,
.party-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 20%;
  width: 128px;
  height: 128px;
  background: rgba(216, 71, 52, 0.1);
  border-radius: 50%;
  filter: blur(50px);
}

.party_building::after,
.party-section::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 20%;
  width: 192px;
  height: 192px;
  background: rgba(216, 71, 52, 0.05);
  border-radius: 50%;
  filter: blur(50px);
}

.party-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .party-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.party-image {
  position: relative;
}

.party-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .party-image img {
    height: 400px;
  }
}

.party-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.party-feature {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s var(--ease-smooth);
}

.party-feature:hover {
  background: rgba(255, 255, 255, 0.1);
}

.party-feature .feature-icon {
  font-size: 1.5rem;
  color: var(--gold-foil);
  margin-bottom: 0.5rem;
}

.party-feature h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.25rem;
}

.party-feature p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.party-text .section-subtitle {
  color: var(--gold-foil);
  text-align: left;
}

.party-text .section-title {
  color: white;
  text-align: left;
}

.party-text p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.party-text .read-more {
  color: var(--gold-foil);
}

/* 通用链接样式 */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cinnabar);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  gap: 0.75rem;
}

.read-more i {
  font-size: 0.875rem;
}

/* Section Tag */
.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cinnabar);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* View More Link */
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cinnabar);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
}

.view-more:hover {
  gap: 0.75rem;
}

.view-more i {
  font-size: 0.75rem;
}

/* ========================================
   新闻动态部分 - 匹配React项目
======================================== */
.news,
.news-section {
  padding: 5rem 0;
  background: var(--cream);
  position: relative;
}

.news-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .news-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.news-header .section-subtitle,
.news-header .section-title {
  text-align: center;
}

@media (min-width: 768px) {
  .news-header .section-subtitle,
  .news-header .section-title {
    text-align: left;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.news-featured {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.news-featured img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

@media (min-width: 768px) {
  .news-featured img {
    height: 400px;
  }
}

.news-featured:hover img {
  transform: scale(1.05);
}

.news-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  color: white;
}

@media (min-width: 768px) {
  .news-featured-content {
    padding: 2rem;
  }
}

.news-featured-content .news-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.news-featured-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .news-featured-content h3 {
    font-size: 1.5rem;
  }
}

.news-featured:hover h3 {
  color: var(--gold-foil);
}

.news-featured-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list {
  background: var(--bg-white);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-gray);
}

.news-list-header {
  padding: 1rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border-gray);
}

.news-list-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-black);
}

.news-list-items {
  display: flex;
  flex-direction: column;
}

.news-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-gray);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.news-list-item:hover {
  background: var(--cream);
}

.news-list-item:last-child {
  border-bottom: none;
}

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

.news-list-content h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-black);
  margin-bottom: 0.25rem;
  line-height: 1.4;
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-item:hover h4 {
  color: var(--cinnabar);
}

.news-list-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.news-list-item i {
  font-size: 0.75rem;
  color: var(--text-light);
  transition: var(--transition);
  margin-left: 0.5rem;
}

.news-list-item:hover i {
  color: var(--cinnabar);
}

.news-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .news-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--bg-white);
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-gray);
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
  color: inherit;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.news-card-image {
  height: 180px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-content {
  padding: 1.5rem;
}

.news-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.news-card-category {
  padding: 0.25rem 0.75rem;
  background: rgba(216, 71, 52, 0.1);
  color: var(--cinnabar);
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.news-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.news-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-black);
  line-height: 1.4;
  transition: var(--transition);
  margin-bottom: 0.5rem;
}

.news-card:hover h4 {
  color: var(--cinnabar);
}

.news-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ========================================
   组织架构部分 - 匹配React项目
======================================== */
.branches,
.branches-section {
  padding: 5rem 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.branches-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .branches-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.branches-header .section-subtitle,
.branches-header .section-title {
  text-align: center;
}

@media (min-width: 768px) {
  .branches-header .section-subtitle,
  .branches-header .section-title {
    text-align: left;
  }
}

.branches-desc {
  text-align: center;
  max-width: 400px;
  margin-top: 0.5rem;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .branches-desc {
    text-align: left;
  }
}

.branches-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .branches-actions {
    margin-top: 0;
  }
}

.scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border-gray);
  background: var(--bg-white);
  color: var(--ink-black);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.scroll-btn:hover {
  border-color: var(--cinnabar);
  color: var(--cinnabar);
}

.scroll-btn:disabled {
  border-color: var(--border-gray);
  color: var(--text-light);
  cursor: not-allowed;
}

.branches-scroll {
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.branches-scroll::-webkit-scrollbar {
  display: none;
}

.branches-grid {
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
}

.branch-card {
  flex-shrink: 0;
  width: 300px;
  scroll-snap-align: start;
  transition: all 0.3s var(--ease-smooth);
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .branch-card {
    width: 350px;
  }
}

.branch-card:hover {
  transform: translateY(-8px);
}

.branch-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .branch-image {
    height: 250px;
  }
}

.branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.branch-card:hover .branch-image img {
  transform: scale(1.1);
}

.branch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
  border-radius: 1.5rem;
}

.branch-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: white;
}

.branch-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .branch-content h3 {
    font-size: 1.25rem;
  }
}

.branch-card:hover h3 {
  color: var(--gold-foil);
}

.branch-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ========================================
   CTA Section - 匹配React项目
======================================== */
.join-us,
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--cinnabar), #c03d2b);
  position: relative;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 8rem 0;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 256px;
  height: 256px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(-50%, -50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  transform: translate(50%, 50%);
}

.join-content,
.cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.join-content h2,
.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  font-family: 'Noto Serif SC', serif;
}

@media (min-width: 768px) {
  .join-content h2,
  .cta-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .join-content h2,
  .cta-title {
    font-size: 3rem;
  }
}

.join-content p,
.cta-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.join-buttons,
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .join-buttons,
  .cta-buttons {
    flex-direction: row;
  }
}

/* ========================================
   联系我们部分
======================================== */
.contact {
  padding: 5rem 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(216, 71, 52, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinnabar);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-black);
  margin-bottom: 0.25rem;
}

.contact-text p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ========================================
   Tabs 标签页样式
======================================== */
.tabs {
  width: 100%;
}

.tabs-list {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-gray);
  margin-bottom: 2rem;
  overflow-x: auto;
}

.tab-trigger {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
}

.tab-trigger:hover {
  color: var(--cinnabar);
}

.tab-trigger.active {
  color: var(--cinnabar);
  border-bottom-color: var(--cinnabar);
}

.tabs .tab-content {
  display: none !important;
}

.tabs .tab-content.active {
  display: block !important;
}

/* Charter content styling */
.charter-content {
  max-height: 600px;
  overflow-y: auto;
  padding: 1.5rem;
  background: var(--bg-white);
}

.charter-content pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: inherit;
  margin: 0;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-black);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-gray);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cinnabar);
  box-shadow: 0 0 0 3px rgba(216, 71, 52, 0.1);
}

/* ========================================
   页脚 - 匹配React项目
======================================== */
.footer {
  background: var(--ink-black);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
  }
}

.footer-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--cinnabar);
  font-family: 'Noto Serif SC', serif;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--cinnabar);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.footer-contact i {
  color: var(--cinnabar);
  width: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* ========================================
   响应式设计
======================================== */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-smooth);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-banner {
    padding: 100px 0 40px;
  }
  
  .page-title {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
}

/* ========================================
   工具类
======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Selection color */
::selection {
  background: rgba(216, 71, 52, 0.2);
  color: var(--ink-black);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-foil);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cinnabar);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   Tailwind风格工具类
======================================== */

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-grid { display: inline-grid; }
.hidden { display: none; }
.contents { display: contents; }

/* Position */
.static { position: static; }
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky { position: sticky; }

/* Position inset */
.inset-0 { inset: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Flex direction */
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }

/* Flex wrap */
.flex-wrap { flex-wrap: wrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }
.flex-nowrap { flex-wrap: nowrap; }

/* Flex grow/shrink */
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.flex-grow { flex-grow: 1; }
.flex-grow-0 { flex-grow: 0; }
.flex-shrink { flex-shrink: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* Justify content */
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

/* Align items */
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

/* Align content */
.content-start { align-content: flex-start; }
.content-end { align-content: flex-end; }
.content-center { align-content: center; }
.content-between { align-content: space-between; }
.content-around { align-content: space-around; }
.content-evenly { align-content: space-evenly; }

/* Grid columns */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* Grid rows */
.grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)); }
.grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)); }
.grid-rows-3 { grid-template-rows: repeat(3, minmax(0, 1fr)); }

/* Gap */
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Padding all */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-16 { padding: 4rem; }

/* Padding vertical */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

/* Padding horizontal */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

/* Padding top */
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }

/* Padding bottom */
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }

/* Padding left */
.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pl-10 { padding-left: 2.5rem; }

/* Padding right */
.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-8 { padding-right: 2rem; }

/* Margin all */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-auto { margin: auto; }

/* Margin vertical */
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Margin horizontal */
.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Margin top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }

/* Margin bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-20 { margin-bottom: 5rem; }

/* Margin left */
.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-auto { margin-left: auto; }

/* Margin right */
.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-auto { margin-right: auto; }

/* Width */
.w-0 { width: 0; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.w-48 { width: 12rem; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }

/* Height */
.h-0 { height: 0; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-40 { height: 10rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-auto { height: auto; }

/* Min/Max width */
.min-w-0 { min-width: 0; }
.min-w-full { min-width: 100%; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }

/* Min/Max height */
.min-h-0 { min-height: 0; }
.min-h-full { min-height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-h-full { max-height: 100%; }
.max-h-screen { max-height: 100vh; }

/* Font size */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

/* Font weight */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Text alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Text color */
.text-white { color: #ffffff; }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-black { color: #000000; }
.text-\[\#1a1a1a\] { color: #1a1a1a; }
.text-\[\#2c2c2c\] { color: #2c2c2c; }
.text-\[\#666\] { color: #666666; }
.text-\[\#999\] { color: #999999; }
.text-\[\#ccc\] { color: #cccccc; }
.text-\[\#d84734\] { color: #d84734; }
.text-\[\#d4b16c\] { color: #d4b16c; }

/* Background color */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }
.bg-\[\#fdfbf5\] { background-color: #fdfbf5; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-\[\#2c2c2c\] { background-color: #2c2c2c; }
.bg-\[\#d84734\] { background-color: #d84734; }
.bg-\[\#c03d2b\] { background-color: #c03d2b; }
.bg-\[\#d4b16c\] { background-color: #d4b16c; }
.bg-\[\#e5e5e5\] { background-color: #e5e5e5; }

/* Background opacity */
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-\[\#d84734\]\/5 { background-color: rgba(216, 71, 52, 0.05); }
.bg-\[\#d84734\]\/10 { background-color: rgba(216, 71, 52, 0.1); }
.bg-\[\#d4b16c\]\/10 { background-color: rgba(212, 177, 108, 0.1); }
.bg-\[\#d4b16c\]\/20 { background-color: rgba(212, 177, 108, 0.2); }

/* Background gradient */
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-\[\#d84734\] { --tw-gradient-from: #d84734 var(--tw-gradient-from-position); --tw-gradient-to: rgba(216, 71, 52, 0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-\[\#d84734\]\/10 { --tw-gradient-from: rgba(216, 71, 52, 0.1) var(--tw-gradient-from-position); --tw-gradient-to: rgba(216, 71, 52, 0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-\[\#d4b16c\]\/10 { --tw-gradient-from: rgba(212, 177, 108, 0.1) var(--tw-gradient-from-position); --tw-gradient-to: rgba(212, 177, 108, 0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black\/60 { --tw-gradient-from: rgba(0, 0, 0, 0.6) var(--tw-gradient-from-position); --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-\[\#c03d2b\] { --tw-gradient-to: #c03d2b var(--tw-gradient-to-position); }
.to-\[\#d4b16c\]\/10 { --tw-gradient-to: rgba(212, 177, 108, 0.1) var(--tw-gradient-to-position); }
.to-transparent { --tw-gradient-to: transparent var(--tw-gradient-to-position); }
.to-\[\#d84734\]\/10 { --tw-gradient-to: rgba(216, 71, 52, 0.1) var(--tw-gradient-to-position); }

/* Border radius */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* Border */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-4 { border-width: 4px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }

/* Border color */
.border-white { border-color: #ffffff; }
.border-black { border-color: #000000; }
.border-transparent { border-color: transparent; }
.border-\[\#e5e5e5\] { border-color: #e5e5e5; }
.border-\[\#d84734\] { border-color: #d84734; }

/* Border style */
.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }
.border-dotted { border-style: dotted; }

/* Shadow */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* Line clamp */
.line-clamp-1 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }

/* Overflow */
.overflow-auto { overflow: auto; }
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.overflow-scroll { overflow: scroll; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

/* Object fit */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }
.object-none { object-fit: none; }

/* Cursor */
.cursor-auto { cursor: auto; }
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.cursor-wait { cursor: wait; }
.cursor-not-allowed { cursor: not-allowed; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* User select */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }

/* Whitespace */
.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-line { white-space: pre-line; }
.whitespace-pre-wrap { white-space: pre-wrap; }

/* Word break */
.break-normal { overflow-wrap: normal; word-break: normal; }
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* Transition */
.transition-none { transition-property: none; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Transition duration */
.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

/* Transform */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.translate-x-0 { --tw-translate-x: 0; }
.translate-x-1 { --tw-translate-x: 0.25rem; }
.translate-x-2 { --tw-translate-x: 0.5rem; }
.translate-x-4 { --tw-translate-x: 1rem; }
.translate-y-0 { --tw-translate-y: 0; }
.translate-y-1 { --tw-translate-y: 0.25rem; }
.translate-y-2 { --tw-translate-y: 0.5rem; }
.translate-y-4 { --tw-translate-y: 1rem; }
.-translate-y-1 { --tw-translate-y: -0.25rem; }
.-translate-y-2 { --tw-translate-y: -0.5rem; }
.-translate-y-4 { --tw-translate-y: -1rem; }
.-translate-y-8 { --tw-translate-y: -2rem; }
.-translate-y-1\/2 { --tw-translate-y: -50%; }

/* Position values */
.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-1\/2 { top: 50%; }
.left-0 { left: 0; }
.left-1 { left: 0.25rem; }
.left-2 { left: 0.5rem; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.right-0 { right: 0; }
.right-1 { right: 0.25rem; }
.right-2 { right: 0.5rem; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-1 { bottom: 0.25rem; }
.bottom-2 { bottom: 0.5rem; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.scale-95 { --tw-scale-x: 0.95; --tw-scale-y: 0.95; }
.scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }

/* Rotate */
.rotate-0 { --tw-rotate: 0; }
.rotate-45 { --tw-rotate: 45deg; }
.rotate-90 { --tw-rotate: 90deg; }
.rotate-180 { --tw-rotate: 180deg; }

/* Blur */
.blur-none { filter: blur(0); }
.blur-sm { filter: blur(4px); }
.blur { filter: blur(8px); }
.blur-md { filter: blur(12px); }
.blur-lg { filter: blur(16px); }
.blur-xl { filter: blur(24px); }
.blur-2xl { filter: blur(40px); }
.blur-3xl { filter: blur(64px); }

/* List style */
.list-none { list-style-type: none; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }

/* Text decoration */
.underline { text-decoration-line: underline; }
.overline { text-decoration-line: overline; }
.line-through { text-decoration-line: line-through; }
.no-underline { text-decoration-line: none; }

/* Text transform */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

/* Letter spacing */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }

/* Line height */
.leading-3 { line-height: 0.75rem; }
.leading-4 { line-height: 1rem; }
.leading-5 { line-height: 1.25rem; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-9 { line-height: 2.25rem; }
.leading-10 { line-height: 2.5rem; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Vertical align */
.align-baseline { vertical-align: baseline; }
.align-top { vertical-align: top; }
.align-middle { vertical-align: middle; }
.align-bottom { vertical-align: bottom; }

/* Placeholder color */
.placeholder-\[\#999\]::placeholder { color: #999999; }

/* Focus */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-\[\#d84734\]:focus { border-color: #d84734; }
.focus\:ring-1:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
.focus\:ring-\[\#d84734\]:focus { --tw-ring-color: #d84734; }

/* Hover */
.hover\:bg-\[\#d84734\]:hover { background-color: #d84734; }
.hover\:bg-\[\#d84734\]\/10:hover { background-color: rgba(216, 71, 52, 0.1); }
.hover\:text-\[\#d84734\]:hover { color: #d84734; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }

/* Group hover */
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:text-\[\#d84734\] { color: #d84734; }

/* Group hover for link */
.group\/link:hover .group-hover\/link\:translate-x-1 { transform: translateX(0.25rem); }

/* Responsive breakpoints */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:text-5xl { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:h-auto { height: auto; }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
