/* Blog Section Styles */
:root {
  --primary-color: #014E9A;
  --primary-dark: #013A73;
  --secondary-color: #0170BF;
}

.blog-section {
  padding: 80px 0;
  background-color: white;
  min-height: 100vh;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Category Filter */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
  justify-content: center;
}

.category-btn {
  padding: 10px 24px;
  border: 2px solid #ddd;
  background: white;
  color: #333;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.category-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(1, 78, 154, 0.3);
}

.category-btn i {
  margin-right: 6px;
}

/* Category Tooltip */
.category-tooltip {
  position: absolute;
  background: #212529;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: tooltipFadeIn 0.2s ease;
}

/* Search Bar Styles */
.blog-filter-section {
  margin-bottom: 40px;
}

.blog-search-wrapper {
  max-width: 600px;
  margin: 0 auto 25px;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper .search-icon {
  position: absolute;
  left: 18px;
  color: #999;
  font-size: 16px;
  z-index: 2;
}

.search-input-wrapper input {
  width: 100%;
  padding: 14px 45px 14px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  font-size: 15px;
  background: white;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.search-input-wrapper input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(1, 78, 154, 0.1);
}

.search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #f0f0f0;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  z-index: 2;
}

.search-clear:hover {
  background: #e0e0e0;
  color: #333;
}

/* Featured Slider - DESKTOP */
.featured-slider {
  position: relative;
  height: 450px;
  margin-bottom: 80px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}

.featured-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.featured-slide a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.featured-slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.featured-slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.featured-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 60px;
  color: white;
  z-index: 2;
}

.featured-category {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-slide-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
  max-width: 85%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.featured-slide-content p {
  font-size: 16px;
  margin-bottom: 25px;
  opacity: 0.95;
  max-width: 80%;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.featured-meta {
  display: flex;
  gap: 30px;
  font-size: 14px;
  flex-wrap: wrap;
}

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

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  z-index: 3;
  transition: all 0.3s ease;
  border-radius: 50%;
  padding: 0;
}

.slider-nav:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* Blog Grid Container */
.blog-grid-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

/* Blog Main */
.blog-main {
  display: flex;
  flex-direction: column;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* Blog Card */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

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

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

.blog-card-category {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

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

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #999;
  margin-bottom: 12px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
  flex-grow: 1;
}

.blog-card-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
}

.blog-card-author {
  padding-top: 12px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #999;
  font-weight: 500;
}

/* Load More Container */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

/* Load More Button */
.load-more-btn {
  padding: 14px 40px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(1, 78, 154, 0.3);
}

.load-more-btn:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(1, 78, 154, 0.4);
}

.load-more-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.load-more-btn i {
  font-size: 14px;
}

/* Infinite Scroll Trigger */
#infinite-scroll-trigger {
  visibility: hidden;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.pagination a:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .active span {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.pagination .disabled span {
  color: #ccc;
  cursor: not-allowed;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Sidebar Widget */
.sidebar-widget {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-widget h4 i {
  color: var(--primary-color);
}

/* Trending Posts */
.trending-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.trending-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.trending-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.trending-content h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.trending-content h5 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.trending-content h5 a:hover {
  color: var(--primary-color);
}

.trending-content span {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Social Feed Widget */
.social-feed-widget {
  padding: 0;
  overflow: hidden;
}

.social-feed-widget h4 {
  padding: 25px 25px 20px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
}

.social-item {
  display: flex;
  gap: 15px;
  padding: 20px 25px;
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.social-item:last-child {
  border-bottom: none;
}

.social-item:hover {
  background: #f9f9f9;
}

.social-item-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.social-item-content {
  flex-grow: 1;
}

.social-item-content p {
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
}

.social-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #999;
}

.social-item-meta a {
  color: #E1306C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-item-meta a:hover {
  color: #c2185b;
}

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

.tag-item {
  display: inline-block;
  padding: 8px 14px;
  background: #f0f0f0;
  color: #333;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tag-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

/* Newsletter Widget */
.sidebar-widget.newsletter-widget {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff !important;
}

.newsletter-widget h4 {
  color: #fff !important;
  margin-bottom: 15px;
  font-weight: 700;
}

.newsletter-widget h4 i {
  color: #fff !important;
  opacity: 0.9;
}

.newsletter-widget p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff !important;
  opacity: 1;
  line-height: 1.6;
}

.newsletter-widget form {
  display: block;
}

.newsletter-input-group {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

/* Newsletter Modern - Button inside input design */
.newsletter-modern .newsletter-input-group {
  position: relative;
  display: block;
  gap: 0;
}

.newsletter-modern .newsletter-input-group input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.newsletter-modern .newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 400;
}

.newsletter-modern .newsletter-input-group input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-modern .newsletter-input-group button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  color: var(--primary-color) !important;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.newsletter-modern .newsletter-input-group button:hover {
  background: #f8f9fa;
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.newsletter-widget input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.newsletter-widget input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 400;
}

.newsletter-widget input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
}

.newsletter-widget button {
  width: 48px;
  height: 48px;
  padding: 0;
  background: #fff;
  color: var(--primary-color) !important;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-widget button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-message {
  margin-top: 12px;
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  text-align: left;
  display: none;
}

.newsletter-message.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.newsletter-message.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet - 768px */
@media (max-width: 768px) {
  .blog-section {
    padding: 40px 0;
  }

  /* Search Bar - TABLET */
  .blog-search-wrapper {
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .search-input-wrapper input {
    padding: 12px 40px 12px 45px;
    font-size: 14px;
  }

  .search-input-wrapper .search-icon {
    left: 15px;
    font-size: 15px;
  }

  .search-clear {
    width: 28px;
    height: 28px;
    right: 6px;
  }

  /* Category Filter - TABLET: Horizontal Scroll */
  .blog-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 5px 15px 15px;
    margin-bottom: 25px;
    gap: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .blog-categories::-webkit-scrollbar {
    display: none;
  }

  .category-btn {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* Featured Slider - TABLET */
  .featured-slider {
    height: 320px;
    margin-bottom: 40px;
    border-radius: 10px;
  }

  .featured-slide-content {
    padding: 30px 60px 30px 25px;
  }

  .featured-category {
    padding: 6px 14px;
    font-size: 11px;
    margin-bottom: 12px;
  }

  .featured-slide-content h2 {
    font-size: 22px;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .featured-slide-content p {
    font-size: 14px;
    margin-bottom: 15px;
    max-width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .featured-meta {
    gap: 12px;
    font-size: 12px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-nav.prev {
    left: 12px;
  }

  .slider-nav.next {
    right: 12px;
  }

  .slider-dots {
    bottom: 12px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 24px;
  }

  /* Grid Adjustments */
  .blog-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .load-more-btn {
    padding: 12px 32px;
    font-size: 14px;
  }
}

/* Mobile - 480px */
@media (max-width: 480px) {
  .blog-section {
    padding: 25px 0;
  }

  /* Search Bar - MOBILE */
  .blog-filter-section {
    margin-bottom: 20px;
  }

  .blog-search-wrapper {
    padding: 0 12px;
    margin-bottom: 15px;
  }

  .search-input-wrapper input {
    padding: 12px 38px 12px 40px;
    font-size: 14px;
    border-radius: 25px;
  }

  .search-input-wrapper .search-icon {
    left: 14px;
    font-size: 14px;
  }

  .search-clear {
    width: 26px;
    height: 26px;
    right: 5px;
    font-size: 12px;
  }

  /* Category Filter - MOBILE: Horizontal Scroll */
  .blog-categories {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 5px 12px 12px;
    margin-bottom: 20px;
    gap: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .blog-categories::-webkit-scrollbar {
    display: none;
  }

  .category-btn {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 20px;
  }

  /* Featured Slider - MOBILE */
  .featured-slider {
    height: 280px;
    margin-bottom: 40px;
    border-radius: 8px;
  }

  .featured-slide-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
  }

  .featured-slide-content {
    padding: 25px 20px;
  }

  .featured-category {
    padding: 5px 12px;
    font-size: 10px;
    margin-bottom: 12px;
  }

  .featured-slide-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    max-width: 100%;
    line-height: 1.3;
  }

  .featured-slide-content p {
    font-size: 13px;
    margin-bottom: 15px;
    max-width: 100%;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .featured-meta {
    gap: 10px;
    font-size: 11px;
  }

  .featured-meta span {
    gap: 5px;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.4);
  }

  .slider-nav:hover {
    background: rgba(0, 0, 0, 0.6);
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  .slider-dots {
    bottom: 12px;
    gap: 8px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .slider-dot.active {
    width: 20px;
    border-radius: 4px;
  }

  /* Grid Adjustments */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .blog-card-image {
    height: 180px;
  }

  .blog-card-content {
    padding: 15px;
  }

  .blog-card-content h3 {
    font-size: 16px;
  }

  .blog-card-content p {
    font-size: 13px;
  }

  .blog-categories {
    gap: 8px;
    margin-bottom: 20px;
  }

  .category-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .sidebar-widget {
    padding: 20px;
  }

  .sidebar-widget h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .trending-post {
    gap: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .trending-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .trending-content h5 {
    font-size: 13px;
  }

  .trending-content span {
    font-size: 11px;
  }

  .social-item {
    padding: 15px;
    gap: 12px;
  }

  .social-item-image {
    width: 50px;
    height: 50px;
  }

  .social-item-content p {
    font-size: 12px;
  }

  .social-item-meta {
    font-size: 11px;
  }

  .tags-cloud {
    gap: 8px;
  }

  .tag-item {
    padding: 6px 12px;
    font-size: 12px;
  }

  .sidebar-widget.newsletter-widget input,
  .sidebar-widget.newsletter-widget button {
    padding: 12px 16px;
    font-size: 13px;
  }

  .newsletter-modern .newsletter-input-group input {
    padding: 14px 50px 14px 16px;
    font-size: 14px;
  }

  .newsletter-modern .newsletter-input-group button {
    width: 38px;
    height: 38px;
    right: 5px;
    font-size: 14px;
  }

  .load-more-btn {
    padding: 10px 24px;
    font-size: 13px;
    width: 100%;
  }

  .load-more-container {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
  .featured-slider {
    height: 240px;
  }

  .featured-slide-content {
    padding: 20px 15px;
  }

  .featured-slide-content h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .featured-slide-content p {
    font-size: 12px;
    margin-bottom: 12px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .featured-meta {
    font-size: 10px;
    gap: 8px;
  }

  .slider-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
} 