@charset "utf-8";
@charset "utf-8";
.hero-slider{
	height: 50vh;
}
 /* Page Title */
  .page-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    border-left: 4px solid #e67e22;
    padding-left: 12px;
  }

  /* Featured Card */
  .featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 28px;
  }
  .featured-card .feat-img {
    flex: 0 0 55%;
    min-height: 340px;
    position: relative;
    overflow: hidden;
  }
  .featured-card .feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .featured-card .feat-content {
    flex: 1;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .featured-card .feat-date {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
  }
  .featured-card .feat-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #222;
  }
  .featured-card .feat-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
  }
  .btn-view {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 10px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s;
    align-self: flex-start;
  }
  .btn-view:hover { background: #d35400; }

  /* Grid */
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
  }

  /* Card */
  .card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform .2s, box-shadow .2s;
    cursor: pointer;
  }
  .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  }
  .card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #eee;
  }
  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
  }
  .card:hover .card-img img { transform: scale(1.05); }
  .card-body { padding: 18px 20px 22px; }
  .card-date {
    color: #999;
    font-size: 12px;
    margin-bottom: 8px;
  }
  .card-title {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-desc {
    color: #777;
    font-size: 13px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }



  /* Responsive */
  @media (max-width: 900px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
    .featured-card { flex-direction: column; }
    .featured-card .feat-img { min-height: 240px; flex: auto; }
  }
  @media (max-width: 600px) {
    .grid { grid-template-columns: 1fr; }
    .featured-card .feat-content { padding: 24px 20px; }
    .featured-card .feat-title { font-size: 19px; }
  }
  
  
  /* ===== Hero ===== */
  .card a {
      text-decoration: none;
  }
  .hero {
    height: 55vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 60%, #16213e 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 70%, rgba(212,137,74,0.14) 0%, transparent 65%);
  }
  .hero-eyebrow {font-size: 38px;letter-spacing: 4px;color: #d4894a;text-transform: uppercase;margin-bottom: 16px;opacity: 0;animation: fadeInDown 0.8s 0.2s forwards;}
  .hero-title {color: #fff;font-size: clamp(32px, 5vw, 56px);font-weight: 800;margin-bottom: 16px;opacity: 0;animation: fadeInDown 0.8s 0.4s forwards;}
  .hero-title span { color: #d4894a; }
  .hero-sub { font-size: 16px; color: rgba(255,255,255,0.5); max-width: 520px; line-height: 1.7; opacity: 0; animation: fadeInUp 0.8s 0.6s forwards; }
  
  @keyframes fadeInDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }