img[data-astro-cid-ukzfqrl2] {
  width: 72px;
  height: 56px;
}
.homepage-container[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: var(--min-height);
}

.slideshow-section[data-astro-cid-lcdefpme] {
  width: 100%;
}

.content-grid[data-astro-cid-lcdefpme] {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 1rem;
}

.main-content[data-astro-cid-lcdefpme] {
  min-width: 0;
}

.articles-section[data-astro-cid-lcdefpme] {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 6px #00000012;
  overflow: hidden;
}

.section-header[data-astro-cid-lcdefpme] {
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(135deg, #3d4b7e08, #3d4b7e03);
  border-bottom: 2px solid #3d4b7e1a;
}

.section-header[data-astro-cid-lcdefpme] h1[data-astro-cid-lcdefpme] {
  color: var(--app-primary-color);
  margin: 0 0 .5rem;
  padding: 0;
  font-size: 1.75rem;
  font-weight: 700;
}

.section-subtitle[data-astro-cid-lcdefpme] {
  color: #64748b;
  margin: 0;
  padding: 0;
  font-size: .95rem;
  font-weight: 500;
}

.sidebar[data-astro-cid-lcdefpme] {
  display: flex;
  flex-direction: column;
}

.sidebar-content[data-astro-cid-lcdefpme] {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.social-section[data-astro-cid-lcdefpme], .license-section[data-astro-cid-lcdefpme] {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px #00000012;
  transition: box-shadow .3s;
}

.social-section[data-astro-cid-lcdefpme]:hover, .license-section[data-astro-cid-lcdefpme]:hover {
  box-shadow: 0 8px 16px #0000001a;
}

.social-section[data-astro-cid-lcdefpme] h2[data-astro-cid-lcdefpme], .license-section[data-astro-cid-lcdefpme] h2[data-astro-cid-lcdefpme] {
  color: var(--app-primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem;
  padding: 0;
}

.social-links[data-astro-cid-lcdefpme] {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--app-secondary-color);
  padding: .75rem 1rem;
  border-radius: 12px;
  background: #3d4b7e0d;
  transition: all .3s;
  border: 1px solid #3d4b7e1a;
}

.social-link[data-astro-cid-lcdefpme]:hover {
  background: #3d4b7e1f;
  color: var(--app-primary-color);
  transform: translateY(-2px);
  border-color: var(--app-primary-color);
}

.newsletter-link[data-astro-cid-lcdefpme] {
  background: linear-gradient(135deg,
      var(--app-primary-color),
      var(--app-primary-light-color));
  color: #fff;
  border: none;
  font-weight: 600;
}

.newsletter-link[data-astro-cid-lcdefpme]:hover {
  background: linear-gradient(135deg,
      var(--app-primary-light-color),
      var(--app-primary-color));
  color: #fff;
  box-shadow: 0 8px 16px #3d4b7e4d;
}

.link-icon[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-label[data-astro-cid-lcdefpme] {
  font-weight: 600;
  font-size: .9rem;
}

.social-icon[data-astro-cid-lcdefpme] {
  width: 28px !important;
  height: 28px !important;
}

.license-description[data-astro-cid-lcdefpme] {
  color: #64748b;
  margin: 0 0 1rem;
  padding: 0;
  font-size: .95rem;
  line-height: 1.5;
}

.license-link[data-astro-cid-lcdefpme] {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #3d4b7e14, #5a6fa80a);
  border: 2px solid #3d4b7e33;
  text-decoration: none;
  color: var(--app-primary-color);
  font-weight: 600;
  transition: all .3s;
}

.license-link[data-astro-cid-lcdefpme]:hover {
  background: linear-gradient(135deg, #3d4b7e1f, #5a6fa814);
  border-color: var(--app-primary-color);
  transform: translateY(-2px);
}

.cc-icon[data-astro-cid-lcdefpme] {
  width: 32px !important;
  height: 32px !important;
}

@media (width >= 1024px) {
  .content-grid[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    padding: 1.5rem;
  }

  .sidebar-content[data-astro-cid-lcdefpme] {
    grid-template-columns: 1fr;
    position: sticky;
    top: 1rem;
  }

  .social-links[data-astro-cid-lcdefpme] {
    flex-direction: column;
  }

  .social-link[data-astro-cid-lcdefpme] {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (width <= 768px) {
  .homepage-container[data-astro-cid-lcdefpme] {
    gap: 1rem;
  }

  .content-grid[data-astro-cid-lcdefpme] {
    gap: 1rem;
    padding: .75rem;
  }

  .section-header[data-astro-cid-lcdefpme] {
    padding: 1.5rem 1rem .75rem;
  }

  .section-header[data-astro-cid-lcdefpme] h1[data-astro-cid-lcdefpme] {
    font-size: 1.5rem;
  }

  .social-links[data-astro-cid-lcdefpme] {
    gap: .75rem;
  }

  .social-link[data-astro-cid-lcdefpme] {
    padding: .625rem .875rem;
    font-size: .875rem;
  }

  .social-icon[data-astro-cid-lcdefpme] {
    width: 24px !important;
    height: 24px !important;
  }
}
