body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f4f7fb;
  color: #1e1e2f;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box; }

main {
  flex: 1 0 auto;
  width: 100%;
  min-width: 0;
  padding: 1.5rem 0 3rem;
  box-sizing: border-box; }

/* Base styles for content-section */
.content-section {
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin: 0px auto;
  max-width: 1200px;
  /* Constrain width for non-wide pages */
  width: 100%;
  box-sizing: border-box; }

/* Wide layout for homepage */
.content-section--wide {
  max-width: 100%;
  /* Full-width for homepage */
  margin: 1rem 0;
  overflow-x: auto; }

/* Heading styles */
.content-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1e1e2f; }

/* Paragraph styles for text-heavy pages */
.content-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 1rem; }

/* Form styles for form-heavy pages */
.content-section .js-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem; }

/* Ensure table fits within content-section */
.content-section .custom-table {
  width: 100%;
  max-width: 100%; }

#rendered-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-section {
    padding: 1rem 1.5rem;
    margin: 0.5rem; }

  .content-section--wide {
    margin: 0.5rem; }

  .content-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem; }

  .content-section p {
    font-size: 0.9375rem; } }
@media (max-width: 480px) {
  .content-section {
    padding: 0.75rem 1rem; }

  .content-section h2 {
    font-size: 1.25rem; }

  .content-section p {
    font-size: 0.875rem; } }
.flash-message-row {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  position: absolute; }

.flash-message-row > div {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  /* Limits the width for better readability */ }

.flash-message {
  background-color: #e6f4ea;
  /* Light green background for success */
  color: #2e7d32;
  /* Dark green text for contrast */
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid #a5d6a7;
  /* Subtle border */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* Soft shadow for depth */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  animation: fadeIn 0.3s ease-in-out;
  /* Smooth fade-in animation */ }

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
/* Responsive design for smaller screens */
@media (max-width: 600px) {
  .flash-message {
    font-size: 14px;
    padding: 10px 15px;
    margin: 0 10px; } }
.btn,
.button,
.buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  line-height: 1.4;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap; }

.btn--primary,
.button,
.buttons a {
  color: #ffffff;
  background-color: #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2); }
  .btn--primary:hover,
  .button:hover,
  .buttons a:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3); }
  .btn--primary:active,
  .button:active,
  .buttons a:active {
    transform: translateY(0); }

.btn--ghost,
.buttons a.secondary {
  color: #475569;
  background-color: transparent;
  border: 1px solid #d1d5db;
  box-shadow: none; }
  .btn--ghost:hover,
  .buttons a.secondary:hover {
    background-color: #f8fafc;
    border-color: #94a3b8;
    color: #1e293b; }

.btn--danger {
  color: #ffffff;
  background-color: #ef4444; }
  .btn--danger:hover {
    background-color: #dc2626; }

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem; }

.btn--lg {
  padding: 0.9rem 1.8rem;
  font-size: 1rem; }

.btn:disabled,
.button:disabled,
.buttons a[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important; }

.btn.is-loading,
.button.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none; }
  .btn.is-loading .btn-text,
  .button.is-loading .btn-text {
    visibility: hidden; }
  .btn.is-loading::after,
  .button.is-loading::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: btnSpin 0.6s linear infinite; }

@keyframes btnSpin {
  to {
    transform: rotate(360deg); } }
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem; }

.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 3.5rem 1.5rem 0;
  margin-top: auto; }

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1e293b; }

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #f8fafc;
  margin-bottom: 0.75rem; }
  .site-footer__logo img {
    height: 28px; }
  .site-footer__logo strong {
    font-size: 1rem;
    font-weight: 700; }

.site-footer__tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #94a3b8;
  margin: 0;
  max-width: 280px; }

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

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem; }
  .site-footer__col h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin: 0 0 0.25rem; }
  .site-footer__col a {
    font-size: 0.9375rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s ease; }
    .site-footer__col a:hover {
      color: #f8fafc; }

.site-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 0; }
  .site-footer__bottom p {
    font-size: 0.8125rem;
    color: #475569;
    margin: 0; }

@media (max-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem; }

  .site-footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; } }
ooter:not(.site-footer) {
  padding-block: 2rem;
  padding-inline: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  background: #0f172a;
  color: #cbd5e1;
  text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }

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

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #1f2a44;
  flex-shrink: 0; }
  .site-header__logo img {
    height: 36px; }
  .site-header__logo strong {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.01em; }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem; }

.site-header__link {
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s ease, background-color 0.15s ease;
  white-space: nowrap; }
  .site-header__link:hover {
    color: #1e293b;
    background: #f1f5f9; }
  .site-header__link--active {
    color: #2563eb;
    background: #eff6ff;
    font-weight: 600; }
    .site-header__link--active:hover {
      color: #1d4ed8;
      background: #dbeafe; }

.site-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.5rem;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ffffff;
  background: #2563eb;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap; }
  .site-header__cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px); }

.site-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.15s ease; }
  .site-header__burger:hover {
    background: #f1f5f9; }
  .site-header__burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: #475569;
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease; }
  .site-header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg); }
  .site-header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0; }
  .site-header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg); }

.site-subnav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 60px;
  z-index: 99; }

.site-subnav__inner {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none; }
  .site-subnav__inner::-webkit-scrollbar {
    display: none; }

.site-subnav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease; }
  .site-subnav__link:hover {
    color: #1e293b;
    border-bottom-color: #cbd5e1; }
  .site-subnav__link--active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    font-weight: 600; }
    .site-subnav__link--active:hover {
      color: #1d4ed8;
      border-bottom-color: #1d4ed8; }

.site-subnav__dropdown-toggle {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem; }

.site-subnav__dropdown-caret {
  transition: transform 0.15s ease; }

.site-subnav__dropdown-toggle[aria-expanded="true"] .site-subnav__dropdown-caret {
  transform: rotate(180deg); }

.site-subnav__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  padding: 0.35rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  z-index: 100; }
  .site-subnav__dropdown--open {
    display: flex; }

.site-subnav__dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  white-space: nowrap; }
  .site-subnav__dropdown-link:hover {
    background: #f1f5f9;
    color: #1e293b; }
  .site-subnav__dropdown-link--active {
    color: #2563eb;
    background: #eff6ff;
    font-weight: 600; }

@media (max-width: 768px) {
  .site-subnav {
    display: none; } }
.header-badge {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.05rem 0.4rem;
  border-radius: 4px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1.5;
  background: #f1f5f9;
  color: #64748b; }
  .header-badge--pro {
    background: #dcfce7;
    color: #15803d; }

.site-header__link--mobile-only {
  display: none; }

@media (max-width: 768px) {
  .site-header__burger {
    display: flex; }

  .site-header__link--mobile-only {
    display: flex; }

  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f5f9;
    display: none; }
    .site-header__nav--open {
      display: flex; }

  .site-header__link {
    padding: 0.75rem 0.5rem;
    font-size: 1rem;
    border-radius: 0; }

  .site-header__cta {
    margin: 0.5rem 0 0;
    justify-content: center;
    padding: 0.75rem 1rem; } }
header:not(.site-header) {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex-wrap: wrap;
  padding-block: 1rem;
  padding-inline: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem)); }
  header:not(.site-header) a {
    text-decoration: none;
    color: #1f2a44;
    transition: color 0.2s ease; }
    header:not(.site-header) a:hover {
      color: #2563eb; }
  header:not(.site-header) nav {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    header:not(.site-header) nav a {
      margin: 0 1rem;
      font-weight: 500;
      font-size: 0.9375rem; }
      header:not(.site-header) nav a:hover {
        text-decoration: underline; }

.blog-page {
  padding: 48px 0 80px;
  color: #1e293b; }

.blog-hero {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center; }
  .blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 16px;
    color: #0f172a; }
  .blog-hero p {
    font-size: 1.125rem;
    color: #475569;
    margin: 0; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 64px; }

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease; }
  .blog-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px); }
  .blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b; }
  .blog-card__dot {
    color: #cbd5e1; }
  .blog-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: #0f172a; }
  .blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .blog-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto; }
  .blog-card__tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1d4ed8;
    background: #eff6ff;
    padding: 4px 10px;
    border-radius: 999px; }

.blog-article .article {
  max-width: 1000px;
  margin: 0 auto; }

.article__header {
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e2e8f0; }

.article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 14px; }

.article__dot {
  color: #cbd5e1; }

.article__title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  color: #0f172a;
  text-wrap: balance;
  overflow-wrap: break-word; }

.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px; }

.article__content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #1e293b; }
  .article__content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 48px 0 16px;
    color: #0f172a; }
  .article__content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 32px 0 12px;
    color: #0f172a; }
  .article__content p {
    margin: 0 0 18px; }
  .article__content a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px; }
  .article__content ul,
  .article__content ol {
    margin: 0 0 18px;
    padding-left: 28px; }
    .article__content ul li,
    .article__content ol li {
      margin-bottom: 8px; }
  .article__content code {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.875em;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 2px 6px; }
  .article__content pre {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    overflow-x: auto;
    margin: 0 0 24px; }
    .article__content pre code {
      background: transparent;
      border: 0;
      padding: 0;
      color: inherit;
      font-size: 0.875rem;
      line-height: 1.6; }
  .article__content blockquote {
    margin: 0 0 18px;
    padding: 8px 20px;
    border-left: 4px solid #2563eb;
    background: #f8fafc;
    color: #475569; }
  .article__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 24px;
    font-size: 0.95rem; }
    .article__content table th,
    .article__content table td {
      border: 1px solid #e2e8f0;
      padding: 10px 14px;
      text-align: left; }
    .article__content table th {
      background: #f8fafc;
      font-weight: 700; }
  .article__content hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 40px 0; }

.blog-cta,
.article__cta {
  text-align: center;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 14px;
  padding: 40px 28px; }
  .blog-cta h2,
  .article__cta h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0f172a; }
  .blog-cta p,
  .article__cta p {
    color: #475569;
    margin: 0 0 24px; }

.article__cta {
  max-width: 760px;
  margin: 56px auto 0; }

@media (max-width: 720px) {
  .blog-hero h1,
  .article__title {
    font-size: 2rem; }

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

  .blog-article .article {
    max-width: 100%; } }

/*# sourceMappingURL=blog.css.map */
