/* ====================================
   Root Variables and Base Styles
   ==================================== */
/* Root Variables */
:root {
  --primary-color: #81b71a;
  --secondary-color: #4ebbf7;
  --tertiary-color: #6d6d6d;
  --body-font: Arial, sans-serif;
  --title-font: Helvetica, Arial, sans-serif;
}

/* Base Typography */
body {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

p,
span,
a,
li,
button {
  font-family: var(--body-font);
}

/* ====================================
     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 2: The Worst Thing */
.article-2 {
  width: 100%;
  background: var(--primary-color);
  padding: 100px 0;
  color: white;
}

.article-2 .article-content {
  max-width: 1100px;
  margin: 0 auto;
}

.article-2 h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 60px;
}

.article-2 .content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.article-2 .highlight {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  border-left: 4px solid var(--secondary-color);
  padding-left: 20px;
}

.article-2 p {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Media Queries for Articles */
@media (max-width: 968px) {
  .article-2 .content-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .article-2 h2 {
    font-size: 36px;
  }

  .article-2 p {
    font-size: 20px;
  }

  .article-2 {
    padding: 60px 20px;
  }
}
