/*
Theme Name: 3D Material Check
Author: 3D Material Check
Version: 1.0
*/

:root{
  --bg:#f7f9fc;
  --card:#ffffff;
  --text:#172033;
  --muted:#687386;
  --accent:#2563eb;
  --border:#e5eaf1;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

a{
  color:var(--accent);
  text-decoration:none;
}

.site-header{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.site-header-inner,
.site-main,
.site-footer-inner{
  width:min(1160px,calc(100% - 32px));
  margin:auto;
}

.site-header-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.site-brand{
  font-size:21px;
  font-weight:700;
  color:var(--text);
}

.site-main{
  padding:48px 0 72px;
}

.site-footer{
  background:#fff;
  border-top:1px solid var(--border);
  padding:28px 0;
  color:var(--muted);
}

@media(max-width:700px){
  .site-main{
    padding-top:28px;
  }
}
