/* Bootstrap-inspired modern blog style */
* {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Container */
.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.site-header {
  background-color: #f8f8f8;
  border-color: #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 20px;
  padding: 20px 0;
}

.site-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 20px;
  margin: 0;
  color: #2c3e50;
}

.site-title a {
  color: #2c3e50;
  text-decoration: none;
}

.site-title a:hover,
.site-title a:focus {
  color: #1a252f;
  background-color: transparent;
}

.site-nav {
  margin-top: 10px;
}

.site-nav a {
  color: #333;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 600;
  font-size: 16px;
}

.site-nav a:hover,
.site-nav a:focus {
  color: #000;
  text-decoration: none;
}

/* Main content */
.site-main {
  padding: 20px 0;
}

.post {
  margin-bottom: 40px;
}

.post-header {
  margin-bottom: 20px;
}

.post-title {
  font-size: 32px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 10px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #2c3e50;
}

.post-date {
  color: #777;
  font-size: 14px;
  font-style: italic;
}

.post-content {
  line-height: 1.7;
}

.content {
  line-height: 1.7;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #2c3e50;
  margin-top: 20px;
  margin-bottom: 10px;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 15px;
}

a {
  color: #428bca;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #2a6496;
  text-decoration: underline;
}

/* Code blocks */
pre {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
  overflow-x: auto;
}

code {
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 2px 4px;
  font-size: 13px;
}

pre code {
  background-color: transparent;
  border: none;
  padding: 0;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

th, td {
  border: 1px solid #ddd;
  padding: 8px 12px;
  text-align: left;
}

th {
  background-color: #f8f8f8;
  font-weight: 600;
}

/* Blockquotes */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #eee;
}

blockquote p:last-child {
  margin-bottom: 0;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

/* Footer */
.site-footer {
  background-color: #f8f8f8;
  border-top: 1px solid #e7e7e7;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  color: #777;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Lists */
ul, ol {
  margin-bottom: 15px;
  padding-left: 20px;
}

li {
  margin-bottom: 5px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 4px;
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #428bca;
  border-color: #357ebd;
}

.btn-primary:hover {
  color: #fff;
  background-color: #3071a9;
  border-color: #285e8e;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  
  .post-title {
    font-size: 28px;
  }
  
  .site-title {
    font-size: 26px;
  }
} 