/*
Theme Name: AtlasPress Child
Theme URI: https://example.com/
Author: AtlasPress Team
Description: Child theme for AtlasPress.
Version: 1.0.0
Template: skillgames
Text Domain: skillgames-child
*/

/* === Directory layout: collection width === */
body.sg-is-collection .sg-page-layout{
  display:block !important;
  grid-template-columns:none !important;
  gap:0 !important;
}
body.sg-is-collection .sg-sidebar{
  display:none !important;
}
body.sg-is-collection .sg-page > .sg-container,
body.sg-is-collection .sg-container{
  max-width:1180px !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:20px !important;
  padding-right:20px !important;
}

/* === Page header === */
.sg-page-header{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:18px 20px;
  box-shadow:0 10px 24px rgba(15,23,42,0.06);
  margin-bottom:16px;
}
.sg-page-header h1{font-size:28px;margin-bottom:6px;}
.sg-page-subtitle{font-size:14px;color:#6b7280;}
.sg-page-desc{color:#374151;}

/* === Article card === */
.sg-article{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:22px 24px;
  box-shadow:0 12px 28px rgba(15,23,42,0.08);
  line-height:1.7;
}
.sg-article h2,.sg-article h3{margin-top:18px;}
.sg-article p{margin:0 0 12px;}
.sg-article ul,.sg-article ol{margin:0 0 12px 18px;}

/* === Term text === */
body.sg-is-collection .sg-term-seo-title{
  font-size:13px;
  font-weight:700;
  color:#6b7280;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin:0 0 8px;
}
body.sg-is-collection .sg-term-desc{
  font-size:15px;
  color:#374151;
  line-height:1.7;
  margin:0 0 14px;
}

/* === Home guides cards === */
.sg-home-guides .sg-guide-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:12px;
}
.sg-home-guides .sg-guide-card{
  display:flex;
  flex-direction:column;
  gap:6px;
  border:1px solid #e5e7eb;
  border-radius:12px;
  padding:14px;
  background:#f8fafc;
  color:#0f172a;
  text-decoration:none;
  transition:box-shadow .2s ease,border-color .2s ease,transform .2s ease;
}
.sg-home-guides .sg-guide-card:hover{
  border-color:#c7d2fe;
  box-shadow:0 8px 20px rgba(15,23,42,0.08);
  transform:translateY(-1px);
}
.sg-home-guides .sg-guide-card h3{
  margin:0;
  font-size:15px;
  font-weight:800;
}
.sg-home-guides .sg-guide-card p{
  margin:0;
  font-size:13px;
  color:#475569;
  line-height:1.6;
}
