/* Overrides for static site conversion */

/* Replace Cufon font tags with proper heading styles */
font, .cufon-heading {
  font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', sans-serif;
  font-weight: bold;
}

/* Navigation - replace image-based buttons with styled text */
#buttons {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}

#buttons a {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-family: 'Trebuchet MS', 'Lucida Grande', sans-serif;
  font-size: 18px;
  font-weight: bold;
  color: #999;
  transition: color 0.2s;
}

#buttons a:hover {
  color: #fff;
}

#buttons a.active {
  color: #fff;
  background-color: #282723;
}

/* Testimonial grid - responsive */
#testimonials table {
  max-width: 1000px;
}

#testimonials td img {
  max-width: 200px;
  height: auto;
}

/* Footer - simplified */
#bottom {
  width: 100%;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
}

/* Remove PayPal button area */
.paypal-form {
  display: none;
}

/* Articles listing */
.articles-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 20px 40px;
}

.article-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.15s;
}

.article-card:first-child {
  border-top: 1px solid #e0e0e0;
}

.article-card:hover {
  background-color: #fafaf7;
}

.article-card-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #282723;
  color: #AAFA05;
  font-size: 22px;
  font-weight: bold;
  font-family: Georgia, 'Times New Roman', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.article-card-body {
  flex: 1;
}

.article-card-title {
  margin: 0 0 8px;
  font-size: 26px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: normal;
  color: #282723;
  letter-spacing: -0.5px;
}

.article-card:hover .article-card-title {
  color: #D50004;
}

.article-card-excerpt {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
  font-family: Georgia, 'Times New Roman', serif;
}

.article-card-read {
  font-size: 14px;
  font-weight: bold;
  color: #D50004;
  font-family: Verdana, sans-serif;
  letter-spacing: 0.3px;
}

.article-card:hover .article-card-read {
  text-decoration: underline;
}
