.outblog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  box-sizing: border-box;
}

.outblog-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  animation: slideUp 0.6s ease-out;
  width: 100%;
  max-width: 100%;
}

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

.outblog-header {
  padding: 2.5rem;
  background: #882aff;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.outblog-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.outblog-header-left {
  text-align: left;
}

.outblog-subtitle {
  margin: 0.5rem 0 0 0;
  opacity: 0.9;
  font-size: 1rem;
  font-weight: 400;
}

.outblog-header-actions {
  display: flex;
  gap: 0.75rem;
}

/* Stats Section */
.outblog-stats-section {
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #882aff, #6b21a8);
}

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

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon.published {
  background: linear-gradient(135deg, #882aff, #7c3aed);
  color: white;
}

.stat-icon.draft {
  background: linear-gradient(135deg, #882aff, #7c3aed);
  color: white;
}

.stat-icon.total {
  background: linear-gradient(135deg, #882aff, #7c3aed);
  color: white;
}

.stat-icon.sync {
  background: linear-gradient(135deg, #882aff, #7c3aed);
  color: white;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.outblog-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.outblog-title {
  margin: 0 0 2rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  color: white;
  z-index: 1;
}


.outblog-fetch-btn {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.outblog-fetch-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25));
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  gap: 0.75rem;
}

.outblog-fetch-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


.outblog-success-notice {
  margin: 2rem 2.5rem 0;
  padding: 0;
  background: none;
  border: none;
}

.notice-content {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 16px;
  position: fixed;
  top: 3rem;
  right: 2rem;
  z-index: 1000;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
  animation: slideIn 0.8s ease-out;
}

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

.notice-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.outblog-table-container {
  padding: 2.5rem;
  overflow-x: auto;
  width: 100%;
  box-sizing: border-box;
}

.outblog-table {
  width: 100%;
  min-width: 800px;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.outblog-table thead {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.outblog-table th {
  padding: 1.5rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
  white-space: nowrap;
}

.outblog-table th::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #882aff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.outblog-table th:hover::after {
  transform: scaleX(1);
}

.outblog-table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid #f3f4f6;
}

.outblog-table tbody tr:hover {
  background: linear-gradient(135deg, #fef7ff 0%, #faf5ff 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(136, 42, 255, 0.05);
}

.outblog-table tbody tr:last-child {
  border-bottom: none;
}

.outblog-table td {
  padding: 1.25rem 1rem;
  color: #374151;
  vertical-align: top;
  font-size: 0.9rem;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.post-title {
  font-weight: 600;
  color: #1f2937;
  max-width: 300px;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.4;
}

.post-slug {
  font-family: "Courier New", monospace;
  background: #f3f4f6;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #6b7280;
  display: inline-block;
}

.post-meta {
  color: #6b7280;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 250px;
  white-space: normal;
  word-wrap: break-word;
}

.post-image {
  position: relative;
  display: inline-block;
  width: 100px;
  min-width: 100px;
}

.post-image img {
  width: 100px;
  height: 75px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

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

.no-image {
  width: 100px;
  height: 75px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.75rem;
  font-style: italic;
}

.status-badge {
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: capitalize;
  display: inline-block;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
}

.status-publish {
  background: linear-gradient(135deg, #baf4d6 0%, #a2f0cb 100%);
  color: #065f46;
  border: 1px solid #86efac;
}

.status-draft {
  background: linear-gradient(135deg, #faf2d3 0%, #f9ebb2 100%);
  color: #92400e;
  border: 1px solid #f5d776;
}

.status-pending {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border: 1px solid #93c5fd;
}

.post-date {
  color: #6b7280;
  font-size: 0.85rem;
  white-space: nowrap;
  min-width: 120px;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #6b7280;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state-icon::before {
  content: "";
}

.empty-state-text {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.empty-state-subtext {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Pagination Styles */
.table-info {
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.results-count {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.outblog-table-container {
  padding: 2rem 2.5rem 2.5rem;
  background: white;
  border-radius: 0 0 24px 24px;
  border-top: 1px solid #f3f4f6;
}

.table-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.results-count {
  color: #4b5563;
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.outblog-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.outblog-table th {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}

.outblog-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: middle;
}

.outblog-table tr:last-child td {
  border-bottom: none;
}

.outblog-table tbody tr {
  transition: background-color 0.2s ease;
}

.outblog-table tbody tr:hover {
  background-color: #f8fafc;
}

.post-title {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.95rem;
}

.post-meta {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.4;
}

.post-image img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.no-image {
  width: 60px;
  height: 60px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.75rem;
  border: 1px solid #e5e7eb;
}

.status-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.status-badge.status-publish {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #166534;
  border: 1px solid #86efac;
}

.status-badge.status-draft {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  border: 1px solid #fcd34d;
}

.post-date {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* Sync Modal Buttons */
#outblog-sync-close {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 2px solid #e5e7eb;
  color: #6b7280;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#outblog-sync-close:hover {
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Restore and Remove buttons in sync modal */
.outblog-restore-btn,
.outblog-remove-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.outblog-restore-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.outblog-restore-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.outblog-remove-btn {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.2);
}

.outblog-remove-btn:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

/* Fetch Results Notification */
.fetch-notification {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 500px;
  width: 90%;
  animation: slideInTop 0.5s ease-out;
}

@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

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

.notification-content {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.notification-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #882aff, #7c3aed);
}

.notification-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.notification-icon.no-new {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.notification-text {
  flex: 1;
}

.notification-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.notification-message {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.4;
}

.notification-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.notification-close:hover {
  background: #f3f4f6;
  color: #6b7280;
}

/* Loading spinner enhancement */
.spinner.is-active {
  background: linear-gradient(135deg, #882aff, #7c3aed);
  border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .outblog-header-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .outblog-header-left {
    text-align: center;
  }
  
  .outblog-header-actions {
    justify-content: center;
    width: 100%;
  }

  .fetch-notification {
    top: 0.5rem;
    width: 95%;
    max-width: none;
  }

  .notification-content {
    padding: 1rem;
  }

  .notification-icon {
    width: 40px;
    height: 40px;
  }

  .notification-title {
    font-size: 1rem;
  }

  .notification-message {
    font-size: 0.85rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .stat-card {
    padding: 1rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .table-info {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .outblog-table {
    font-size: 0.875rem;
  }
  
  .outblog-table th,
  .outblog-table td {
    padding: 0.75rem;
  }
  
  .post-image img,
  .no-image {
    width: 40px;
    height: 40px;
  }
  
  .outblog-fetch-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .pagination-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .page-num {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

/* Help & Support layout */
.outblog-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.5fr) minmax(260px, 1fr);
  gap: 2rem;
}

.outblog-help-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.outblog-help-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.help-section-title {
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
  color: #111827;
}

.help-section p {
  margin: 0 0 0.75rem 0;
  color: #4b5563;
}

.help-list {
  margin: 0;
  padding-left: 1.25rem;
  color: #4b5563;
}

.help-list li {
  margin-bottom: 0.4rem;
}

.help-faq-item {
  margin-bottom: 1.25rem;
}

.help-faq-item h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  color: #111827;
}

.help-faq-item p {
  margin: 0;
  color: #4b5563;
}

.help-card {
  background: #f9fafb;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e5e7eb;
}

.help-card-title {
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111827;
}

.help-card a {
  color: #6366f1;
  text-decoration: none;
}

.help-card a:hover {
  text-decoration: underline;
}

.outblog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  color: #6b7280;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}


.pagination-btn:hover {
  background: linear-gradient(135deg, #882aff, #7c3aed);
  color: white;
  border-color: #882aff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(136, 42, 255, 0.3);
}


.pagination-btn:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 3px 15px rgba(136, 42, 255, 0.25);
}

.pagination-btn:active {
  transform: translateY(0);
}

.pagination-btn svg {
  transition: transform 0.2s ease;
}

.pagination-btn:hover svg {
  transform: scale(1.1);
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  text-decoration: none;
  color: #6b7280;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #e5e7eb;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}


.page-num:hover {
  background: linear-gradient(135deg, #882aff, #7c3aed);
  color: white;
  border-color: #882aff;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(136, 42, 255, 0.3);
}


.page-num.current {
  background: linear-gradient(135deg, #882aff, #7c3aed);
  color: white;
  border-color: #882aff;
  font-weight: 700;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(136, 42, 255, 0.25);
}

.page-num:active {
  transform: translateY(-1px) scale(1.02);
}

.page-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #9ca3af;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .outblog-container {
    padding: 1rem;
  }

  .outblog-header {
    padding: 2rem 1.5rem;
  }

  .outblog-title {
    font-size: 2rem;
  }

  .outblog-table-container {
    padding: 1.5rem;
    overflow-x: auto;
  }

  .outblog-table {
    min-width: 600px;
    font-size: 0.85rem;
  }

  .outblog-table th,
  .outblog-table td {
    padding: 1rem 0.75rem;
  }

  .post-title {
    max-width: 200px;
  }

  .post-meta {
    max-width: 150px;
  }

  .post-image img {
    width: 80px;
    height: 60px;
  }

  .no-image {
    width: 80px;
    height: 60px;
  }

  .outblog-pagination {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .pagination-numbers {
    order: -1;
  }

  .pagination-btn {
    width: 100%;
    justify-content: center;
  }

  .results-count {
    text-align: center;
    font-size: 0.85rem;
  }
}
