/* C:\Site\www\styles.css - минимальный стиль */
:root{
  --accent:#2a7f62;
  --bg:#f7f7f7;
  --card:#ffffff;
  --muted:#666;
}
*{box-sizing:border-box}
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin:0;
  background:var(--bg);
  color:#222;
  line-height:1.5;
}
.wrap{max-width:1000px;margin:0 auto;padding:18px;}
.site-header{background:linear-gradient(90deg, #effff7, #ffffff);border-bottom:1px solid #e6e6e6}
.site-header .wrap{display:flex;flex-direction:column;gap:6px}
h1{margin:6px 0;font-size:28px}
.accent{color:var(--accent)}
.tagline{margin:0;color:var(--muted)}
.nav{background:#fff;border-bottom:1px solid #e6e6e6}
.nav .wrap{display:flex;gap:12px;padding:10px 18px}
.nav a{color:#333;text-decoration:none;padding:6px 8px;border-radius:6px}
.nav a:hover{background:#f0f0f0}
.main{padding:18px}
.hero{padding:18px;background:var(--card);border-radius:10px;margin-bottom:12px}
.card{background:var(--card);padding:16px;border-radius:10px;margin-bottom:12px;box-shadow:0 1px 3px rgba(0,0,0,0.03)}
.gallery{display:flex;gap:8px;flex-wrap:wrap}
.gallery img{width:32%;height:120px;object-fit:cover;border-radius:6px;border:1px solid #eee}
.muted{color:var(--muted)}
.small{font-size:0.9rem}
.site-footer{padding:18px;background:#fff;border-top:1px solid #e6e6e6;margin-top:18px;text-align:center}
.news h4{margin:0 0 6px 0}

.inline-left {
  float: left;
  margin: 0 15px 15px 0;
  max-width: 250px;
}

.inline-right {
  float: right;
  margin: 0 0 15px 15px;
  max-width: 250px;
}

.card::after {
  content: "";
  display: table;
  clear: both;
}

