@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
/* font-family: "Quicksand", sans-serif; */
/* ====================
   BASE STYLE (MOBILE FIRST)
   ==================== */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  background-color: #f7f7f7;
}

.article-container {
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin: 0;
}
.article-container img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.article-container h1.title {
  font-size: 1.3rem;
  line-height: 2rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.7rem;
}
.article-container h1.title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #008cff;
}
.article-container .date {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
  display: block;
}
.article-container .author {
  font-size: 0.95rem;
  color: #005bb5;
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(0, 140, 255, 0.1);
  border-radius: 4px;
}
.article-container .category {
  margin: 0.8rem 0;
}
.article-container .category .category-badge {
  display: inline-block;
  color: rgb(0, 117.6, 214.2);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.article-container .category .category-badge:hover {
  background-color: rgba(0, 140, 255, 0.15);
  text-decoration: none;
}
.article-container .tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
}
.article-container .tags .tags-label {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}
.article-container .tags .tag-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: rgba(0, 91, 181, 0.1);
  color: #005bb5;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.article-container .tags .tag-badge:hover {
  background-color: #005bb5;
  color: white;
  cursor: pointer;
}
.article-container .content {
  font-size: 1rem;
  color: rgb(76.5, 76.5, 76.5);
  font-family: "Quicksand", sans-serif;
}
.article-container .content p {
  margin-bottom: 1.5rem;
  line-height: 1.8rem;
}
.article-container .content p:last-child {
  margin-bottom: 0;
}
.article-container .content ul li {
  line-height: 1.8rem;
}
.article-container .content h2,
.article-container .content h3 {
  color: #008cff;
  margin: 2rem 0 1.2rem;
  font-weight: 600;
}
.article-container .content a {
  color: #005bb5;
  text-decoration: underline;
  transition: all 0.2s ease;
}
.article-container .content a:hover {
  color: rgb(0, 65.3591160221, 130);
  text-decoration: none;
}
.article-container .content blockquote {
  border-left: 4px solid #008cff;
  margin: 1.2rem 0;
  padding: 1rem;
  background: rgba(0, 140, 255, 0.05);
  color: rgb(76.5, 76.5, 76.5);
  border-radius: 0 4px 4px 0;
}

.sidebar {
  padding: 0;
  margin: 0;
  border-radius: 8px;
}

/* ====================
   TABLET STYLES (768px and up)
   ==================== */
@media (min-width: 768px) {
  .article-container {
    padding: 1.5rem;
  }
  .article-container h1.title {
    font-size: 1.8rem;
    line-height: 2.3rem;
  }
  .article-container h1.title::after {
    width: 70px;
  }
  .article-container .date {
    font-size: 0.9rem;
  }
  .article-container .author {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .article-container .content {
    font-size: 1.05rem;
  }
  .article-container img {
    margin: 1.5rem 0;
  }
}
/* ====================
   DESKTOP STYLES (1024px and up)
   ==================== */
@media (min-width: 1024px) {
  .main-content {
    flex-direction: row;
  }
  .article-container {
    flex: 3;
    padding: 2.5rem;
    margin: 2rem 0;
    max-width: 900px;
  }
  .article-container h1.title {
    font-size: 2rem;
    line-height: 2.5rem;
    padding-bottom: 1rem;
  }
  .article-container h1.title::after {
    width: 100px;
  }
  .article-container .content {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .sidebar {
    flex: 1;
    margin: 2rem 0;
  }
}/*# sourceMappingURL=show.css.map */