/* =========================================================
   QUICKLINK - FULL WIDTH GRID (benar2 melebar)
   ========================================================= */

:root{
  --ql-gutter: clamp(14px, 2.2vw, 32px);
}

/* wrapper */
.ql-wrap{
  width: 100%;
  margin: 0;
  padding: 0;
}

/* full-bleed */
.ql-wrap.fw{
  box-sizing: border-box;

  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 18px var(--ql-gutter) 28px;

  overflow-x: clip;
}
@supports not (overflow: clip){
  .ql-wrap.fw{ overflow-x: hidden; }
}
@supports (width: 100dvw){
  .ql-wrap.fw{
    width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
  }
}

/* ✅ IMPORTANT: jangan dibatasi max 1200px */
.ql-wrap.fw > *{
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

/* Head */
.ql-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.ql-title{
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: #071f44;
  letter-spacing: .2px;
}

.ql-sub{
  margin: 6px 0 0;
  color: #4b5563;
  font-size: 13px;
  max-width: 70ch;
}

/* Grid */
.ql-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

/* Card */
.ql-card{
  display:flex;
  align-items:center;
  gap: 12px;

  padding: 14px;
  border-radius: 18px;

  text-decoration:none;
  color: inherit;

  background: #fff;
  border: 1px solid rgba(15, 23, 42, .06);
  box-shadow: 0 10px 24px rgba(16,24,40,.08);

  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.ql-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16,24,40,.12);
  border-color: rgba(45,156,255,.22);
}

.ql-ico{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display:grid;
  place-items:center;

  background: linear-gradient(180deg, rgba(45,156,255,.18), rgba(15,60,130,.10));
  border: 1px solid rgba(45,156,255,.22);
}

.ql-ico img{
  width: 70%;
  height: 70%;
  object-fit: contain;
  display:block;
}

.ql-ico__fallback{
  font-size: 22px;
  color: rgba(7,31,68,.85);
  font-weight: 900;
}

.ql-body{ min-width: 0; flex: 1; }

.ql-name{
  font-weight: 900;
  color: #071f44;
  font-size: 15px;
  line-height: 1.2;
}

.ql-desc{
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(7,31,68,.70);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ql-arrow{
  font-size: 24px;
  color: rgba(7,31,68,.55);
  margin-left: 2px;
}

/* Responsive */
@media (max-width: 1100px){
  .ql-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px){
  .ql-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .ql-grid{ grid-template-columns: 1fr; }
  .ql-card{ padding: 12px; }
  .ql-ico{ width: 50px; height: 50px; border-radius: 14px; }
}
