/* line 1, app/assets/stylesheets/blog.scss */
.blog {
  background: #f8fafc;
  color: #0f172a;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* line 8, app/assets/stylesheets/blog.scss */
.blog a {
  color: inherit;
  text-decoration: none;
}

/* line 13, app/assets/stylesheets/blog.scss */
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}

/* line 22, app/assets/stylesheets/blog.scss */
.blog-header__logo {
  font-weight: 700;
  font-size: 1.25rem;
  color: #0f172a;
}

/* line 28, app/assets/stylesheets/blog.scss */
.blog-header__tagline {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
}

/* line 34, app/assets/stylesheets/blog.scss */
.blog-header__nav {
  display: flex;
  gap: 0.75rem;
}

/* line 39, app/assets/stylesheets/blog.scss */
.blog-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: background 150ms ease, color 150ms ease;
}

/* line 46, app/assets/stylesheets/blog.scss */
.blog-link:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* line 50, app/assets/stylesheets/blog.scss */
.blog-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

/* line 56, app/assets/stylesheets/blog.scss */
.blog-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  background: #0f172a;
  color: #fff;
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
}

/* line 68, app/assets/stylesheets/blog.scss */
.blog-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 75, app/assets/stylesheets/blog.scss */
.blog-hero__placeholder {
  min-height: 320px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(14, 116, 144, 0.35));
  width: 100%;
  height: 100%;
}

/* line 82, app/assets/stylesheets/blog.scss */
.blog-hero__copy {
  padding: 2.5rem;
}

/* line 86, app/assets/stylesheets/blog.scss */
.blog-hero__heading {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

/* line 92, app/assets/stylesheets/blog.scss */
.blog-hero__intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* line 98, app/assets/stylesheets/blog.scss */
.blog-hero__tagline-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

/* line 106, app/assets/stylesheets/blog.scss */
.blog-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: #38bdf8;
  color: #0f172a;
  font-weight: 600;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

/* line 119, app/assets/stylesheets/blog.scss */
.blog-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(56, 189, 248, 0.35);
}

/* line 124, app/assets/stylesheets/blog.scss */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* line 130, app/assets/stylesheets/blog.scss */
.blog-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

/* line 140, app/assets/stylesheets/blog.scss */
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

/* line 145, app/assets/stylesheets/blog.scss */
.blog-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* line 152, app/assets/stylesheets/blog.scss */
.blog-card__body {
  padding: 1.5rem;
  flex: 1;
}

/* line 157, app/assets/stylesheets/blog.scss */
.blog-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #0f172a;
}

/* line 163, app/assets/stylesheets/blog.scss */
.blog-card__excerpt {
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* line 169, app/assets/stylesheets/blog.scss */
.blog-card__meta {
  font-size: 0.85rem;
  color: #94a3b8;
}

/* line 174, app/assets/stylesheets/blog.scss */
.blog-empty-state {
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px dashed rgba(15, 23, 42, 0.15);
  text-align: center;
  background: #fff;
  color: #475569;
}

/* line 183, app/assets/stylesheets/blog.scss */
.blog-footer {
  padding: 2rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* line 190, app/assets/stylesheets/blog.scss */
.blog-post {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* line 197, app/assets/stylesheets/blog.scss */
.blog-post__media img {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

/* line 203, app/assets/stylesheets/blog.scss */
.blog-post__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  color: #0f172a;
}

/* line 209, app/assets/stylesheets/blog.scss */
.blog-post__excerpt {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

/* line 215, app/assets/stylesheets/blog.scss */
.blog-post__body {
  line-height: 1.8;
  color: #0f172a;
}

/* line 220, app/assets/stylesheets/blog.scss */
.blog-post__body h2 {
  margin-top: 2rem;
}
