/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/
```
.word-count {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.word-count:before {
    content: "Word count: ";
}
```
/*----------------------------------------
# Daily Verse Styling
----------------------------------------*/
.container-wrap {
  margin: 2rem 0;
  .main-content {
    article.daily-verse,
    article {
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      line-height: 1.6;
      font-family: 'Open Sans', sans-serif;

      h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1a1a1a;
      }

      blockquote {
        font-size: 1.25rem;
        font-style: italic;
        padding-left: 1rem;
        border-left: 4px solid #f0c040;
        margin: 1rem 0 2rem 0;
        color: #333;
      }

      h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 0.5rem;
        color: #222;
      }

      p {
        margin-bottom: 1rem;
      }

      ul {
        list-style: disc;
        padding-left: 2rem;
        li {
          margin-bottom: 0.75rem;
          strong {
            font-weight: 600;
          }
        }
      }

      /* Previous / Next Navigation */
      .verse-navigation {
        display: flex;
        justify-content: space-between;
        margin-top: 3rem;
        font-weight: 600;

        a {
          color: #f0c040;
          text-decoration: none;
          transition: color 0.3s ease;

          &:hover {
            color: #e6b800;
          }
        }
      }

      /* Responsive adjustments */
      @media (max-width: 768px) {
        padding: 1.5rem;
        h2 { font-size: 1.75rem; }
        blockquote { font-size: 1.1rem; padding-left: 0.75rem; }
        h3 { font-size: 1.25rem; }
      }

      @media (max-width: 480px) {
        padding: 1rem;
        h2 { font-size: 1.5rem; }
        blockquote { font-size: 1rem; }
        h3 { font-size: 1.1rem; }
        ul { padding-left: 1.5rem; }
      }
    }
  }
}

/*----------------------------------------
# Highlight Quick Meaning (Optional)
----------------------------------------*/
.quick-meaning {
  background: #f9f9f9;
  padding: 1rem;
  border-left: 4px solid #f0c040;
  margin-bottom: 2rem;
  font-weight: 500;
  border-radius: 4px;
}




