/* Blog Styles - Main page and articles styling */

/* Hero Section */
.blog-hero {
  position: relative;
  background: linear-gradient(rgba(11, 55, 100, 0.65), rgba(11, 55, 100, 0.7)), url('/static/blog_hero.jpg');
  background-size: cover;
  background-position: center center;
  color: #fff;
  padding: 120px 0 80px;
  text-align: center;
}

.blog-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.blog-hero h1 {
  color: #fcb131;
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.blog-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Blog Layout */
.blog-content {
  padding: 20px 0;
  background-color: #f8f9fa;
}

.blog-grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* Featured Article */
.featured-article {
  margin-bottom: 50px;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.featured-article .article-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.featured-article .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-article:hover .article-image img {
  transform: scale(1.05);
}

.article-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-badge {
  background-color: #4CAF50;
  color: white;
}

.featured-badge {
  background-color: #FF9800;
  color: white;
}

.featured-article .article-content {
  padding: 30px;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #777;
}

.article-meta i {
  margin-right: 5px;
  color: #4CAF50;
}

.featured-article h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
  color: #222;
}

.featured-article p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #555;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  color: #4CAF50;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  color: #3c8a3f;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Blog Filter */
.blog-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-container {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.search-container input {
  width: 100%;
  padding: 12px 20px;
  padding-right: 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

.search-container button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
}

.filter-options {
  display: flex;
  gap: 15px;
}

.filter-dropdown {
  position: relative;
}

.filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background-color: #e9e9e9;
}

.filter-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.filter-dropdown.active .filter-btn i {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.filter-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-content a {
  display: block;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
}

.dropdown-content a.active {
  color: #4CAF50;
  font-weight: 600;
}

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.article-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.article-card .article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-card .category-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #4CAF50;
  color: white;
}

.article-card .article-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-card .article-meta {
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: #777;
}

.article-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
}

.article-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #666;
  flex-grow: 1;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  color: #4CAF50;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.read-more-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more-link:hover {
  color: #3c8a3f;
}

.read-more-link:hover i {
  transform: translateX(5px);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
  background-color: #f5f5f5;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  margin: 0 10px;
}

.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border: none;
  border-radius: 8px;
  background-color: #f5f5f5;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-number:hover {
  background-color: #e9e9e9;
}

.pagination-number.active {
  background-color: #4CAF50;
  color: #fff;
}

.pagination-ellipsis {
  margin: 0 5px;
  color: #777;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #333;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #4CAF50;
}

/* Newsletter Widget */
.newsletter-widget p {
  margin-bottom: 20px;
  color: #666;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

.newsletter-form .btn {
  width: 100%;
}

/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
  border-bottom: none;
}

.categories-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5px;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.categories-list a:hover {
  color: #4CAF50;
  padding-left: 10px;
}

.category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 25px;
  height: 25px;
  padding: 0 8px;
  border-radius: 12px;
  background-color: #f5f5f5;
  color: #777;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Recent Posts Widget */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: all 0.2s ease;
}

.recent-posts-list li:last-child .recent-post {
  border-bottom: none;
}

.recent-post:hover {
  opacity: 0.9;
}

.recent-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content {
  flex-grow: 1;
}

.recent-post h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.recent-post:hover h4 {
  color: #4CAF50;
}

.post-date {
  font-size: 0.8rem;
  color: #777;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-block;
  padding: 8px 15px;
  background-color: #f5f5f5;
  border-radius: 20px;
  color: #555;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.tag:hover {
  background-color: #4CAF50;
  color: #fff;
}

/* CTA Widget */
.cta-widget {
  background: linear-gradient(135deg, #0B3764, #1976D2);
  color: white;
  text-align: center;
}

.cta-content h3 {
  color: white;
}

.cta-content h3::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

/* Full-width Newsletter */
.full-width-newsletter {
  background: linear-gradient(135deg, #0B3764, #1976D2);
  color: white;
  padding: 80px 0;
  margin-top: 80px;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 12px;
    backdrop-filter: blur(6px);
  }

  .ripple-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(to right, #ffd700, #c0b283);
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
  }

  .ripple-btn .arrow {
    display: inline-block;
    margin-left: 8px;
    font-size: 18px;
    transition: transform 0.4s ease;
  }

  .ripple-btn:hover .arrow {
    transform: translateX(6px);
  }

  .ripple-btn::before {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    opacity: 0.6;
    pointer-events: none;
  }

  .ripple-btn:active::before {
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%) scale(1);
    animation: ripple 0.6s ease-out;
  }

  @keyframes ripple {
    to {
      transform: translate(-50%, -50%) scale(4);
      opacity: 0;
    }
  }
/* Single Article Page Styles */
.single-article {
  background-color: #f8f9fa;
}

.article-header {
  position: relative;
  background-color: #fff;
}

.breadcrumbs {
  padding: 30px 0;
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #4CAF50;
}

.breadcrumbs .separator {
  margin: 0 10px;
  color: #999;
}

.breadcrumbs .current {
  color: #4CAF50;
  font-weight: 500;
}

.article-title-section {
  padding: 0 0 40px;
  text-align: center;
}

.article-category {
  display: inline-block;
  padding: 6px 15px;
  margin-bottom: 20px;
  background-color: #4CAF50;
  color: white;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-title-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}

.article-title-section .article-meta {
  display: flex;
  justify-content: center;
  gap: 25px;
  color: #777;
}

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

.meta-item i {
  color: #4CAF50;
}

.article-featured-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  padding: 60px 0;
}

.article-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.article-main-content {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}

.social-share-vertical {
  position: absolute;
  left: -80px;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.share-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #777;
  margin-bottom: 5px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.share-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.linkedin {
  background-color: #0077b5;
}

.email {
  background-color: #777;
}

.article-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.article-text p {
  margin-bottom: 20px;
}

.article-text h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  font-weight: 700;
  color: #333;
}

.article-text h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  font-weight: 600;
  color: #333;
}

.article-text img {
  max-width: 100%;
  border-radius: 10px;
  margin: 30px 0;
}

.article-text ul, .article-text ol {
  margin: 20px 0 20px 20px;
}

.article-text li {
  margin-bottom: 10px;
}

.article-text blockquote {
  margin: 30px 0;
  padding: 20px 30px;
  border-left: 5px solid #4CAF50;
  background-color: #f9f9f9;
  font-style: italic;
  color: #555;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.tags-label {
  font-weight: 600;
  color: #555;
}

.article-tags .tag {
  padding: 6px 12px;
  font-size: 0.8rem;
}

.author-bio {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  margin: 40px 0;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.author-info p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #eee;
  color: #555;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: #4CAF50;
  color: white;
}

.comments-section {
  margin-top: 50px;
}

.comments-section h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 600;
  color: #333;
}

.no-comments {
  color: #777;
  font-style: italic;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.comment {
  display: flex;
  gap: 20px;
}

.comment-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.comment-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.comment-date {
  font-size: 0.85rem;
  color: #777;
}

.comment-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.reply-btn {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4CAF50;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.reply-btn:hover {
  color: #3c8a3f;
  text-decoration: underline;
}

.comment-form-container {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
}

.comment-form-container h3 {
  margin-bottom: 20px;
}

.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input {
  width: auto;
  margin-top: 3px;
}

/* Related Articles */
.related-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-article {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 10px;
  background-color: #f9f9f9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-article:hover {
  background-color: #f0f0f0;
}

.related-article-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-article-content {
  flex: 1;
}

.related-article h4 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.related-article .article-date {
  font-size: 0.8rem;
  color: #777;
}

/* More Articles Section */
.more-articles {
  padding: 80px 0;
  background-color: #fff;
}

.more-articles h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  font-weight: 700;
}

.articles-slider-container {
  position: relative;
  padding: 0 50px;
}

.articles-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 9;
}

.slider-prev, .slider-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
  background-color: #4CAF50;
  color: white;
  border-color: #4CAF50;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .social-share-vertical {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .share-label {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

@media (max-width: 992px) {
  .blog-grid-container {
    grid-template-columns: 1fr;
  }
  
  .article-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .blog-sidebar {
    position: static;
    margin-top: 50px;
  }
  
  .featured-article .article-image {
    height: 300px;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .full-width-newsletter .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-hero h1 {
    font-size: 2.5rem;
  }
  
  .blog-filter {
    flex-direction: column;
    gap: 15px;
  }
  
  .search-container {
    max-width: 100%;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .article-featured-image {
    height: 300px;
  }
  
  .article-title-section h1 {
    font-size: 2.2rem;
  }
  
  .article-title-section .article-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .comment-form .form-row {
    grid-template-columns: 1fr;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .blog-hero {
    padding: 100px 0 60px;
  }
  
  .blog-hero h1 {
    font-size: 2rem;
  }
  
  .article-main-content {
    padding: 25px;
  }
  
  .article-text {
    font-size: 1rem;
  }
  
  .full-width-newsletter input {
    padding-right: 15px;
  }
  
  .full-width-newsletter .btn {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
  
  .more-articles h2 {
    font-size: 1.8rem;
  }
}

