/* Ghost-specific overrides to match existing blog design */

/* Listing page styles (originally inline in tag pages) */
.blog-listing-post {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
  overflow: hidden;
}
.blog-listing-post:last-child {
  border-bottom: none;
}
.blog-listing-post .hs-featured-image-wrapper {
  margin-bottom: 15px;
}
.blog-listing-post .hs-featured-image {
  max-width: 250px;
  height: auto;
  float: left;
  margin: 0 20px 15px 0;
}
.blog-listing-post__content h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
  line-height: 1.3;
}
.blog-listing-post__content h2 a {
  color: #0b5a96;
  text-decoration: none;
}
.blog-listing-post__content h2 a:hover {
  text-decoration: underline;
}
.blog-listing-post__excerpt {
  color: #555;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 10px;
}
.blog-listing-post__read-more {
  color: #0b5a96;
  font-weight: 600;
  text-decoration: none;
}
.blog-listing-post__read-more:hover {
  text-decoration: underline;
}
.blog-listing-header {
  margin-bottom: 30px;
}
.blog-listing-header h2 {
  font-size: 1.6em;
  color: #333;
}
.blog-pagination {
  text-align: center;
  margin: 30px 0;
  padding: 20px 0;
}
.blog-pagination__link,
.blog-pagination__current {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 3px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 0.95em;
}
.blog-pagination__link {
  color: #0b5a96;
  border: 1px solid #ddd;
}
.blog-pagination__link:hover {
  background: #f0f0f0;
}
.blog-pagination__current {
  background: #0b5a96;
  color: #fff;
  border: 1px solid #0b5a96;
}
@media (max-width: 768px) {
  .blog-listing-post .hs-featured-image {
    float: none;
    max-width: 100%;
    margin: 0 0 15px 0;
  }
}

/* Ghost subscribe form styling */
.ghost-subscribe-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ghost-subscribe-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 14px;
}
.ghost-subscribe-form button {
  padding: 8px 20px;
  background: #0b5a96;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
}
.ghost-subscribe-form button:hover {
  background: #094a7c;
}
.ghost-subscribe-form .message-success {
  width: 100%;
  color: #2e7d32;
  font-size: 14px;
}
.ghost-subscribe-form .message-error {
  width: 100%;
  color: #c62828;
  font-size: 14px;
}

/* Hide Ghost admin bar in public view if needed */
.gh-post-upgrade-cta {
  display: none !important;
}

/* Ghost Koenig editor card styles */
.kg-card {
  margin: 1.5em 0;
}
.kg-image-card img {
  max-width: 100%;
  height: auto;
}
.kg-width-wide {
  margin-left: -5vw;
  margin-right: -5vw;
  width: calc(100% + 10vw);
  max-width: none;
}
.kg-width-full {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  max-width: none;
}
.kg-width-wide img,
.kg-width-full img {
  max-width: 100%;
  height: auto;
}
.kg-bookmark-card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
