/* Campino on-page SEO issue cards — v73 */
.onpage .issue-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:18px !important;
  align-items:stretch !important;
}
.onpage .issue{
  position:relative !important;
  isolation:isolate;
  display:flex !important;
  flex-direction:column !important;
  min-height:235px !important;
  padding:24px !important;
  overflow:hidden;
  background:linear-gradient(150deg,#fff 0%,#fdfaf6 100%) !important;
  border:1px solid #e8dfd6 !important;
  border-radius:22px !important;
  box-shadow:0 14px 38px rgba(36,30,47,.065) !important;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.onpage .issue::before{
  content:"";
  position:absolute;
  z-index:-1;
  width:142px;
  height:142px;
  top:-84px;
  left:-67px;
  border-radius:50%;
  background:rgba(215,149,66,.09);
}
.onpage .issue::after{
  content:"";
  position:absolute;
  right:24px;
  left:24px;
  bottom:0;
  height:3px;
  border-radius:3px 3px 0 0;
  background:linear-gradient(90deg,#d79542,#efc07e);
  transform:scaleX(.35);
  transform-origin:right;
  opacity:.45;
  transition:transform .25s ease,opacity .25s ease;
}
.onpage .issue:hover{
  transform:translateY(-6px);
  border-color:rgba(215,149,66,.58) !important;
  box-shadow:0 22px 48px rgba(36,30,47,.12) !important;
}
.onpage .issue:hover::after{
  transform:scaleX(1);
  opacity:1;
}
.onpage .issue-head{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 22px;
}
.onpage .issue-icon{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  flex:0 0 52px;
  color:#d79542;
  background:#241e2f;
  border:1px solid rgba(215,149,66,.28);
  border-radius:16px;
  box-shadow:0 9px 20px rgba(36,30,47,.16);
}
.onpage .issue-icon svg{
  width:26px;
  height:26px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.onpage .issue-label{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  margin:0 !important;
  padding:4px 10px;
  color:#8d591e !important;
  background:#f8ecdc;
  border:1px solid #f0dcc1;
  border-radius:999px;
  font-size:11px !important;
  font-weight:850 !important;
  line-height:1.4;
}
.onpage .issue h3{
  margin:0 0 10px !important;
  color:#241e2f !important;
  font-size:19px !important;
  font-weight:850 !important;
  line-height:1.6 !important;
}
.onpage .issue p{
  margin:0 !important;
  color:#625b68 !important;
  font-size:13.5px !important;
  font-weight:500 !important;
  line-height:2 !important;
}
@media(max-width:1040px){
  .onpage .issue-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
  .onpage .issue{min-height:215px !important}
}
@media(max-width:600px){
  .onpage .issue-grid{grid-template-columns:1fr !important;gap:14px !important}
  .onpage .issue{min-height:0 !important;padding:21px !important}
  .onpage .issue-head{margin-bottom:18px}
  .onpage .issue-icon{width:48px;height:48px;flex-basis:48px;border-radius:14px}
}
