
body{
  margin:0;
  background:#f7f9fc;
}

.full-article{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding:60px 20px;
  box-sizing:border-box;
}

.article-container{
  width:100%;
  max-width:1100px;
  margin:0 auto;
}

.full-article{
  padding:60px 20px;
  display:flex;
  justify-content:center;
  background:#f7f9fc;
}

.article-container{
  max-width:1100px;
  width:100%;
  background:#ffffff;
  padding:45px;
  border-radius:14px;
  box-shadow:0 20px 60px rgba(0,0,0,0.06);
}

/* =========================
TITLE
========================= */

.article-title{
  font-size:2.7rem;
  font-weight:700;
  margin-bottom:20px;
  line-height:1.25;
  color:#111;
}

/* =========================
FEATURE IMAGE
========================= */

.article-image{
  width:100%;
  height:auto;
  border-radius:12px;
  margin:30px 0;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:transform .4s ease;
}

.article-image:hover{
  transform:scale(1.02);
}

/* =========================
TEXT CONTENT
========================= */

.article-content{
  margin-top:10px;
}

.article-content p{
  font-size:1.15rem;
  line-height:1.8;
  margin-bottom:22px;
  color:#333;
}

/* =========================
SECTION HEADINGS
========================= */

.article-content h3{
  font-size:1.55rem;
  margin-top:40px;
  margin-bottom:12px;
  color:#111;
  position:relative;
  padding-left:14px;
}

.article-content h3::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  height:18px;
  width:4px;
  background:#CD0004;
  border-radius:3px;
}

/* =========================
FAQ SECTION
========================= */

.faq-section{
  margin-top:35px;
}

.faq-item{
  background:#f8faff;
  padding:20px 22px;
  border-radius:10px;
  margin-bottom:18px;
  border-left:4px solid #CD0004;
  transition:all .25s ease;
}

.faq-item:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(0,0,0,0.05);
}

.faq-item h4{
  font-size:1.18rem;
  margin-bottom:8px;
  color:#111;
}

.faq-item p{
  font-size:1.08rem;
  color:#444;
  line-height:1.7;
}

/* =========================
TLDR BOX
========================= */

.tldr-box{
  margin-top:30px;
  padding:28px;
  background:linear-gradient(135deg,#f0f5ff,#e9f0ff);
  border-radius:12px;
  border-left:5px solid #CD0004;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
}

.tldr-box p{
  font-size:1.12rem;
  margin-bottom:16px;
  color:#333;
}

/* =========================
RESPONSIVE DESIGN
========================= */

@media (max-width:1024px){

.article-container{
  padding:35px;
}

.article-title{
  font-size:2.3rem;
}

.article-content p{
  font-size:1.1rem;
}

}

@media (max-width:768px){

.full-article{
  padding:40px 18px;
}

.article-container{
  padding:30px;
}

.article-title{
  font-size:2rem;
}

.article-content p{
  font-size:1.05rem;
}

.article-content h3{
  font-size:1.4rem;
}

}

@media (max-width:480px){

.article-container{
  padding:22px;
}

.article-title{
  font-size:1.2rem;
}

.article-content p{
  font-size:0.8rem;
}

}
.insight-table-wrapper{
  margin:40px 0;
  overflow-x:auto;
}

.insight-table{
  width:100%;
  border-collapse:collapse;
  font-family:"Cabin", sans-serif;
  font-size:1rem;
}

.insight-table thead{
  background:#D52927;
  color:#fff;
}

.insight-table th,
.insight-table td{
  padding:16px 18px;
  text-align:left;
  border:1px solid #e4e4e4;
  vertical-align:top;
}

.insight-table th{
  font-size:1.05rem;
  letter-spacing:0.4px;
}

.insight-table tbody tr:nth-child(even){
  background:#f7f7f7;
}

.insight-table tbody tr:hover{
  background:#f1f1f1;
}

/* Mobile */

@media(max-width:600px){

  .insight-table th,
  .insight-table td{
    padding:12px;
    font-size:0.95rem;
  }

}
/* =========================
FAQ SECTION
========================= */

.faq-section{
  margin-top:50px;
}

.faq-item{
  background:#fff;
  border:1px solid #ececec;
  border-left:4px solid #D52927;
  border-radius:10px;
  margin-bottom:16px;
  overflow:hidden;
  transition:all 0.3s ease;
}

/* QUESTION */

.faq-question{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 22px;
  cursor:pointer;
  font-size:1.1rem;
  font-weight:600;
  color:#111;
}

/* PLUS ICON */

.faq-question .icon{
  font-size:1.4rem;
  transition:transform 0.3s ease;
}

/* ANSWER HIDDEN DEFAULT */

.faq-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;
  padding:0 22px;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

/* ANSWER TEXT */

.faq-answer p{
  margin:0;
  padding-bottom:20px;
  line-height:1.8;
  color:#444;
  font-size:1rem;
}

/* ACTIVE STATE */

.faq-item.active .faq-answer{
  max-height:500px;
  opacity:1;
  padding:0 22px 20px;
}

/* ROTATE PLUS */

.faq-item.active .icon{
  transform:rotate(45deg);
}
