/* Main Container - Single Row Layout */
.wssp-container {
  margin: 15px 0;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.wssp-single-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 15px;
  min-height: 40px;
}

/* Left Section - Like/Dislike */
.wssp-reactions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Center Section - Social Share Buttons */
.wssp-share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  flex-wrap: wrap;
}

/* Right Section - View Count and Share Count */
.wssp-counts-section {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Button Base Styles */
.wssp-btn,
.wssp-views,
.wssp-share-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  min-width: 32px;
  height: 32px;
}

.wssp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Icon Only Mode */
.wssp-icon-only .wssp-btn {
  padding: 6px;
  min-width: 32px;
  width: 32px;
}

.wssp-icon-only .wssp-btn span:not(.wssp-count) {
  display: none;
}

/* Button Sizes */
.wssp-small .wssp-btn,
.wssp-small .wssp-views,
.wssp-small .wssp-share-count {
  height: 24px;
  min-width: 24px;
  font-size: 11px;
  padding: 4px 6px;
}

.wssp-small.wssp-icon-only .wssp-btn {
  width: 24px;
  padding: 4px;
}

.wssp-medium .wssp-btn,
.wssp-medium .wssp-views,
.wssp-medium .wssp-share-count {
  height: 32px;
  min-width: 32px;
  font-size: 12px;
}

.wssp-medium.wssp-icon-only .wssp-btn {
  width: 32px;
}

.wssp-large .wssp-btn,
.wssp-large .wssp-views,
.wssp-large .wssp-share-count {
  height: 40px;
  min-width: 40px;
  font-size: 14px;
  padding: 8px 12px;
}

.wssp-large.wssp-icon-only .wssp-btn {
  width: 40px;
  padding: 8px;
}

.wssp-xlarge .wssp-btn,
.wssp-xlarge .wssp-views,
.wssp-xlarge .wssp-share-count {
  height: 48px;
  min-width: 48px;
  font-size: 16px;
  padding: 10px 14px;
}

.wssp-xlarge.wssp-icon-only .wssp-btn {
  width: 48px;
  padding: 10px;
}

/* Platform Colors */
.wssp-default .wssp-facebook {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.wssp-default .wssp-twitter {
  background: #1da1f2;
  color: white;
  border-color: #1da1f2;
}

.wssp-default .wssp-linkedin {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

.wssp-default .wssp-whatsapp {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.wssp-default .wssp-telegram {
  background: #0088cc;
  color: white;
  border-color: #0088cc;
}

.wssp-default .wssp-pinterest {
  background: #bd081c;
  color: white;
  border-color: #bd081c;
}

.wssp-default .wssp-reddit {
  background: #ff4500;
  color: white;
  border-color: #ff4500;
}

.wssp-default .wssp-like-btn {
  background: #ff6b6b;
  color: white;
  border-color: #ff6b6b;
}

.wssp-default .wssp-dislike-btn {
  background: #6c757d;
  color: white;
  border-color: #6c757d;
}

.wssp-default .wssp-copy {
  background: #6c757d;
  color: white;
  border-color: #6c757d;
}

/* Views and Share Count */
.wssp-views,
.wssp-share-count {
  background: #f8f9fa;
  color: #6c757d;
  border-color: #dee2e6;
  cursor: default;
}

.wssp-views:hover,
.wssp-share-count:hover {
  transform: none;
  box-shadow: none;
}

/* Count Numbers */
.wssp-count {
  font-weight: 600;
  font-size: 11px;
}

/* Mobile Responsive - Fixed */
@media (max-width: 768px) {
  .wssp-container {
    margin: 10px 0;
    padding: 8px 12px;
    border-radius: 6px;
  }

  .wssp-single-row {
    gap: 6px;
    min-height: 36px;
    flex-wrap: nowrap; /* Keep in one row */
  }

  .wssp-reactions {
    gap: 4px;
    flex-shrink: 0;
  }

  .wssp-share-buttons {
    gap: 3px;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    overflow-x: auto; /* Allow horizontal scroll if needed */
  }

  .wssp-counts-section {
    gap: 4px;
    flex-shrink: 0;
  }

  .wssp-btn,
  .wssp-views,
  .wssp-share-count {
    min-width: 28px;
    height: 28px;
    padding: 4px;
    font-size: 11px;
    flex-shrink: 0; /* Prevent shrinking */
  }

  .wssp-icon-only .wssp-btn {
    width: 28px;
  }

  /* Force icon-only on mobile */
  .wssp-btn span:not(.wssp-count) {
    display: none;
  }

  /* Smaller icons on mobile */
  .wssp-btn i {
    font-size: 12px;
  }

  .wssp-count {
    font-size: 10px;
  }

  /* Force mobile sticky to show */
  .wssp-mobile-sticky {
    display: block !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
  }
}

@media (max-width: 480px) {
  .wssp-single-row {
    gap: 6px;
    flex-wrap: wrap;
  }

  .wssp-reactions {
    order: 1;
    flex-basis: auto;
  }

  .wssp-share-buttons {
    order: 2;
    flex-basis: 100%;
    justify-content: center;
    margin: 4px 0;
  }

  .wssp-counts-section {
    order: 3;
    flex-basis: auto;
    margin-left: auto;
  }

  .wssp-btn,
  .wssp-views,
  .wssp-share-count {
    min-width: 26px;
    height: 26px;
    padding: 3px;
  }

  .wssp-icon-only .wssp-btn {
    width: 26px;
  }

  .wssp-btn i {
    font-size: 11px;
  }

  .wssp-count {
    font-size: 9px;
  }
}

/* Animation for interactions */
.wssp-btn.wssp-liked {
  animation: pulse 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Floating Desktop Buttons */
.wssp-floating-desktop {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: none;
}

.wssp-floating-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wssp-floating-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
}

.wssp-floating-btn:hover {
  transform: scale(1.1);
}

/* Modern Floating Group/Channel Buttons - Desktop */
.wssp-floating-groups {
  position: fixed !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 1001 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.wssp-floating-groups.wssp-hide {
  display: none !important;
}

.wssp-floating-group-btn {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  font-size: 20px !important;
  color: white !important;
  text-decoration: none !important;
  position: relative !important;
  overflow: hidden !important;
  backdrop-filter: blur(10px) !important;
}

.wssp-floating-group-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wssp-floating-group-btn:hover {
  transform: scale(1.1) translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
  text-decoration: none !important;
  color: white !important;
}

.wssp-floating-group-btn:hover::after {
  opacity: 1;
}

.wssp-floating-group-btn.wssp-whatsapp-group,
.wssp-floating-group-btn.wssp-whatsapp-channel {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
}

.wssp-floating-group-btn.wssp-telegram-group,
.wssp-floating-group-btn.wssp-telegram-channel {
  background: linear-gradient(135deg, #0088cc 0%, #005577 100%) !important;
}

/* Enhanced Tooltip */
.wssp-floating-group-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1002;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wssp-floating-group-btn::before {
  content: attr(data-tooltip) " →";
}

.wssp-floating-group-btn:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-5px);
}

/* Modern Mobile Group/Channel Buttons */
.wssp-mobile-groups {
  position: fixed !important;
  right: 15px !important;
  bottom: 90px !important;
  z-index: 1001 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.wssp-mobile-groups.wssp-hide {
  display: none !important;
}

.wssp-mobile-group-btn {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 16px !important;
  border-radius: 25px !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: white !important;
  text-decoration: none !important;
  min-width: 80px !important;
  justify-content: center !important;
  backdrop-filter: blur(10px) !important;
  position: relative !important;
  overflow: hidden !important;
}

.wssp-mobile-group-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wssp-mobile-group-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
  text-decoration: none !important;
  color: white !important;
}

.wssp-mobile-group-btn:hover::after {
  opacity: 1;
}

.wssp-mobile-group-btn.wssp-whatsapp-group,
.wssp-mobile-group-btn.wssp-whatsapp-channel {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
}

.wssp-mobile-group-btn.wssp-telegram-group,
.wssp-mobile-group-btn.wssp-telegram-channel {
  background: linear-gradient(135deg, #0088cc 0%, #005577 100%) !important;
}

.wssp-mobile-group-btn i {
  font-size: 16px !important;
  z-index: 1;
  position: relative;
}

.wssp-mobile-group-btn span {
  z-index: 1;
  position: relative;
  font-weight: 600 !important;
}

/* Professional Mobile Sticky Bottom - Fixed */
.wssp-mobile-sticky {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
  border-top: 1px solid #e9ecef !important;
  padding: 12px 8px 8px 8px !important;
  z-index: 1000 !important;
  display: none !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(10px) !important;
}

.wssp-mobile-buttons {
  display: flex !important;
  justify-content: space-around !important;
  align-items: center !important;
  max-width: 500px !important;
  margin: 0 auto !important;
  gap: 4px !important;
}

.wssp-mobile-btn {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 8px 6px !important;
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  color: #495057 !important;
  min-width: 50px !important;
  border-radius: 12px !important;
  transition: all 0.2s ease !important;
  position: relative !important;
}

.wssp-mobile-btn:hover,
.wssp-mobile-btn:active {
  background: rgba(0, 0, 0, 0.05) !important;
  transform: translateY(-1px) !important;
}

.wssp-mobile-btn i {
  font-size: 18px !important;
  margin-bottom: 2px !important;
  transition: all 0.2s ease !important;
}

.wssp-mobile-btn.wssp-like-btn i {
  color: #ff6b6b !important;
}

.wssp-mobile-btn.wssp-facebook i {
  color: #1877f2 !important;
}

.wssp-mobile-btn.wssp-whatsapp i {
  color: #25d366 !important;
}

.wssp-mobile-btn.wssp-telegram i {
  color: #0088cc !important;
}

.wssp-mobile-btn.wssp-copy i {
  color: #6c757d !important;
}

/* Related Posts Section */
.wssp-related-posts {
  margin: 30px 0;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wssp-related-title {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.wssp-related-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 2px;
}

.wssp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.wssp-related-post {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wssp-related-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #007bff;
}

.wssp-related-post-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wssp-related-post:hover .wssp-related-post-image {
  transform: scale(1.05);
}

.wssp-related-post-content {
  padding: 15px;
}

.wssp-related-post-title {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.wssp-related-post-title:hover {
  color: #007bff;
  text-decoration: none;
}

.wssp-related-post-excerpt {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wssp-related-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #868e96;
}

.wssp-related-post-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wssp-related-post-category {
  background: #e9ecef;
  color: #495057;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* Responsive for Related Posts */
@media (max-width: 768px) {
  .wssp-related-posts {
    margin: 20px 0;
    padding: 20px 15px;
  }

  .wssp-related-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .wssp-related-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .wssp-related-post-image {
    height: 140px;
  }

  .wssp-related-post-content {
    padding: 12px;
  }

  .wssp-related-post-title {
    font-size: 15px;
  }
}

/* Responsive Visibility for Groups */
@media (min-width: 769px) {
  .wssp-mobile-groups {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .wssp-floating-groups {
    display: none !important;
  }
}

/* Responsive Visibility - Fixed */
@media (min-width: 769px) {
  .wssp-floating-desktop {
    display: block;
  }
  .wssp-mobile-sticky {
    display: none !important;
  }

  .wssp-floating-groups {
    display: flex;
  }
  .wssp-mobile-groups {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .wssp-floating-desktop {
    display: none !important;
  }
  .wssp-mobile-sticky {
    display: block !important;
  }

  .wssp-floating-groups {
    display: none !important;
  }
  .wssp-mobile-groups {
    display: flex;
  }

  /* Ensure body has bottom padding for sticky footer */
  body {
    padding-bottom: 70px !important;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .wssp-container {
    background: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
  }

  .wssp-btn {
    background: #4a5568;
    color: #e2e8f0;
    border-color: #718096;
  }

  .wssp-views,
  .wssp-share-count {
    background: #4a5568;
    color: #a0aec0;
    border-color: #718096;
  }

  .wssp-related-posts {
    background: #2d3748;
    border-color: #4a5568;
  }

  .wssp-related-post {
    background: #374151;
    border-color: #4b5563;
  }

  .wssp-related-title {
    color: #e2e8f0;
  }

  .wssp-related-post-title {
    color: #e2e8f0;
  }

  .wssp-related-post-excerpt {
    color: #9ca3af;
  }
}

/* Print Styles */
@media print {
  .wssp-container,
  .wssp-floating-desktop,
  .wssp-mobile-sticky,
  .wssp-floating-groups,
  .wssp-mobile-groups {
    display: none !important;
  }
}

/* Ensure proper spacing and alignment */
.wssp-container * {
  box-sizing: border-box;
}

/* Fix for very small screens */
@media (max-width: 320px) {
  .wssp-share-buttons {
    gap: 2px;
  }

  .wssp-btn,
  .wssp-views,
  .wssp-share-count {
    min-width: 24px;
    height: 24px;
    padding: 2px;
    font-size: 10px;
  }

  .wssp-icon-only .wssp-btn {
    width: 24px;
  }
}

/* Hide group buttons from main container */
.wssp-share-buttons .wssp-whatsapp-group,
.wssp-share-buttons .wssp-telegram-group,
.wssp-share-buttons .wssp-whatsapp-channel,
.wssp-share-buttons .wssp-telegram-channel {
  display: none;
}

/* Entrance Animations */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.wssp-floating-groups {
  animation: slideInRight 0.5s ease-out;
}

.wssp-mobile-groups {
  animation: fadeInUp 0.5s ease-out;
}

.wssp-related-posts {
  animation: fadeInUp 0.6s ease-out;
}

/* Latest News Section */
.wssp-latest-news {
  margin: 30px 0;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.wssp-latest-title {
  font-size: 24px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.wssp-latest-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 2px;
}

.wssp-latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.wssp-latest-post {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.wssp-latest-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #28a745;
}

.wssp-latest-post-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wssp-latest-post:hover .wssp-latest-post-image {
  transform: scale(1.05);
}

.wssp-latest-post-content {
  padding: 15px;
}

.wssp-latest-post-title {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
}

.wssp-latest-post-title:hover {
  color: #28a745;
  text-decoration: none;
}

.wssp-latest-post-excerpt {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wssp-latest-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #868e96;
}

.wssp-latest-post-date {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wssp-latest-post-category {
  background: #e9ecef;
  color: #495057;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
}

/* Responsive for Latest News */
@media (max-width: 768px) {
  .wssp-latest-news {
    margin: 20px 0;
    padding: 20px 15px;
  }

  .wssp-latest-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .wssp-latest-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .wssp-latest-post-image {
    height: 140px;
  }

  .wssp-latest-post-content {
    padding: 12px;
  }

  .wssp-latest-post-title {
    font-size: 15px;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .wssp-latest-news {
    background: #2d3748;
    border-color: #4a5568;
  }

  .wssp-latest-post {
    background: #374151;
    border-color: #4b5563;
  }

  .wssp-latest-title {
    color: #e2e8f0;
  }

  .wssp-latest-post-title {
    color: #e2e8f0;
  }

  .wssp-latest-post-excerpt {
    color: #9ca3af;
  }
}
