/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* 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;
}

/* ====================================
     Common Components
     ==================================== */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.3;
}

.feature-item {
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.tag {
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: var(--secondary-color);
}

.cta-button {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Article Template 5: Scientific Explanation - New Design */
.article-5 {
  padding: 100px 40px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  position: relative;
  overflow: hidden;
}

/* Background Pattern */
.article-5::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(129, 183, 26, 0.1),
    transparent 60%
  );
  pointer-events: none;
}

.article-5 .article-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.article-5 .intro-section {
  text-align: center;
  margin-bottom: 80px;
  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-5 h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.article-5 .lead-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--tertiary-color);
  max-width: 800px;
  margin: 0 auto;
}

.article-5 .anatomy-section {
  margin: 60px 0;
  padding: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
}

.article-5 .anatomy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.article-5 .anatomy-text h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--tertiary-color);
  margin-bottom: 30px;
}

.article-5 .key-functions {
  background: rgba(129, 183, 26, 0.05);
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.article-5 .key-functions ul {
  list-style: none;
}

.article-5 .key-functions li {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.article-5 .key-functions li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.article-5 .muscle-section {
  margin: 60px 0;
  padding: 60px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 30px;
}

.article-5 .muscle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.article-5 .muscle-list {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.article-5 .muscle-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.article-5 .muscle-item:hover {
  transform: translateY(-5px);
}

.article-5 .muscle-icon {
  font-size: 2rem;
}

.article-5 .problem-section {
  margin: 60px 0;
  padding: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(129, 183, 26, 0.2);
}

.article-5 .problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.article-5 .highlight-box {
  background: rgba(129, 183, 26, 0.05);
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.article-5 .conclusion-section {
  margin-top: 60px;
  text-align: center;
}

.article-5 .warning-box {
  background: var(--primary-gradient);
  color: white;
  padding: 40px;
  border-radius: 30px;
  margin-bottom: 30px;
}

.article-5 .final-note {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--primary-color);
  font-weight: 700;
}

.article-5 figure {
  margin: 0;
}

.article-5 figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.article-5 figure img:hover {
  transform: translateY(-10px);
}

.article-5 figcaption {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 15px;
  opacity: 0.8;
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
}

.highlight-primary {
  color: var(--primary-color);
  font-weight: 600;
}

.highlight-secondary {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
  .article-5 .anatomy-grid,
  .article-5 .muscle-grid,
  .article-5 .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .article-5 {
    padding: 60px 20px;
  }

  .article-5 .anatomy-section,
  .article-5 .muscle-section,
  .article-5 .problem-section {
    padding: 30px;
  }

  .article-5 .muscle-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .article-5 {
    padding: 40px 15px;
  }

  .article-5 .intro-section {
    padding: 20px;
  }

  .article-5 .muscle-item {
    flex-direction: column;
    text-align: center;
  }
}
