@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.article-page {
  padding: 50px;
  background: #f8fafc;
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px;
}

.article-header {
  text-align: center;
  margin-bottom: 50px;
}

.article-category {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: #013974;
  color: #fff;
  font-size: .9rem;
  margin-bottom: 20px;
}

.article-header h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: #64748b;
  font-size: .95rem;
}

.article-cover {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 50px;
  box-shadow: 0 15px 35px rgba(0,0,0,.08);
}

.article-content {
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
}

.lead {
  font-size: 1.2rem;
  line-height: 2;
  color: #475569;
  margin-bottom: 40px;
}

.article-content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #0f172a;
}

.article-content h3 {
  margin-bottom: 10px;
  color: #0f172a;
}

.article-content p {
  color: #475569;
  line-height: 1.9;
}

.info-box {
  background: #eff6ff;
  border-left: 5px solid #013974;
  padding: 25px;
  border-radius: 16px;
  margin: 40px 0;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  
}

.article-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: .3s;
}

.article-item h3 {
  font-size: 1rem;
}

.article-item p {
  font-size: 0.8rem;
}

.article-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.article-item span {
  min-width: 60px;
  height: 60px;
  background: #013974;
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.point-list ul {
    padding-left: 20px;
    margin-top: 10px;
}

.point-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #334155;
}

.warning-box {
  margin-top: 40px;
  padding: 25px;
  border-radius: 16px;
  background: #fff8e6;
  border: 1px solid #facc15;
  color: #854d0e;
}

.why-box {
  margin-top: 40px;
  padding: 25px;
  border-radius: 16px;
  background: #ebffe6;
  border: 1px solid #15fa8f;
  color: #0e852c;
}

.faq-section {
  margin-top: 80px;
}

.faq-section h2 {
  margin-bottom: 25px;
  color: #0f172a;
}

.faq-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
}

.faq-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

.faq-table thead {
  background: #013974;
  color: #fff;
}

.faq-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

.faq-table td {
  padding: 20px;
  line-height: 1.8;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.faq-table tbody tr:last-child td {
  border-bottom: none;
}

.faq-table tbody tr:hover {
  background: #f8fafc;
}

.faq-table td:first-child {
  width: 35%;
  font-weight: 600;
  color: #0f172a;
}
/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

  .article-page {
    padding: 20px 10px;
  }

  .article-container {
    padding: 0;
    width: 100%;
  }

  .article-header {
    margin-bottom: 30px;
  }

  .article-header h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .article-meta {
    flex-wrap: wrap;
    font-size: .85rem;
    gap: 5px;
  }

  .article-cover {
    height: 220px;
    border-radius: 16px;
    margin-bottom: 25px;
  }

  .article-content {
    padding: 25px 20px;
    border-radius: 20px;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.8;
  }

  .article-content h2 {
    font-size: 1.4rem;
    margin-top: 35px;
    margin-bottom: 15px;
  }

  .article-content h3 {
    font-size: 1.1rem;
  }

  .article-content p {
    font-size: .95rem;
    line-height: 1.8;
  }

  .info-box,
  .warning-box,
  .why-box {
    padding: 18px;
    margin: 25px 0;
  }

  .article-item {
    gap: 15px;
    padding: 18px;
    border-radius: 16px;
  }

  .article-item span {
    min-width: 45px;
    width: 45px;
    height: 45px;
    font-size: .9rem;
  }

  .article-item h3 {
    font-size: .95rem;
  }

  .article-item p {
    font-size: .8rem;
  }

  .point-list {
    padding: 0;
  }

  .point-list ul {
    padding-left: 18px;
  }

  .faq-section {
    margin-top: 50px;
  }

  .faq-table th,
  .faq-table td {
    padding: 12px;
    font-size: .85rem;
  }

  .faq-table td:first-child {
    min-width: 180px;
  }

}