.gsg-tools-widget{
  position:relative;
  overflow:hidden;
  background:
  linear-gradient(
    180deg,
    #f8fbff 0%,
    #eef4ff 100%
  );
  border:1px solid rgba(11,61,145,.08);
  border-radius:34px;
  padding:60px 34px;
  margin:70px auto;
  max-width:1280px;
  box-shadow:
  0 18px 60px rgba(9,30,66,.06);
}

.gsg-tools-widget::before{
  content:'';
  position:absolute;
  top:-180px;
  right:-120px;
  width:420px;
  height:420px;
  background:
  radial-gradient(
    circle,
    rgba(11,61,145,.08),
    transparent 70%
  );
  pointer-events:none;
}

.gsg-tools-widget::after{
  content:'';
  position:absolute;
  bottom:-220px;
  left:-120px;
  width:420px;
  height:420px;
  background:
  radial-gradient(
    circle,
    rgba(245,197,24,.08),
    transparent 70%
  );
  pointer-events:none;
}

.gsg-tools-header{
  position:relative;
  z-index:2;
  text-align:center;
  margin-bottom:42px;
}

.gsg-tools-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  border-radius:999px;
  background:#0b3d91;
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:1.6px;
  text-transform:uppercase;
  margin-bottom:18px;
  box-shadow:
  0 8px 22px rgba(11,61,145,.18);
}

.gsg-tools-header h2{
  margin:0 0 18px;
  font-size:46px;
  line-height:1.12;
  color:#082048;
  font-weight:800;
  letter-spacing:-1px;
}

.gsg-tools-header p{
  max-width:880px;
  margin:0 auto;
  font-size:17px;
  line-height:1.95;
  color:#5b6677;
}

.gsg-tools-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:
  repeat(2,minmax(0,1fr));
  gap:24px;
}

.gsg-tool-card{
  position:relative;
  overflow:hidden;
  display:flex;
  gap:22px;
  align-items:flex-start;
  text-decoration:none !important;
  background:#fff;
  border-radius:28px;
  padding:28px;
  min-height:220px;
  border:1px solid rgba(11,61,145,.08);
  transition:
  transform .28s ease,
  box-shadow .28s ease,
  border-color .28s ease;
  box-shadow:
  0 8px 26px rgba(15,23,42,.04);
}

.gsg-tool-card::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:5px;
  height:100%;
  background:#0b3d91;
}

.gsg-tool-card:hover{
  transform:translateY(-6px);
  border-color:rgba(11,61,145,.18);
  box-shadow:
  0 20px 46px rgba(15,23,42,.08);
}

.gsg-tool-card.featured{
  background:
  linear-gradient(
    135deg,
    #07162f 0%,
    #0b3d91 100%
  );
  border-color:transparent;
}

.gsg-tool-card.featured::before{
  background:#f5c518;
}

.gsg-tool-card.featured h3,
.gsg-tool-card.featured p,
.gsg-tool-card.featured span{
  color:#fff;
}

.gsg-tool-icon{
  width:72px;
  height:72px;
  min-width:72px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  background:
  linear-gradient(
    180deg,
    rgba(11,61,145,.08),
    rgba(11,61,145,.03)
  );
  box-shadow:
  inset 0 1px 0 rgba(255,255,255,.8);
}

.gsg-tool-card.featured .gsg-tool-icon{
  background:
  rgba(255,255,255,.12);
}

.gsg-tool-content{
  width:100%;
}

.gsg-tool-content h3{
  margin:0 0 12px;
  font-size:24px;
  line-height:1.3;
  color:#0b2347;
  font-weight:800;
}

.gsg-tool-content p{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.9;
  color:#627086;
}

.gsg-tool-content span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:#0b3d91;
}

.gsg-tool-content span::after{
  content:'→';
  transition:transform .25s ease;
}

.gsg-tool-card:hover
.gsg-tool-content span::after{
  transform:translateX(4px);
}

@media(max-width:1024px){

.gsg-tools-header h2{
  font-size:40px;
}

}

@media(max-width:768px){

.gsg-tools-widget{
  padding:42px 20px;
  border-radius:28px;
  margin:50px auto;
}

.gsg-tools-grid{
  grid-template-columns:1fr;
  gap:20px;
}

.gsg-tools-header{
  margin-bottom:34px;
}

.gsg-tools-header h2{
  font-size:31px;
  line-height:1.2;
}

.gsg-tools-header p{
  font-size:15px;
  line-height:1.9;
}

.gsg-tool-card{
  padding:24px;
  border-radius:24px;
  min-height:auto;
  gap:18px;
}

.gsg-tool-icon{
  width:62px;
  height:62px;
  min-width:62px;
  font-size:28px;
  border-radius:18px;
}

.gsg-tool-content h3{
  font-size:22px;
}

.gsg-tool-content p{
  font-size:14px;
}

}

@media(max-width:480px){

.gsg-tools-widget{
  padding:36px 16px;
}

.gsg-tools-header h2{
  font-size:28px;
}

.gsg-tool-card{
  flex-direction:column;
}

.gsg-tool-icon{
  margin-bottom:4px;
}

}