/* ============================================================
   AZAY AGENT — การ์ดลิงก์ด่วน (ใช้ร่วมกันทุกหน้า)
   ไม่ต้องแก้ไฟล์นี้ ใส่ไว้เฉยๆ
============================================================= */

.az-quicklinks { padding: 3rem 2rem 3.5rem; background: #fff; }
.az-ql-title { font-family: 'Prompt', sans-serif; font-size: 22px; font-weight: 700; text-align: center; color: #1a3a5c; margin-bottom: 1.75rem; }
.az-ql-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 1150px; margin: 0 auto; }
.az-ql-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 1.5rem 1rem; background: #f8fbff; border: 1px solid #e8f4fd; border-radius: 16px; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.az-ql-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(46,128,200,0.12); border-color: #2E80C8; }
.az-ql-icon { width: 48px; height: 48px; border-radius: 50%; background: #e8f4fd; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.az-ql-card span.az-ql-name { font-size: 14px; font-weight: 700; color: #1a3a5c; }
.az-ql-card span.az-ql-desc { font-size: 11.5px; color: #999; line-height: 1.4; }

@media (max-width: 900px) {
  .az-ql-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .az-ql-grid { grid-template-columns: repeat(2, 1fr); }
}