.service_card_grid{background:var(--navy)}
.service_card_grid .container{padding-top:130px;padding-bottom:130px}
.service_card_grid_head{display:grid;grid-template-columns:1fr 1fr;gap:80px;margin-bottom:80px;align-items:end}
.service_card_grid_head .eyebrow{margin-bottom:22px}
.service_card_grid_intro{max-width:440px;color:rgba(241,237,226,0.7);font-size:16.5px;line-height:1.7}

.service_card_grid_items{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.service_card{background:rgba(241,237,226,0.04);border:1px solid rgba(241,237,226,0.08);border-radius:8px;padding:28px 30px 24px;min-height:240px;display:flex;flex-direction:column;justify-content:space-between;transition:all .35s;cursor:pointer;position:relative;overflow:hidden}
.service_card::before{content:"";position:absolute;left:0;top:0;height:2px;width:0;background:var(--copper-gradient);transition:width .4s}
.service_card:hover{background:rgba(241,237,226,0.07);border-color:rgba(167,181,198,0.25);transform:translateY(-4px)}
.service_card:hover::before{width:100%}
.service_card h3{font-size:24px;font-weight:500;line-height:1.2;margin:0 0 14px;letter-spacing:-0.01em}
.service_card p{font-size:14px;color:rgba(241,237,226,0.6);line-height:1.55;margin-bottom:22px}
.service_arrow{width:38px;height:38px;border-radius:50%;border:1px solid rgba(241,237,226,0.18);display:flex;align-items:center;justify-content:center;transition:all .25s;font-size:14px;flex-shrink:0}
.service_card:hover .service_arrow{background:var(--copper-gradient);border-color:transparent;box-shadow:0 4px 12px rgba(175,90,47,0.35)}

@media(max-width:1024px){
  .service_card_grid_items{grid-template-columns:repeat(2,1fr)}
  .service_card_grid_head{grid-template-columns:1fr;gap:40px}
}
