/* ============================================
   Customs Web Site - Override CSS
   ไฟล์นี้ใช้ override styles จาก HTML project
   โหลดหลัง blocks.css เพื่อไม่ให้ชนกัน
   ============================================ */

/* Social Options - layout fix */
.social-options .wrapper .social-wrapper,
.social-options .wrapper .options {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .2rem;
}

a {
  cursor: pointer;
}

/* CMS HTML Content - คืน margin ให้ <p> tags ใน content จาก TinyMCE */
/* (global CSS ตั้ง p { margin: 0 } ทำให้ paragraph ไม่เว้นบรรทัด) */
.content-detail p {
  margin-bottom: 0.75em;
}

.content-detail p:last-child {
  margin-bottom: 0;
}