/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --text-color: #000000;
  --background-light: #ffffff;

  /* Gradients */
  --primary-gradient: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );

  /* Typography */
  --heading-font: Helvetica, Arial, sans-serif;
  --body-font: Arial, sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  line-height: 1.8;
  background: #fafafa;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  overflow: hidden;
}

/* Article 1 Styles */
.article-1 {
  padding: 80px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.article-1 .article-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.article-1 .text-section {
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.article-1 h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.article-1 h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.article-1 .lead-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--tertiary-color);
  margin-bottom: 40px;
}

.article-1 .content-block {
  margin: 40px 0;
}

.article-1 .key-points {
  background: rgba(129, 183, 26, 0.05);
  padding: 30px;
  border-radius: 20px;
  margin: 40px 0;
}

.article-1 .key-points h4 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--tertiary-color);
  margin-bottom: 20px;
}

.article-1 .key-points ul {
  list-style: none;
  padding: 0;
}

.article-1 .key-points li {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: var(--tertiary-color);
}

.article-1 .key-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.article-1 .image-section {
  position: sticky;
  top: 40px;
  align-self: start;
}

.article-1 figure {
  margin: 0 0 30px 0;
}

.article-1 figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.article-1 figure img:hover {
  transform: translateY(-10px);
}

.article-1 figcaption {
  font-size: 0.9rem;
  color: var(--tertiary-color);
  text-align: center;
  margin-top: 15px;
  font-style: italic;
}

/* Text Highlights */
.highlight-primary {
  color: var(--primary-color);
  font-weight: 600;
}

.highlight-secondary {
  color: var(--secondary-color);
  font-weight: 600;
}

.emphasis {
  font-style: italic;
  font-weight: 500;
  color: var(--tertiary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .article-1 .article-content {
    grid-template-columns: 1fr;
  }

  .article-1 .image-section {
    position: static;
    order: -1;
  }
}

@media (max-width: 768px) {
  .article-1 {
    padding: 60px 20px;
  }

  .article-1 .text-section {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .article-1 {
    padding: 40px 15px;
  }

  .article-1 .text-section {
    padding: 20px;
  }
}
