:root {
  --orange: #FF6B35;
  --orange-600: #E55100;
  --orange-light: #FFF3E0;
}

.hero {
  position: relative;
  background: #000;
}

.hero .ph {
  width: 100%;
  aspect-ratio: 2545 / 520;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero .overlay {
  position: absolute;
  inset: 0;
}

.hero .txt {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 1rem + 2.4vw, 3.2rem);
  font-weight: 900;
}

.hero p {
  margin: 0;
  color: #e7eefc;
  letter-spacing: .3px;
  font-size: 1.1rem;
}

.hero .cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero .ph {
    aspect-ratio: 1920 / 520;
    background-size: contain;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 1rem + 2vw, 2.8rem);
    background-size: contain;
  }
  .hero p {
    font-size: 1rem;
    background-size: contain;
  }
}

@media (max-width: 768px) {
  .hero .ph {
    aspect-ratio: 1440 / 520;
  }
  .hero h1 {
    font-size: clamp(1.3rem, 1rem + 1.5vw, 2rem);
  }
  .hero p {
    font-size: 0.95rem;
  }
  .hero .txt {
    padding: 10px;
  }
}


.section{
  padding:44px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.title{
  margin:0 0 12px;color:var(--ink);
  font-size:clamp(1.6rem,1rem + 1.8vw,2.4rem);
  font-weight:800;
}
.subtitle{
  margin:0 0 18px;color:var(--muted);font-size:1.05rem;
}
.about{
  display:grid;grid-template-columns:1.15fr .85fr;gap:28px;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.news-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: all .3s cubic-bezier(.2,.8,.2,1);
  position: relative;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(255,107,53,0.22);
  border-color: var(--orange);
}

.news-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

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

.news-content {
  padding: 20px 22px 24px;
}

.news-content h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.38;
  font-weight: 700;
}

.news-content h3 a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color .25s ease;
}

.news-content h3 a:hover {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.news-content time {
  font-size: 0.9rem;
  color: #9ca3af;
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.news-content p {
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tags span {
  background: linear-gradient(135deg, var(--orange), #FF8C42);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all .2s;
  box-shadow: 0 4px 12px rgba(255,107,53,0.22);
}

.tags span:hover{
  background: linear-gradient(135deg, var(--orange-600), #FF6B35);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,107,53,0.32);
}

@media (max-width:960px){
  .about{grid-template-columns:1fr}
}

@media (max-width:768px){
  .hero h1{font-size:clamp(1.8rem,5vw + 1rem,2.6rem);background-size: contain;}
  .hero .cta{gap:10px}
  .hero .btn{padding:12px 22px !important;font-size:1rem}
}

@media (max-width: 960px) {
    .hero .ph {
        min-height: 78px!important;
        background-size: cover;
        background-position:center;
        background-repeat: no-repeat;
    }
}