/*
Theme Name: Fanstrack
Theme URI: https://fansbait.com
Author: BBS4s
Version: 1.0
Description: Custom theme for FansBait to track OF creators
*/
/* fanstrack base styles */

body {
  font-family: Arial, sans-serif;
  background: #f7f7f7;
  color: #333;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  color: #0077cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.site-header {
  background: #111;
  color: #fff;
  padding: 20px 0;
}
.site-title a {
  color: #fff;
  font-size: 28px;
  text-decoration: none;
}
.site-nav {
  margin-top: 10px;
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}
.site-nav li {
  display: inline;
}
.site-nav a {
  color: #ccc;
}
.site-nav a:hover {
  color: #fff;
}

.site-main {
  padding: 30px 0;
}

.with-sidebar {
  display: flex;
  gap: 30px;
}

.content-area {
  flex: 1;
}

.site-sidebar {
  width: 300px;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
}

.widget {
  margin-bottom: 30px;
}
.widget-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: #000;
}

.site-footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

.post-title {
  font-size: 22px;
  margin: 0 0 10px;
}
.post-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}
.post-excerpt {
  margin-bottom: 30px;
}

.pagination {
  margin-top: 20px;
}
