/* =====================================================
   ARTICLE PAGE STYLES - AfrikaSport365
   Complete news detail page with responsive design
   ===================================================== */

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 1rem;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-overlay p {
  color: #6b7280;
  font-size: 1rem;
  font-weight: 500;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.breadcrumb a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.breadcrumb .separator {
  color: #d1d5db;
}

.breadcrumb .current {
  color: #111827;
  font-weight: 500;
}

/* ===== ARTICLE HERO SECTION ===== */
.article-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: #000;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 500px;
  padding: 3rem 0 2rem;
}

.hero-inner {
  max-width: 900px;
  color: white;
}

/* Article Category Badge */
.article-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.9);
  color: white;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.article-category svg {
  width: 1rem;
  height: 1rem;
}

/* Article Title */
.article-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Article Subtitle */
.article-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Article Meta */
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: #d1d5db;
}

.article-date svg {
  width: 1rem;
  height: 1rem;
}

/* Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.share-label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 0.25rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.2s;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
}

.share-btn svg {
  width: 18px;
  height: 18px;
}

.share-whatsapp:hover {
  background: #25D366;
}

.share-twitter:hover {
  background: #1DA1F2;
}

.share-facebook:hover {
  background: #1877F2;
}

/* ===== ARTICLE BODY ===== */
.article-body {
  background: white;
  padding: 3rem 0;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Main Content Column */
.content-main {
  max-width: 800px;
}

/* Lead Paragraph */
.lead-paragraph {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Regular Paragraphs */
.content-main p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

/* Headings */
.content-main h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.content-main h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

/* Mid-Article Image */
.article-image {
  margin: 3rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-image figcaption {
  padding: 1rem 1.25rem;
  background: #f9fafb;
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
  border-top: 1px solid #e5e7eb;
}

/* Quote Block */
.article-quote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-left: 4px solid #2563eb;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: #93c5fd;
  font-family: Georgia, serif;
  opacity: 0.5;
}

.quote-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #1e40af;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.quote-author cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: #1f2937;
  font-size: 1rem;
}

.quote-author span {
  display: block;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.125rem;
}

/* Gallery Section */
.article-gallery {
  margin: 3rem 0;
}

.gallery-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-item:hover {
  transform: scale(1.02);
}

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

/* Timeline */
.article-timeline {
  margin: 3rem 0;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.timeline-item {
  position: relative;
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
  position: relative;
  z-index: 1;
}

.timeline-item-final .timeline-marker {
  background: #10b981;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.timeline-content {
  flex: 1;
  padding-top: 0.25rem;
}

.timeline-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Article Tags */
.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.tag-label {
  font-weight: 600;
  color: #6b7280;
  font-size: 0.875rem;
}

.tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  color: #374151;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.tag:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-1px);
}

/* ===== SIDEBAR ===== */
.content-sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.sidebar-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
}

.card-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}

.card-body {
  padding: 1.5rem;
}

/* Athlete Profile Card */
.athlete-card .card-body {
  text-align: center;
}

.athlete-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #eff6ff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.athlete-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.athlete-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.athlete-country {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #f3f4f6;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 1.5rem;
}

.athlete-country svg {
  width: 1.25rem;
  height: 1.25rem;
}

.athlete-info {
  text-align: left;
  margin-bottom: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.info-value {
  font-size: 0.875rem;
  color: #111827;
  font-weight: 600;
}

.athlete-achievements {
  text-align: left;
  padding-top: 1rem;
  border-top: 2px solid #f3f4f6;
}

.athlete-achievements h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.athlete-achievements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.athlete-achievements li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}

/* Sidebar News List */
.sidebar-news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-news-item {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s;
}

.sidebar-news-item:hover {
  transform: translateX(4px);
}

.sidebar-news-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.sidebar-news-cat {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.sidebar-news-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== RELATED NEWS SECTION ===== */
.related-news {
  background: #f9fafb;
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.related-card {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.related-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.related-content {
  padding: 1.25rem;
}

.related-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.related-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 600;
}

.related-content h3 a {
  color: #111827;
  text-decoration: none;
  transition: color 0.2s;
}

.related-content h3 a:hover {
  color: #2563eb;
}

.related-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet Breakpoint */
@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .content-sidebar {
    position: static;
    max-width: 600px;
    margin: 0 auto;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
  .article-hero {
    min-height: 400px;
  }

  .hero-content {
    min-height: 400px;
    padding: 2rem 0 1.5rem;
  }

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

  .article-subtitle {
    font-size: 1rem;
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .article-body {
    padding: 2rem 0;
  }

  .lead-paragraph {
    font-size: 1.125rem;
  }

  .content-main p {
    font-size: 1rem;
  }

  .content-main h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .article-quote {
    padding: 1.5rem;
  }

  .quote-text {
    font-size: 1.125rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-timeline {
    padding: 1.5rem;
  }

  .timeline::before {
    left: 1rem;
  }

  .timeline-marker {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }

  .timeline-content h4 {
    font-size: 1rem;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
  .article-hero {
    min-height: 350px;
  }

  .hero-content {
    min-height: 350px;
    padding: 1.5rem 0 1rem;
  }

  .article-title {
    font-size: 1.5rem;
  }

  .article-subtitle {
    font-size: 0.9375rem;
  }

  .article-category {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }

  .author-name {
    font-size: 0.9375rem;
  }

  .article-date {
    font-size: 0.8125rem;
  }

  .share-btn {
    width: 36px;
    height: 36px;
  }

  .share-btn svg {
    width: 16px;
    height: 16px;
  }

  .lead-paragraph {
    font-size: 1rem;
  }

  .content-main p {
    font-size: 0.9375rem;
  }

  .content-main h2 {
    font-size: 1.375rem;
  }

  .article-image {
    margin: 2rem 0;
    border-radius: 0.5rem;
  }

  .article-quote {
    padding: 1.25rem;
    margin: 2rem 0;
  }

  .quote-text {
    font-size: 1rem;
  }

  .quote-author img {
    width: 40px;
    height: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .article-timeline {
    padding: 1.25rem;
  }

  .timeline-item {
    gap: 1rem;
  }

  .timeline::before {
    left: 0.875rem;
  }

  .timeline-marker {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.6875rem;
  }

  .timeline-content h4 {
    font-size: 0.9375rem;
  }

  .timeline-content p {
    font-size: 0.875rem;
  }

  .athlete-photo {
    width: 100px;
    height: 100px;
  }

  .athlete-name {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.375rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 390px) {
  .article-title {
    font-size: 1.375rem;
  }

  .article-subtitle {
    font-size: 0.875rem;
  }

  .share-label {
    display: none;
  }

  .lead-paragraph {
    font-size: 0.9375rem;
  }

  .content-main h2 {
    font-size: 1.25rem;
  }
}

/* ===== LIGHTBOX FOR GALLERY ===== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 10001;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-caption {
  color: white;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  max-width: 600px;
}

.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.lightbox-prev,
.lightbox-next {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev:hover:not(:disabled),
.lightbox-next:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lightbox-counter {
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .lightbox-content {
    max-width: 95%;
  }

  .lightbox-close {
    top: -40px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .lightbox-controls {
    gap: 1rem;
  }
}

/* ===== ERROR STATE ===== */
.article-error-state {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.error-content {
  text-align: center;
  max-width: 600px;
  background: white;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.error-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: #ef4444;
}

.error-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.error-content p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #eff6ff;
}

@media (max-width: 767px) {
  .error-content {
    padding: 2rem 1.5rem;
  }

  .error-icon {
    width: 60px;
    height: 60px;
  }

  .error-content h1 {
    font-size: 1.5rem;
  }

  .error-content p {
    font-size: 1rem;
  }

  .error-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
