/* One Minute Sermons - Custom Styles */

/* Sermon Cards */
.sermon-card {
   background: white;
   border-radius: 12px;
   padding: 30px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   transition: transform 0.3s, box-shadow 0.3s;
   height: 100%;
   display: flex;
   flex-direction: column;
   border-top: 4px solid #667eea;
}

.sermon-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.sermon-icon {
   width: 60px;
   height: 60px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
}

.sermon-icon i {
   font-size: 28px;
   color: white;
}

.sermon-title {
   font-size: 20px;
   font-weight: 400;
   margin: 0 0 15px 0;
   line-height: 1.4;

}

.sermon-title a {
   color: #333;
   text-decoration: none;
   transition: color 0.3s;
   font-size: 1.5rem;
}

.sermon-title a:hover {
   color: #667eea;
}

.sermon-meta {
   display: flex;
   gap: 20px;
   margin-bottom: 15px;
   font-size: 13px;
   color: #666;
}

.title-subtitle-holder-inner h2 {
   padding-bottom: 10px;
   text-shadow: none;
}

.sermon-meta span {
   display: flex;
   align-items: center;
   gap: 5px;
}

.sermon-excerpt {
   color: #555;
   line-height: 1.6;
   margin-bottom: 15px;
   flex-grow: 1;
   font-size: 12px;
}

.sermon-tags-mini {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin-bottom: 15px;
}

.tag-mini {
   background: #f0f0f0;
   color: #666;
   padding: 4px 10px;
   border-radius: 12px;
   font-size: 12px;
   font-weight: 500;
}

.read-more {
   color: #667eea;
   font-weight: 600;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 5px;
   transition: gap 0.3s;
}

.read-more:hover {
   gap: 10px;
}

/* Tag Filter Bar */
.sermon-tags {
   background: white;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.tag-btn {
   padding: 8px 18px;
   background: #f5f5f5;
   color: #333;
   text-decoration: none;
   border-radius: 20px;
   font-size: 14px;
   font-weight: 500;
   transition: all 0.3s;
   border: 2px solid transparent;
}

.tag-btn:hover {
   background: #667eea;
   color: white;
   transform: translateY(-2px);
}

.tag-btn.active {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border-color: #667eea;
}

/* Single Sermon Page */
.sermon-single {
   background: white;
   padding: 40px;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   margin-bottom: 40px;
}

.sermon-meta-header {
   display: flex;
   gap: 25px;
   margin-bottom: 20px;
   padding-bottom: 20px;
   border-bottom: 2px solid #f0f0f0;
   font-size: 14px;
   color: #666;
}

.sermon-meta-header span {
   display: flex;
   align-items: center;
   gap: 8px;
}

.sermon-tags-header {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-bottom: 30px;
}

.tag-badge {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 8px 16px;
   border-radius: 20px;
   text-decoration: none;
   font-size: 13px;
   font-weight: 600;
   transition: transform 0.3s, box-shadow 0.3s;
   display: inline-block;
}

.tag-badge:hover {
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
   color: white;
}

.sermon-content {
   font-size: 18px;
   line-height: 1.8;
   color: #333;
   margin-bottom: 40px;
}

.sermon-content p {
   margin-bottom: 20px;
}

.sermon-content h2,
.sermon-content h3 {
   margin-top: 30px;
   margin-bottom: 15px;
   color: #333;
}

.sermon-content ul,
.sermon-content ol {
   margin-bottom: 20px;
   padding-left: 30px;
}

.sermon-content li {
   margin-bottom: 10px;
}

.sermon-content blockquote {
   border-left: 4px solid #667eea;
   padding-left: 20px;
   margin: 30px 0;
   font-style: italic;
   color: #555;
}

.sermon-footer {
   padding-top: 30px;
   border-top: 2px solid #f0f0f0;
}

/* Related Sermons */
.related-sermons {
   margin-top: 40px;
}

.related-sermons h3 {
   font-size: 24px;
   margin-bottom: 25px;
   color: #333;
}

.related-sermon-card {
   background: #f8f8f8;
   padding: 20px;
   border-radius: 8px;
   height: 100%;
   transition: background 0.3s;
}

.related-sermon-card:hover {
   background: #f0f0f0;
}

.related-sermon-card h4 {
   font-size: 16px;
   margin: 0 0 10px 0;
}

.related-sermon-card h4 a {
   color: #333;
   text-decoration: none;
}

.related-sermon-card h4 a:hover {
   color: #667eea;
}

.related-sermon-card .sermon-excerpt {
   font-size: 14px;
   color: #666;
   margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
   .sermon-card {
      padding: 20px;
   }
   
   .sermon-single {
      padding: 25px;
   }
   
   .sermon-content {
      font-size: 16px;
   }
   
   .sermon-tags {
      padding: 15px;
   }
   
   .sermon-meta-header {
      flex-direction: column;
      gap: 10px;
   }
}

/* Pagination adjustments for sermons */
.pagination {
   text-align: center;
   margin: 30px 0;
}

.pagination ul {
   display: inline-flex;
   gap: 5px;
   list-style: none;
   padding: 0;
   margin: 0;
}

.pagination li {
   background: white;
   border: 2px solid #e0e0e0;
   padding: 10px 15px;
   border-radius: 6px;
   transition: all 0.3s;
   cursor: pointer;
}

.pagination li:hover {
   border-color: #667eea;
   color: #667eea;
}

.pagination li.active {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border-color: #667eea;
}

.pagination a {
   color: inherit;
   text-decoration: none;
}
