/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #57534e;
  background: linear-gradient(135deg, #fafaf9 0%, #fef3c7 50%, #fecaca 100%);
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #292524;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Gradient Text */
.gradient-text-sage {
  background: linear-gradient(to right, #5d735d, #8c6fa8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-rose {
  background: linear-gradient(to right, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-dark {
  color: #292524;
}

.text-medium {
  color: #57534e;
}

.italic {
  font-style: italic;
}

/* Header */
.header {
  position: relative;
  z-index: 100;
}

.header-blur {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(199, 208, 199, 0.2), rgba(221, 214, 232, 0.2));
  backdrop-filter: blur(10px);
}

.nav {
  position: relative;
  padding: 2rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #7a8f7a, #a692c0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-dot {
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(to right, #5d735d, #8c6fa8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.875rem;
  color: #78716c;
  margin: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #57534e;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #5d735d;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7a8f7a;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #57534e;
  transition: all 0.3s ease;
}

/* Floating Blur Effects */
.floating-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.blur-1 {
  top: 40px;
  right: 40px;
  width: 256px;
  height: 256px;
  background: linear-gradient(135deg, rgba(163, 178, 163, 0.3), transparent);
}

.blur-2 {
  bottom: 40px;
  left: 40px;
  width: 192px;
  height: 192px;
  background: linear-gradient(135deg, rgba(196, 184, 214, 0.3), transparent);
}

.footer-blur-1 {
  top: 40px;
  right: 40px;
  width: 128px;
  height: 128px;
  background: linear-gradient(135deg, rgba(122, 143, 122, 0.1), transparent);
}

.footer-blur-2 {
  bottom: 40px;
  left: 40px;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, rgba(166, 146, 192, 0.1), transparent);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(to right, #5d735d, #8c6fa8);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #4a5c4a, #775a8f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  border: 2px solid #d6d3d1;
  color: #57534e;
  background: transparent;
}

.btn-secondary:hover {
  border-color: #7a8f7a;
  color: #5d735d;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.25rem;
  color: #78716c;
  line-height: 1.6;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #e3e7e3, #ddd6e8);
  border-radius: 24px;
  padding: 2rem;
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.hero-card:hover {
  transform: rotate(0deg);
}

.hero-card-content {
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.hero-card-line {
  width: 4rem;
  height: 4px;
  background: linear-gradient(to right, #7a8f7a, #a692c0);
  border-radius: 2px;
}

.hero-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #292524;
}

.hero-card-text {
  color: #78716c;
  margin: 0;
}

.hero-card-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-sage {
  background: #7a8f7a;
}
.dot-lavender {
  background: #a692c0;
}
.dot-rose {
  background: #f87171;
}
.dot-orange {
  background: #fb923c;
}
.dot-emerald {
  background: #34d399;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #292524;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #78716c;
  margin: 0;
}

.section-line {
  width: 6rem;
  height: 4px;
  background: linear-gradient(to right, #7a8f7a, #a692c0);
  border-radius: 2px;
  margin: 0 auto;
}

/* Featured Articles */
.featured {
  padding: 5rem 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.offset-card {
  margin-top: 3rem;
}

.article-card {
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.article-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-rose {
  background: linear-gradient(135deg, #fecaca, #fed7aa);
}
.card-emerald {
  background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
}
.card-violet {
  background: linear-gradient(135deg, #ddd6fe, #c4b5fd);
}
.card-blue {
  background: linear-gradient(135deg, #bfdbfe, #93c5fd);
}
.card-pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}
.card-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.article-content {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-rose {
  background: rgba(255, 255, 255, 0.8);
  color: #ef4444;
}
.badge-emerald {
  background: rgba(255, 255, 255, 0.8);
  color: #10b981;
}
.badge-violet {
  background: rgba(255, 255, 255, 0.8);
  color: #8b5cf6;
}
.badge-blue {
  background: rgba(255, 255, 255, 0.8);
  color: #3b82f6;
}
.badge-pink {
  background: rgba(255, 255, 255, 0.8);
  color: #ec4899;
}
.badge-green {
  background: rgba(255, 255, 255, 0.8);
  color: #059669;
}
.badge-neutral {
  background: rgba(255, 255, 255, 0.8);
  color: #6b7280;
}
.badge-amber {
  background: rgba(255, 255, 255, 0.8);
  color: #f59e0b;
}

.read-time {
  font-size: 0.875rem;
  color: #78716c;
  font-weight: 500;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #292524;
  margin-bottom: 1rem;
  line-height: 1.3;
  flex-grow: 0;
}

.article-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: #5d735d;
}

.article-excerpt {
  color: #57534e;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-date {
  font-size: 0.875rem;
  color: #78716c;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: inherit;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #57534e;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.read-more:hover .arrow-icon {
  transform: translateX(4px);
}

/* Recent Articles */
.recent {
  padding: 5rem 0;
  background: linear-gradient(to right, rgba(245, 245, 244, 0.5), rgba(254, 243, 199, 0.5));
}

.recent-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.recent-title-block h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #292524;
  margin-bottom: 0.5rem;
}

.view-all-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5d735d;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: #4a5c4a;
}

.recent-articles {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.recent-article {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
}

.recent-article.reverse {
  grid-template-columns: 2fr 1fr;
}

.recent-article.reverse .recent-visual {
  order: 2;
}

.recent-article.reverse .recent-content {
  order: 1;
}

.recent-visual {
  width: 100%;
  height: 192px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.recent-visual:hover {
  transform: scale(1.05);
}

.visual-blue {
  background: linear-gradient(135deg, #bfdbfe, #93c5fd);
}
.visual-pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}
.visual-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.visual-content {
  text-align: center;
}

.visual-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.icon-blue {
  background: #dbeafe;
}
.icon-pink {
  background: #fce7f3;
}
.icon-green {
  background: #d1fae5;
}

.recent-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #78716c;
}

.recent-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #292524;
  line-height: 1.2;
}

.recent-title a {
  color: inherit;
  transition: color 0.3s ease;
}

.recent-title a:hover {
  color: #5d735d;
}

.recent-excerpt {
  color: #78716c;
  line-height: 1.6;
  font-size: 1.125rem;
}

.continue-reading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #5d735d;
  font-weight: 600;
  transition: all 0.3s ease;
}

.continue-reading:hover {
  color: #4a5c4a;
}

/* Page Header */
.page-header {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}

.page-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 700;
}

.page-description {
  font-size: 1.25rem;
  color: #78716c;
  max-width: 32rem;
  line-height: 1.6;
}

/* Blog Articles */
.blog-articles {
  padding: 5rem 0;
}

.masonry-grid {
  column-count: 1;
  column-gap: 2rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 2rem;
}

/* About Page */
.about-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-header {
  margin-bottom: 2rem;
}

.about-header .page-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.25rem;
  color: #57534e;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.approach-box {
  background: linear-gradient(to right, #f6f7f6, #f7f6f9);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
}

.approach-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #292524;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.75rem;
  flex-shrink: 0;
}

.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  border-radius: 24px;
  padding: 2rem;
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.info-card:hover {
  transform: rotate(0deg);
}

.info-card:nth-child(2) {
  transform: rotate(-2deg);
}

.info-card:nth-child(3) {
  transform: rotate(1deg);
}

.card-sage {
  background: linear-gradient(135deg, #e3e7e3, #ddd6e8);
}
.card-rose {
  background: linear-gradient(135deg, #fecaca, #fed7aa);
}
.card-emerald {
  background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
}

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #292524;
  margin-bottom: 1rem;
}

.info-card p {
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

/* Article Page */
.article-page {
  padding: 4rem 0;
}

.article-header {
  background: linear-gradient(135deg, #f6f7f6, #f7f6f9);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 2rem;
}

.article-header .article-meta {
  margin-bottom: 1rem;
}

.article-header .article-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #292524;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-lead {
  font-size: 1.25rem;
  color: #78716c;
  line-height: 1.6;
  margin: 0;
}

.article-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.article-body {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #57534e;
}

.article-body h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #292524;
  margin: 2rem 0 1rem;
}

.article-body h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #292524;
  margin: 1.5rem 0 0.75rem;
}

.article-body ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.article-body strong {
  color: #292524;
  font-weight: 600;
}

/* Related Articles */
.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e7e5e4;
}

.related-articles h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #292524;
  margin-bottom: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-card {
  background: #fafaf9;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.related-card:hover {
  background: #f5f5f4;
  transform: translateY(-2px);
}

.related-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #292524;
  margin-bottom: 0.5rem;
}

.related-card h4 a {
  color: inherit;
  transition: color 0.3s ease;
}

.related-card h4 a:hover {
  color: #5d735d;
}

.related-card p {
  color: #78716c;
  font-size: 0.875rem;
  margin: 0;
}

/* Footer */
.footer {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #292524, #1c1917);
  overflow: hidden;
  color: white;
}

.footer-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #7a8f7a, #a692c0, #f87171);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-description {
  color: #d6d3d1;
  line-height: 1.6;
  max-width: 28rem;
  margin: 0;
}

.footer-dots {
  display: flex;
  gap: 0.75rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #d6d3d1;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7a8f7a;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #44403c;
  text-align: center;
}

.footer-bottom p {
  color: #a8a29e;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 2;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-sidebar {
    grid-row: 1;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    gap: 1.5rem;
  }

  .nav-menu.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.1rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
  }

  .mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #57534e;
    transition: all 0.3s ease;
    border-radius: 1px;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    transform: rotate(0deg);
  }

  .hero-buttons {
    justify-content: center;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .offset-card {
    margin-top: 0;
  }

  .recent-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .recent-article {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .recent-article.reverse .recent-visual,
  .recent-article.reverse .recent-content {
    order: unset;
  }

  .masonry-grid {
    column-count: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .floating-blur {
    display: none;
  }

  .article-content {
    padding: 2rem;
  }

  .article-header {
    padding: 2rem;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .logo-title {
    font-size: 1.3rem;
  }

  .logo-dot {
    width: 1.3rem;
    height: 1.3rem;
  }

  .logo-icon {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .featured,
  .recent,
  .blog-articles,
  .about-section {
    padding: 3rem 0;
  }

  .article-content,
  .article-header {
    padding: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #7a8f7a, #8c6fa8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #5d735d, #775a8f);
}

/* Selection */
::selection {
  background: linear-gradient(to right, #7a8f7a, #8c6fa8);
  color: white;
}

/* Focus */
*:focus {
  outline: 2px solid #7a8f7a;
  outline-offset: 2px;
}
