/* SmartwatchCentral Main Stylesheet */

/* Base Styles */
:root {
  /* Dark mode color scheme */
  --primary-color: #fd6633;
  --secondary-color: #da8145;
  --accent-color: #d97706;
  --text-color: #e2e8f0;
  --light-text: #cbd5e1;
  --white-color: #ffffff;
  --background-color: #121212;
  --light-background: #1e1e1e;
  --inner-container-background: #1f1f1f;
  --card-background: #383838;
  --border-color: #333333;
  --success-color: #c2410c;
  --warning-color: #d97706;
  --danger-color: #9a3412;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));

  /* Transparent colors */
  --black-transparent-80: rgba(0, 0, 0, 0.8);
  --black-transparent-50: rgba(0, 0, 0, 0.5);
  --black-transparent-30: rgba(0, 0, 0, 0.3);
  --black-transparent-10: rgba(0, 0, 0, 0.1);
  --white-transparent-80: rgba(255, 255, 255, 0.8);
  --white-transparent-60: rgba(255, 255, 255, 0.6);

  /* Enhanced design elements */
  --border-radius: 8px;
  --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --box-shadow-light: 0 4px 10px rgba(0, 0, 0, 0.1);
  --box-shadow-medium: 0 6px 15px rgba(0, 0, 0, 0.15);
  --box-shadow-dark: 0 0 20px rgba(0, 0, 0, 0.5);
  --box-shadow-primary: 0 2px 10px rgba(194, 65, 12, 0.4);
  --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  --card-hover-transform: translateY(-8px);
  --card-hover-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: var(--inner-container-background);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}


/* .article-content > ul:nth-child(13) > li:nth-child(2) */

main li {
  margin-left: 2em !important;
}

/* Site Header Styles */

/* Header Styles */
.site-header {
  background-color: var(--inner-container-background);
  box-shadow: var(--box-shadow);
  z-index: 100;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo a {
  display: flex;
  align-items: center;
}

.site-name {
  font-size: 1.7rem;
  font-weight: bold;
  color: var(--secondary-color);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 10px;
}

.main-nav li {
  margin-left: 20px;
}

.main-nav a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  background-color: var(--card-background);
  display: block;
  text-align: center;
  border: 1px solid transparent;
}

.main-nav a:hover {
  color: var(--primary-color);
  background-color: var(--light-background);
  border-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.main-nav a.active {
  color: var(--white-color);
  background-color: var(--primary-color);
  border-color: var(--secondary-color);
  box-shadow: var(--box-shadow-primary);
  transform: translateY(-1px);
}

.header-right {
  display: flex;
  align-items: center;
}


/* Search */
.search-toggle button {
  background-color: var(--card-background);
  border: 1px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  color: var(--text-color);
  padding: 8px;
  transition: var(--transition);
}

.search-toggle button:hover {
  color: var(--primary-color);
  background-color: var(--light-background);
  border-color: var(--border-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-transparent-80);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 80%;
  max-width: 800px;
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
}

#search-input {
  width: 100%;
  padding: 15px;
  border: none;
  font-size: 1.2rem;
}

.search-results {
  max-height: 70vh;
  overflow-y: auto;
  padding: 0 15px;
}

.search-result-item {
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.search-result-item h3 {
  margin-bottom: 5px;
}

.result-rating {
  font-size: 0.9rem;
  color: var(--light-text);
  margin-top: 5px;
}

.no-results {
  padding: 20px;
  text-align: center;
  color: var(--light-text);
}

/* Hero Section */
.hero {
  background: var(--gradient-primary);
  color: var(--white-color);
  padding: 30px 0;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1551816230-ef5deaed4a26?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  text-shadow: var(--text-shadow);
}

.hero-content p {
  font-size: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.9;
}

/* Articles Section */
.articles-section {
  background-color: var(--light-background);
  transition: var(--transition);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination-item {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: var(--border-radius);
  background-color: var(--card-background);
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

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

.pagination-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.pagination-item.prev, .pagination-item.next {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.pagination-item.prev:hover, .pagination-item.next:hover {
  background-color: var(--primary-color);
}

.articles-section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-color);
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.articles-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

/* Featured layout on Home */
.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
}

.featured-large {
  position: relative;
  height: 520px;
}

.featured-side { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }

.article-card.featured-large .article-image,
.article-card.featured-small .article-image {
  height: 100%;
}

/* Category labels at top of cards */
.article-card .article-labels {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 4; /* above the full-card link and overlay */
}

.article-card .article-labels .label {
  pointer-events: auto; /* clickable despite overlay/card-link */
  background: rgba(0,0,0,0.6);
  color: var(--white-color);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 4px 10px;
  font-size: 0.8rem;
  line-height: 1;
  border-radius: 9999px;
  text-decoration: none;
  backdrop-filter: blur(4px);
}

.article-card .article-labels .label:hover {
  background: rgba(0,0,0,0.8);
  border-color: rgba(255,255,255,0.4);
}

.article-card .card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.article-card .article-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  z-index: 3;
  color: var(--white-color);
  /* Stronger multi-stop gradient to improve text contrast over bright images */
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.15) 75%,
    rgba(0,0,0,0.0) 90%
  );
  pointer-events: none; /* Let clicks go to the card/link */
}

/* Improve text readability on overlays */
.article-card .article-overlay h3,
.article-card .article-overlay .meta {
  text-shadow: 0 2px 4px rgba(0,0,0,0.7), 0 0 1px rgba(0,0,0,0.85);
}

.article-card .article-overlay a { color: var(--white-color); text-decoration: none; }

/* Summary under title on featured cards */
.featured-summary {
  margin: 6px 0 10px;
  font-size: 0.95rem;
  color: var(--white-color);
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.featured-summary.small { font-size: 0.9rem; }

.featured-title { font-size: 2rem; line-height: 1.2; margin: 0 0 8px; }
.small-title { font-size: 1.2rem; line-height: 1.3; margin: 0 0 6px; }

/* Compact grid below the featured row */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  padding: 20px 0;
}

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

@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-side { grid-template-rows: none; grid-template-columns: 1fr; }
  .featured-large { height: 360px; }
}

.article-card {
  position: relative; /* Ensure absolutely positioned children (overlay/link) are scoped to each card */
  background-color: var(--card-background);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  /* Removed card movement on hover while keeping shadow */
  box-shadow: var(--card-hover-shadow);
}

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

.article-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, var(--black-transparent-50), transparent);
  z-index: 1;
}

.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);
}

.placeholder-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-background);
  color: var(--light-text);
  font-size: 1.2rem;
}

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

.article-content h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.article-rating {
  margin-bottom: 5px;
  color: var(--light-text);
  display: flex;
  align-items: center;
}

.article-date {
  margin-bottom: 15px;
  color: var(--light-text);
  font-size: 1rem;
}

.rating-value {
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 5px;
  font-size: 1.1rem;
}

/* Star Rating Styles */
.rating-section {
  text-align: center;
}

/* Two-column ratings layout */
.ratings-columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.ratings-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
}

/* For desktop, show columns side by side */
@media (min-width: 768px) {
  .ratings-columns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* Overall rating container */
.overall-rating-container {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.overall-rating-container .rating-category {
  width: 100%;
  max-width: 400px;
}

/* Old grid layout kept for backward compatibility */
.ratings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.rating-category {
  background-color: var(--light-background);
  border-radius: var(--border-radius);
  padding: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-category:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.rating-category h4 {
  margin-bottom: 8px;
  color: var(--secondary-color);
  font-size: 1.15rem;
}

/* Overall rating styling */
.overall-rating {
  grid-column: 1 / -1;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 15px;
}

.overall-rating h4 {
  color: var(--white-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.overall-rating .star.full,
.overall-rating .star.half::before {
  color: var(--white-color);
}

.overall-rating .rating-value {
  color: var(--white-color);
}

.rating-section .article-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

/* Smaller stars and text for category ratings */
.star-rating {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 8px;
}

.star {
  display: inline-block;
  margin: 0 1px;
}

.star.full {
  color: var(--accent-color);
}

.star.half {
  position: relative;
  color: var(--border-color);
}

.star.half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: var(--accent-color);
}

.star.empty {
  color: var(--border-color);
}

.rating-number {
  font-size: 1rem;
  margin-top: 3px;
}

.rating-number .rating-value {
  font-size: 1.2rem;
}

/* Keep overall rating prominent */
.overall-rating .star-rating {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.overall-rating .star {
  margin: 0 3px;
}

.overall-rating .rating-number {
  font-size: 1.5rem;
  margin-top: 5px;
}

.overall-rating .rating-number .rating-value {
  font-size: 2rem;
}

.article-summary {
  margin-bottom: 20px;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1.1rem;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;
  background: var(--gradient-primary);
  color: var(--white-color);
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow-light);
  align-self: flex-start;
}

.read-more:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-medium);
  color: var(--white-color);
}

/* Single Article Page */
.article-single {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.article-header {
  margin-bottom: 30px;
}

.article-header h1 {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: var(--light-text);
  font-size: 1rem;
}

.article-single > .article-summary {
  font-size: 1.4rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  padding: 15px;
  background-color: var(--light-background);
  border-radius: var(--border-radius);
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 200px;
}

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

.article-single .article-content {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.1rem;
  column-count: 2;
  column-gap: 40px;
}

/* Adjust column count for different screen sizes */
@media (max-width: 768px) {
  .article-single .article-content {
    column-count: 1;
  }
}

.article-single .article-content h2, .article-single .article-content h3 {
  color: var(--secondary-color);
  margin: 25px 0 15px;
  column-span: all;
}
.article-single .article-content h2 {
  font-size: 1.8rem;
}

.article-single .article-content h3 {
  font-size: 1.2rem;
}

.article-single .article-content p {
  margin-bottom: 15px;
}

.article-single .article-content img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  break-inside: avoid;
}


.article-details {
  margin-bottom: 30px;
}

.article-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: var(--light-background);
  border-radius: var(--border-radius);
}

.article-section h3 {
  margin-bottom: 15px;
  color: var(--secondary-color);
  font-size: 1.7rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pros ul, .cons ul {
  padding-left: 20px;
}

.pros li, .cons li {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.pros h3 {
  color: var(--success-color);
}

.cons h3 {
  color: var(--danger-color);
}

.specs table {
  width: 100%;
  border-collapse: collapse;
}

.specs th, .specs td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 1.1rem;
  vertical-align: top;
}

.specs th {
  width: 30%;
  color: var(--secondary-color);
  font-size: 1.15rem;
}

/* Make Features list display in 3 columns */
.specs td ul {
  column-count: 3;
  column-gap: 20px;
  column-fill: balance;
}

/* Adjust Features list columns for mobile devices */
@media (max-width: 768px) {
  .specs td ul {
    column-count: 1; /* Single column on mobile */
  }
}

.article-navigation {
  margin-top: 40px;
  text-align: center;
}

.back-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.back-link:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Footer Styles */
.site-footer {
  background: var(--gradient-primary);
  color: var(--white-color);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1557682250-33bd709cbe85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-section h3 {
  margin-bottom: 25px;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 1.5px;
}

.footer-section p {
  margin-bottom: 25px;
  color: var(--white-transparent-80);
  line-height: 1.7;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: var(--white-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-section li:hover {
  transform: translateX(5px);
}

.footer-section a {
  color: var(--white-transparent-80);
  transition: var(--transition);
  display: inline-block;
  position: relative;
  font-size: 1.1rem;
}

.footer-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--white-color);
  transition: width 0.3s ease;
}

.footer-section a:hover {
  color: var(--white-color);
}

.footer-section a:hover::after {
  width: 100%;
}

.footer-section a.active {
  color: var(--accent-color);
}

.footer-bottom {
  background-color: var(--black-transparent-30);
  text-align: center;
  padding: 25px;
  color: var(--white-transparent-60);
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

/* Content Image Styles */
.content-image {
  margin: 20px 0;
  text-align: center;
}

.content-img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

.content-img:hover {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

figcaption {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--light-text);
  font-style: italic;
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-transparent-80);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  box-shadow: var(--box-shadow-dark);
  transform: scale(0.9);
  transition: var(--transition);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  .main-nav {
    margin: 15px 0;
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .main-nav li {
    margin: 0;
    width: 100%;
    max-width: 300px;
  }

  .main-nav a {
    padding: 10px 16px;
    width: 100%;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }


  .pros-cons {
    grid-template-columns: 1fr;
  }

  .article-meta {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .article-header h1 {
    font-size: 2rem;
  }

  .article-gallery {
    grid-template-columns: 1fr;
  }
}
