/*
Theme Name:   UPSTET Official Child
Theme URI:    https://example.com
Description:  Child theme of GeneratePress for UPSTET Official — an independent information portal covering UP Super TET (UPSTET), UPTET and CTET recruitment news, eligibility, exam pattern and results.
Author:       UPSTET Official
Template:     generatepress
Version:      1.1.0
Text Domain:  upstet-child
*/

/* =========================================================
   1. DESIGN TOKENS
   Beige = site-wide base. Cherry red = navigation, buttons, links.
========================================================= */
:root{
  --upstet-beige:        #F3EAD6;   /* page background */
  --upstet-beige-soft:   #FAF5E9;   /* card background, lighter */
  --upstet-beige-deep:    #E4D3AC;  /* section alt background */
  --upstet-beige-line:   #D8C39A;   /* borders / dividers */
  --upstet-cherry:       #AE1932;   /* primary cherry red */
  --upstet-cherry-dark:  #7C1023;   /* hover / active red */
  --upstet-cherry-soft:  #F6DCE0;   /* pale red tint for badges */
  --upstet-ink:          #2A2116;   /* primary text */
  --upstet-ink-soft:     #5B4E3C;   /* secondary text */
  --upstet-gold:         #8C6A2E;   /* small accent for labels */
  --upstet-white:        #FFFDF7;
  --upstet-radius:       10px;
  --upstet-shadow:       0 2px 14px rgba(42,33,22,0.08);
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

/* =========================================================
   2. BASE
========================================================= */
body{
  background: var(--upstet-beige) !important;
  color: var(--upstet-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
}
h1,h2,h3,h4, .site-title, .site-title a{
  font-family: var(--font-display);
  color: var(--upstet-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
}
a{ color: var(--upstet-cherry); text-decoration: none; }
a:hover{ color: var(--upstet-cherry-dark); text-decoration: underline; }

.upstet-eyebrow{
  display:inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--upstet-cherry);
  background: var(--upstet-cherry-soft);
  border: 1px solid var(--upstet-cherry);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Buttons (site-wide, cherry red) */
.upstet-btn, .wp-block-button__link, input[type="submit"], button.button, .comment-form input#submit{
  display:inline-block;
  background: var(--upstet-cherry) !important;
  color: var(--upstet-white) !important;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--upstet-radius);
  border: 2px solid var(--upstet-cherry) !important;
  text-decoration: none !important;
  transition: background .18s ease, color .18s ease, transform .12s ease;
}
.upstet-btn:hover, .wp-block-button__link:hover, input[type="submit"]:hover, button.button:hover{
  background: var(--upstet-cherry-dark) !important;
  border-color: var(--upstet-cherry-dark) !important;
  transform: translateY(-1px);
}
.upstet-btn.upstet-btn-outline{
  background: var(--upstet-cherry) !important;
  color: var(--upstet-cherry) !important;
}
.upstet-btn.upstet-btn-outline:hover{
  background: var(--upstet-cherry) !important;
  color: var(--upstet-white) !important;
}

/* =========================================================
   3. HEADER / SITE BRANDING
========================================================= */
.site-header, .inside-header{
  background: var(--upstet-beige-soft) !important;
  border-bottom: 3px solid var(--upstet-cherry);
}
.site-title a{ font-size: 1.9rem; }
.site-description{ color: var(--upstet-ink-soft); font-family: var(--font-mono); font-size: 13px; }

/* =========================================================
   4. PRIMARY NAVIGATION (cherry red, responsive)
========================================================= */
.main-navigation,
#site-navigation,
.main-navigation .inside-navigation{
  background: var(--upstet-cherry) !important;
}
.main-navigation .main-nav > ul > li > a,
.main-navigation .menu > li > a{
  color: var(--upstet-white) !important;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 18px;
  padding-bottom: 18px;
}
.main-navigation .main-nav > ul > li > a:hover,
.main-navigation .main-nav > ul > li.current-menu-item > a,
.main-navigation .main-nav > ul > li.current_page_item > a{
  background: var(--upstet-cherry-dark) !important;
  color: var(--upstet-white) !important;
}
.main-navigation .sub-menu,
.main-navigation ul ul{
  background: var(--upstet-white) !important;
  border: 1px solid var(--upstet-beige-line);
  box-shadow: var(--upstet-shadow);
}
.main-navigation .sub-menu a,
.main-navigation ul ul li a{
  color: var(--upstet-ink) !important;
  font-weight: 500;
}
.main-navigation .sub-menu a:hover{
  background: var(--upstet-cherry-soft) !important;
  color: var(--upstet-cherry-dark) !important;
}
.main-navigation .dropdown-menu-toggle{ color: var(--upstet-white); }

/* Mobile menu toggle + mobile-open menu */
button.menu-toggle,
.main-navigation .menu-toggle{
  background: var(--upstet-cherry-dark) !important;
  color: var(--upstet-white) !important;
  border-radius: 6px;
}
.main-navigation.toggled .main-nav,
.mobile-menu-control-wrapper{
  background: var(--upstet-cherry) !important;
}
@media (max-width: 768px){
  .main-navigation .main-nav ul li a{
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .main-navigation .sub-menu,
  .main-navigation ul ul{
    background: var(--upstet-cherry-dark) !important;
  }
  .main-navigation .sub-menu a{ color: var(--upstet-white) !important; }
}

/* =========================================================
   5. HOME PAGE — HERO
========================================================= */
.upstet-hero{
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  text-align: center;
}
.upstet-hero h1{
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  margin: 0 0 14px;
}
.upstet-hero p.upstet-lede{
  max-width: 720px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
  color: var(--upstet-ink-soft);
}
.upstet-hero .upstet-disclaimer-inline{
  font-size: 13px;
  color: var(--upstet-ink-soft);
  font-family: var(--font-mono);
  margin-top: 10px;
}
.upstet-hero-ctas{ display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom: 30px;}

/* Quick-fact ID strip */
.upstet-idstrip{
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: var(--upstet-white);
  border: 2px dashed var(--upstet-cherry);
  border-radius: var(--upstet-radius);
  max-width: 980px;
  margin: 0 auto;
  overflow:hidden;
}
.upstet-idstrip .upstet-idcell{
  flex: 1 1 200px;
  padding: 16px 18px;
  border-right: 1px dashed var(--upstet-beige-line);
  text-align:left;
}
.upstet-idstrip .upstet-idcell:last-child{ border-right:none; }
.upstet-idstrip .upstet-idlabel{
  display:block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform:uppercase;
  letter-spacing: .06em;
  color: var(--upstet-gold);
  margin-bottom: 4px;
}
.upstet-idstrip .upstet-idvalue{ font-weight:600; color:var(--upstet-ink); }
@media (max-width: 700px){
  .upstet-idstrip .upstet-idcell{ border-right:none; border-bottom:1px dashed var(--upstet-beige-line); flex: 1 1 100%; }
  .upstet-idstrip .upstet-idcell:last-child{ border-bottom:none; }
}

/* =========================================================
   6. CONTENT SECTIONS (home + pages)
========================================================= */
.upstet-section{
  max-width: 1100px;
  margin: 0 auto;
  padding: 46px 24px;
}
.upstet-section.upstet-alt{
  max-width: 100%;
  background: var(--upstet-beige-deep);
}
.upstet-section.upstet-alt > .upstet-inner{
  max-width: 1100px;
  margin: 0 auto;
}
.upstet-section h2{
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 8px;
}
.upstet-section .upstet-section-sub{
  color: var(--upstet-ink-soft);
  margin-bottom: 26px;
  max-width: 760px;
}

/* Info card grid (eligibility / age / exam pattern) */
.upstet-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.upstet-card{
  background: var(--upstet-white);
  border: 1px solid var(--upstet-beige-line);
  border-top: 4px solid var(--upstet-cherry);
  border-radius: var(--upstet-radius);
  padding: 22px 22px 20px;
  box-shadow: var(--upstet-shadow);
}
.upstet-card h3{
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--upstet-cherry-dark);
}
.upstet-card p, .upstet-card ul{ margin: 0 0 8px; color: var(--upstet-ink); font-size: 15.5px; }
.upstet-card ul{ padding-left: 20px; }

/* Comparison table */
.upstet-table-wrap{ overflow-x:auto; margin-top: 10px; border-radius: var(--upstet-radius); box-shadow: var(--upstet-shadow);}
table.upstet-compare{
  width:100%;
  border-collapse: collapse;
  background: var(--upstet-white);
  min-width: 560px;
}
table.upstet-compare caption{ caption-side: top; text-align: left; padding-bottom: 8px; }
table.upstet-compare th, table.upstet-compare td{
  padding: 13px 16px;
  border-bottom: 1px solid var(--upstet-beige-line);
  text-align:left;
  font-size: 15px;
  vertical-align: top;
}
table.upstet-compare thead th{
  background: var(--upstet-cherry);
  color: var(--upstet-white);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: .04em;
}
table.upstet-compare tbody tr:nth-child(odd){ background: var(--upstet-beige-soft); }
table.upstet-compare tbody th{ color: var(--upstet-cherry-dark); font-weight:700; width: 210px; }

/* Updates / notice board */
.upstet-noticeboard{
  background: var(--upstet-beige-deep);
  border: 1px solid var(--upstet-beige-line);
  border-radius: 14px;
  padding: 28px;
  margin-top: 10px;
}
.upstet-notice-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.upstet-notice-card{
  position: relative;
  background: var(--upstet-white);
  border: 1px solid var(--upstet-beige-line);
  border-radius: 8px;
  padding: 18px 18px 16px;
  box-shadow: var(--upstet-shadow);
}
.upstet-notice-card::before{
  content:"";
  position:absolute;
  top:-7px; left:20px;
  width:14px; height:14px;
  background: var(--upstet-cherry);
  border-radius:50%;
  box-shadow: 0 2px 4px rgba(0,0,0,.25);
}
.upstet-notice-date{
  display:block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--upstet-gold);
  margin-bottom: 6px;
}
.upstet-notice-card h3{ font-size: 1.05rem; margin: 0 0 8px; line-height:1.4; }
.upstet-notice-card h3 a{ color: var(--upstet-ink); }
.upstet-notice-card h3 a:hover{ color: var(--upstet-cherry); }
.upstet-notice-card p{ font-size: 14.5px; color: var(--upstet-ink-soft); margin:0; }
.upstet-empty-notice{
  text-align:center;
  padding: 30px 16px;
  color: var(--upstet-ink-soft);
}

/* Anchor offset so fixed/sticky headers don't cover section titles */
.upstet-section, section[id]{ scroll-margin-top: 90px; }

/* =========================================================
   7. FOOTER
========================================================= */
.site-footer, .footer-widgets, .inside-footer{
  background: var(--upstet-cherry-dark) !important;
  color: var(--upstet-cherry-dark);
}
.upstet-footer-columns-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 24px 24px;
}
ul.upstet-footer-columns{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  list-style:none;
  margin:0; padding:0;
}
ul.upstet-footer-columns > li.menu-item-has-children > a{
  display:block;
  color: var(--upstet-cherry-dark) !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 10px;
  border-bottom: 2px solid rgba(243,234,214,0.25);
  padding-bottom: 8px;
  text-decoration:var(--upstet-cherry-dark);
}
ul.upstet-footer-columns .sub-menu{
  list-style:none; margin:0; padding:0;
}
ul.upstet-footer-columns .sub-menu li{ margin-bottom: 8px; }
ul.upstet-footer-columns .sub-menu a{
  color: rgba(250,245,233,0.8) !important;
  font-size: 14px;
  text-decoration:var(--upstet-cherry-dark);;
}
ul.upstet-footer-columns .sub-menu a:hover{ color: var(--upstet-cherry-dark) !important; text-decoration:underline; }
ul.upstet-footer-columns > li:not(.menu-item-has-children) > a{
  color: var(--upstet-cherry-dark) !important;
  font-family: var(--font-display);
  font-weight:600;
  text-decoration:var(--upstet-cherry-dark);;
}

/* Footer legal row */
.upstet-footer-legal-wrap{
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px 8px;
  border-top: 1px solid rgba(243,234,214,0.2);
}
ul.upstet-footer-legal{
  list-style:none; margin:0; padding: 14px 0 6px;
  display:flex; flex-wrap:wrap; gap: 6px 22px; justify-content:center;
}
ul.upstet-footer-legal a{
  color: rgba(250,245,233,0.85) !important;
  font-size: 13.5px;
  text-decoration:none;
}
ul.upstet-footer-legal a:hover{ color: var(--upstet-cherry-dark) !important; text-decoration:underline; }

/* Social icons */
.upstet-social-row{
  display:flex; gap:12px; justify-content:center; margin: 22px 0 6px;
}
.upstet-social-row a{
  display:flex; align-items:center; justify-content:center;
  width:38px; height:38px;
  border-radius:50%;
  background: rgba(250,245,233,0.12);
  border: 1px solid rgba(250,245,233,0.35);
  color: var(--upstet-cherry-dark) !important;
  transition: background .15s ease, transform .15s ease;
}
.upstet-social-row a:hover{ background: var(--upstet-cherry-dark); color: var(--upstet-cherry-dark) !important; transform: translateY(-2px); }
.upstet-social-row svg{ width:18px; height:18px; fill: currentColor; }

.upstet-footer-credit{
  text-align:center;
  font-size: 12.5px;
  color: rgba(250,245,233,0.6);
  padding: 14px 24px 26px;
}
.upstet-footer-credit a{ color: rgba(250,245,233,0.85) !important; }

/* Footer responsive */
@media (max-width: 900px){
  ul.upstet-footer-columns{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  ul.upstet-footer-columns{ grid-template-columns: 1fr; }
}

/* =========================================================
   8. GENERIC PAGE CONTENT (About/Contact/Legal etc.)
========================================================= */
.upstet-page-content{ max-width: 820px; margin: 0 auto; padding: 10px 24px 60px; }
.upstet-page-content h1{ font-size: 2rem; margin-bottom: 6px; }
.upstet-page-content .upstet-updated{
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--upstet-ink-soft);
  margin-bottom: 28px;
  display:block;
}
.upstet-page-content h2{ margin-top: 34px; font-size: 1.4rem; }
.upstet-page-content ul, .upstet-page-content ol{ padding-left: 22px; }
.upstet-page-content .upstet-contact-card{
  background: var(--upstet-white);
  border: 1px solid var(--upstet-beige-line);
  border-left: 4px solid var(--upstet-cherry);
  border-radius: var(--upstet-radius);
  padding: 20px 22px;
  margin: 20px 0;
}
.upstet-page-content .upstet-contact-card a{ font-weight:600; }

/* Comment / print utility */
::selection{ background: var(--upstet-cherry-soft); color: var(--upstet-cherry-dark); }

/* =========================================================
   9. LIVE UPDATES TICKER (site-wide)
   Sits right under the header on every page. Pulls the latest
   published posts automatically — nothing to update by hand.
========================================================= */
.upstet-ticker-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  background: var(--upstet-ink);
  border-bottom: 3px solid var(--upstet-cherry);
  padding: 9px 20px;
}
.upstet-ticker-badge{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.07em;
  color: var(--upstet-white);
  background: var(--upstet-cherry);
  padding: 5px 12px;
  border-radius: 999px;
  white-space:nowrap;
}
.upstet-ticker-badge::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background: var(--upstet-white);
  animation: upstet-ticker-pulse 1.6s ease-in-out infinite;
}
@keyframes upstet-ticker-pulse{
  0%, 100%{ opacity:1; }
  50%{ opacity:.35; }
}
.upstet-ticker-viewport{
  flex: 1 1 auto;
  overflow: hidden;
  min-width: 0;
}
.upstet-ticker-track{
  display:flex;
  width: max-content;
  animation: upstet-ticker-scroll 34s linear infinite;
}
.upstet-ticker-track.upstet-ticker-track-static{ animation:none; }
.upstet-ticker-list{
  display:flex;
  align-items:center;
  flex: 0 0 auto;
  list-style:none;
  margin:0;
  padding:0 40px 0 0;
  white-space:nowrap;
}
.upstet-ticker-list li{ margin-right:40px; }
.upstet-ticker-list li:last-child{ margin-right:0; }
.upstet-ticker-list a{
  color: var(--upstet-beige-soft) !important;
  font-size: 14px;
  font-weight:500;
  text-decoration:none;
}
.upstet-ticker-list a:hover{ color: var(--upstet-white) !important; text-decoration:underline; }
.upstet-ticker-empty{
  color: rgba(250,245,233,0.65);
  font-family: var(--font-mono);
  font-size: 13px;
}
.upstet-ticker-wrap:hover .upstet-ticker-track,
.upstet-ticker-wrap:focus-within .upstet-ticker-track{
  animation-play-state: paused;
}
@keyframes upstet-ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .upstet-ticker-track{ animation:none; }
  .upstet-ticker-viewport{ overflow-x:auto; }
}
@media (max-width: 700px){
  .upstet-ticker-wrap{ padding:8px 14px; gap:10px; }
  .upstet-ticker-badge{ font-size:10px; padding:4px 9px; }
  .upstet-ticker-list a{ font-size:13px; }
}

/* =========================================================
   10. HOME — QUICK INFO HUB (2-column layout)
   Answer Key + Guides  |  Passing/Grades + Division-wise Result
========================================================= */
.upstet-hub-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 14px;
  align-items:start;
}
.upstet-hub-col{
  display:flex;
  flex-direction:column;
  gap: 22px;
}
.upstet-hub-block h3{
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--upstet-cherry-dark);
}
.upstet-hub-block p{ margin: 0 0 12px; }
.upstet-hub-block p:last-child{ margin-bottom:0; }
.upstet-hub-block .upstet-btn{ margin-top: 4px; }

/* Small inline stat table reused inside hub blocks */
.upstet-mini-table{
  width:100%;
  border-collapse: collapse;
  margin: 6px 0 14px;
  font-size: 14.5px;
}
.upstet-mini-table th, .upstet-mini-table td{
  padding: 8px 10px;
  border-bottom: 1px solid var(--upstet-beige-line);
  text-align:left;
}
.upstet-mini-table thead th{
  background: var(--upstet-beige-deep);
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color: var(--upstet-ink-soft);
}

/* Scrollable division/district reference table */
.upstet-division-wrap{
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid var(--upstet-beige-line);
  border-radius: var(--upstet-radius);
  margin-top: 6px;
}
.upstet-division-wrap table{
  width:100%;
  border-collapse: collapse;
  background: var(--upstet-white);
  font-size: 14px;
}
.upstet-division-wrap thead th{
  position: sticky;
  top:0;
  background: var(--upstet-cherry);
  color: var(--upstet-white);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11.5px;
  letter-spacing:.04em;
  padding: 10px 14px;
  text-align:left;
  z-index:1;
}
.upstet-division-wrap td{
  padding: 10px 14px;
  border-bottom: 1px solid var(--upstet-beige-line);
  vertical-align:top;
}
.upstet-division-wrap td:first-child{
  font-weight:700;
  color: var(--upstet-cherry-dark);
  white-space:nowrap;
}
.upstet-division-wrap tbody tr:nth-child(odd){ background: var(--upstet-beige-soft); }
.upstet-division-wrap tbody tr:hover{ background: var(--upstet-cherry-soft); }

@media (max-width: 800px){
  .upstet-hub-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   11. HOME — OFFICIAL NOTICES & TRUST CARDS
   (reuse .upstet-grid / .upstet-card, small additions only)
========================================================= */
.upstet-card .upstet-external-link{
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-weight:600;
}
.upstet-trust-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px; height:38px;
  border-radius:50%;
  background: var(--upstet-cherry-soft);
  color: var(--upstet-cherry);
  font-family: var(--font-display);
  font-weight:700;
  margin-bottom:12px;
}

/* =========================================================
   12. HOME — FAQ ACCORDION
========================================================= */
.upstet-faq-list{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
details.upstet-faq-item{
  background: var(--upstet-white);
  border: 1px solid var(--upstet-beige-line);
  border-left: 4px solid var(--upstet-cherry);
  border-radius: var(--upstet-radius);
  padding: 4px 20px;
  box-shadow: var(--upstet-shadow);
}
details.upstet-faq-item summary{
  cursor:pointer;
  list-style:none;
  padding: 14px 26px 14px 0;
  font-family: var(--font-display);
  font-weight:600;
  font-size: 1.02rem;
  color: var(--upstet-ink);
  position:relative;
}
details.upstet-faq-item summary::-webkit-details-marker{ display:none; }
details.upstet-faq-item summary::after{
  content:"+";
  position:absolute;
  right:0; top:50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight:600;
  color: var(--upstet-cherry);
  transition: transform .15s ease;
}
details.upstet-faq-item[open] summary::after{ content:"–"; }
details.upstet-faq-item summary:hover{ color: var(--upstet-cherry-dark); }
.upstet-faq-answer{ padding: 0 0 18px; color: var(--upstet-ink-soft); font-size:15px; }
.upstet-faq-answer p{ margin:0 0 8px; }
.upstet-faq-answer p:last-child{ margin-bottom:0; }
.upstet-faq-answer a{ font-weight:600; }
