@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *


 */
/* Base styles */
/* line 2, app/assets/stylesheets/main.scss */
html {
  font-size: 14px;
}

/* line 6, app/assets/stylesheets/main.scss */
body {
  background-color: #eef1fc;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

/* Layout components */
/* line 17, app/assets/stylesheets/main.scss */
.content-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* line 25, app/assets/stylesheets/main.scss */
.svg-container {
  width: 100%;
  transform: translateY(-50px);
  overflow: hidden;
}

/* Header styles */
/* line 32, app/assets/stylesheets/main.scss */
header {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
  z-index: 2;
}

/* line 43, app/assets/stylesheets/main.scss */
header nav {
  display: flex;
  gap: 200px;
}

/* line 48, app/assets/stylesheets/main.scss */
.header-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #13274F;
  opacity: 0.6;
}

/* line 57, app/assets/stylesheets/main.scss */
.header-item-active {
  opacity: 1;
}

/* line 61, app/assets/stylesheets/main.scss */
.logo {
  position: absolute;
  top: 60px;
  left: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #13274F;
  z-index: 2;
}

/* Content blocks */
/* line 73, app/assets/stylesheets/main.scss */
.new-block {
  width: 50%;
  text-align: center;
  z-index: 2;
}

/* line 79, app/assets/stylesheets/main.scss */
.new-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #13274F;
  margin-bottom: 20px;
}

/* line 87, app/assets/stylesheets/main.scss */
.new-block p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #13274F;
  line-height: 160%;
}

/* line 95, app/assets/stylesheets/main.scss */
.top-section {
  position: relative;
  width: 100%;
  max-height: 150px;
}

/* line 101, app/assets/stylesheets/main.scss */
.image-block {
  margin-bottom: 40px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 768px) {
  /* line 101, app/assets/stylesheets/main.scss */
  .image-block {
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    margin-top: 0;
    border-radius: 0;
  }
}

/* Footer styles */
/* line 121, app/assets/stylesheets/main.scss */
.footer {
  flex-shrink: 0;
  background-color: #E2E7FA;
  width: 100%;
  padding: 40px 0 20px;
  margin-top: auto;
}

/* line 129, app/assets/stylesheets/main.scss */
.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

/* line 139, app/assets/stylesheets/main.scss */
.footer-column {
  flex: 1;
}

/* line 143, app/assets/stylesheets/main.scss */
.footer-column h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #13274F;
  margin-bottom: 10px;
}

/* line 151, app/assets/stylesheets/main.scss */
.footer-column p,
.footer-column ul,
.footer-column li,
.footer-column a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
}

/* line 162, app/assets/stylesheets/main.scss */
.footer-column ul {
  list-style-type: none;
  padding: 0;
}

/* line 167, app/assets/stylesheets/main.scss */
.footer-column a {
  text-decoration: none;
}

/* line 171, app/assets/stylesheets/main.scss */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

/* line 176, app/assets/stylesheets/main.scss */
.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

/* Flash messages backdrop */
/* line 184, app/assets/stylesheets/main.scss */
.flash-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 999;
  animation: fadeIn 0.3s ease-out;
}

/* Flash messages */
/* line 198, app/assets/stylesheets/main.scss */
.flash-messages {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
  border-radius: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideInCenter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* line 226, app/assets/stylesheets/main.scss */
.flash-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  gap: 16px;
  position: relative;
}

/* line 235, app/assets/stylesheets/main.scss */
.flash-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 16px 16px 0 0;
}

/* line 246, app/assets/stylesheets/main.scss */
.flash-notice .flash-content::before {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

/* line 250, app/assets/stylesheets/main.scss */
.flash-success .flash-content::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

/* line 254, app/assets/stylesheets/main.scss */
.flash-error .flash-content::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

/* line 258, app/assets/stylesheets/main.scss */
.flash-message-text {
  flex: 1;
  line-height: 1.5;
  color: #374151;
}

/* line 264, app/assets/stylesheets/main.scss */
.flash-close {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 278, app/assets/stylesheets/main.scss */
.flash-close:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #374151;
  transform: scale(1.05);
}

/* line 285, app/assets/stylesheets/main.scss */
.flash-close:active {
  transform: scale(0.95);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInCenter {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }
}

/* line 309, app/assets/stylesheets/main.scss */
.flash-success {
  /* Success styling handled by top bar */
}

/* line 313, app/assets/stylesheets/main.scss */
.flash-error {
  /* Error styling handled by top bar */
}

/* line 317, app/assets/stylesheets/main.scss */
.flash-notice {
  /* Notice styling handled by top bar */
}

/* Responsive styles */
@media (max-width: 768px) {
  /* line 323, app/assets/stylesheets/main.scss */
  .new-block {
    width: 100%;
  }
  /* line 327, app/assets/stylesheets/main.scss */
  .flash-messages {
    max-width: 95%;
    font-size: 15px;
  }
  /* line 332, app/assets/stylesheets/main.scss */
  .flash-content {
    padding: 20px;
    gap: 12px;
  }
  /* line 337, app/assets/stylesheets/main.scss */
  .flash-close {
    padding: 6px;
  }
  /* line 341, app/assets/stylesheets/main.scss */
  .logo {
    display: none;
  }
  /* line 345, app/assets/stylesheets/main.scss */
  .svg-container {
    display: none;
  }
  /* line 349, app/assets/stylesheets/main.scss */
  header {
    position: static;
    padding-right: 0;
    justify-content: center;
    padding-top: 20px;
  }
  /* line 356, app/assets/stylesheets/main.scss */
  header nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* line 362, app/assets/stylesheets/main.scss */
  header a {
    font-size: 14px;
  }
  /* line 366, app/assets/stylesheets/main.scss */
  .top-section {
    margin-bottom: 20px;
  }
}

/* Blog-specific styles */
/* line 373, app/assets/stylesheets/main.scss */
.blog-container {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* line 377, app/assets/stylesheets/main.scss */
.blog-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

/* line 383, app/assets/stylesheets/main.scss */
.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='50' cy='50' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: float 20s ease-in-out infinite;
}

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

/* line 399, app/assets/stylesheets/main.scss */
.blog-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
}

/* line 405, app/assets/stylesheets/main.scss */
.blog-content h2 {
  position: relative;
  padding-bottom: 0.5rem;
}

/* line 410, app/assets/stylesheets/main.scss */
.blog-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

/* line 421, app/assets/stylesheets/main.scss */
.blog-content h3 {
  color: #4b5563;
  font-weight: 600;
}

/* line 426, app/assets/stylesheets/main.scss */
.blog-content strong {
  color: #111827;
  font-weight: 600;
}

/* line 431, app/assets/stylesheets/main.scss */
.blog-content ul li {
  position: relative;
  padding-left: 1.5rem;
}

/* line 436, app/assets/stylesheets/main.scss */
.blog-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* line 444, app/assets/stylesheets/main.scss */
.blog-content blockquote {
  border-left: 4px solid #3b82f6;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 0 12px 12px 0;
  position: relative;
}

/* line 451, app/assets/stylesheets/main.scss */
.blog-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #3b82f6;
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-family: Georgia, serif;
  opacity: 0.3;
}

/* line 462, app/assets/stylesheets/main.scss */
.blog-content table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* line 468, app/assets/stylesheets/main.scss */
.blog-content table th {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
}

/* line 476, app/assets/stylesheets/main.scss */
.blog-content table tr:nth-child(even) {
  background: #f9fafb;
}

/* line 480, app/assets/stylesheets/main.scss */
.blog-content table tr:hover {
  background: #f3f4f6;
  transition: background-color 0.2s ease;
}

/* line 485, app/assets/stylesheets/main.scss */
.blog-footer {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e5e7eb;
}

/* line 490, app/assets/stylesheets/main.scss */
.related-articles {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* line 496, app/assets/stylesheets/main.scss */
.related-article-card {
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* line 503, app/assets/stylesheets/main.scss */
.related-article-card:hover {
  background: #f3f4f6;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

/* line 510, app/assets/stylesheets/main.scss */
.related-article-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* line 520, app/assets/stylesheets/main.scss */
.related-article-card:hover .related-article-icon {
  transform: scale(1.1);
}

/* Responsive blog styles */
@media (max-width: 768px) {
  /* line 526, app/assets/stylesheets/main.scss */
  .blog-hero {
    padding: 2rem 1rem;
  }
  /* line 530, app/assets/stylesheets/main.scss */
  .blog-hero h1 {
    font-size: 2rem;
  }
  /* line 534, app/assets/stylesheets/main.scss */
  .blog-content {
    padding: 1rem;
    font-size: 1rem;
  }
  /* line 539, app/assets/stylesheets/main.scss */
  .blog-content h2 {
    font-size: 1.5rem;
  }
  /* line 543, app/assets/stylesheets/main.scss */
  .blog-content h3 {
    font-size: 1.25rem;
  }
  /* line 547, app/assets/stylesheets/main.scss */
  .related-articles {
    padding: 1rem;
  }
  /* line 551, app/assets/stylesheets/main.scss */
  .related-articles .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* line 557, app/assets/stylesheets/main.scss */
  .blog-hero h1 {
    font-size: 1.75rem;
  }
  /* line 561, app/assets/stylesheets/main.scss */
  .blog-content {
    font-size: 0.95rem;
  }
  /* line 565, app/assets/stylesheets/main.scss */
  .blog-content h2 {
    font-size: 1.375rem;
  }
  /* line 569, app/assets/stylesheets/main.scss */
  .blog-content h3 {
    font-size: 1.125rem;
  }
}

/* Select2 Custom Styles */
/* line 2, app/assets/stylesheets/select2_custom.scss */
.select2-container {
  display: block;
  width: 100%;
}

/* line 7, app/assets/stylesheets/select2_custom.scss */
.select2-container .select2-selection--single {
  height: 3rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #ffffff;
}

/* line 14, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--single {
  border: 1px solid #d1d5db;
}

/* line 18, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #374151;
  padding: 0.5rem 1rem 0;
  line-height: 2rem;
  overflow: hidden;
  /* width: 350px; */
}

/* line 27, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.5rem;
  color: #9ca3af;
}

/* line 36, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-search--dropdown .select2-search__field {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
}

/* line 43, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
  border-color: #3b82f6;
  /* box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); */
  border: 2px solid #3b82f6;
}

/* line 50, app/assets/stylesheets/select2_custom.scss */
.select2-dropdown {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

/* line 57, app/assets/stylesheets/select2_custom.scss */
.select2-results__option {
  padding: 0.5rem 1rem;
  color: #374151;
  cursor: pointer;
}

/* line 63, app/assets/stylesheets/select2_custom.scss */
.select2-results__option:hover {
  background-color: #f3f4f6;
}

/* line 67, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #3b82f6;
  color: #ffffff;
}

/* line 71, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-results__option--highlighted[aria-selected] .option-hint {
  color: #eeeeee;
}

/* line 76, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-results__option[aria-selected=true] {
  /* background-color: #f3f4f6; */
}

/* Multiple select styles */
/* line 81, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--multiple {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #ffffff;
  min-height: 3rem;
}

/* line 88, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  margin-right: 0.25rem;
  font-size: 0.875rem;
  color: #1d4ed8;
}

/* line 98, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #3b82f6;
  margin-right: 0.25rem;
}

/* line 103, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #1d4ed8;
}

/* Disabled state */
/* line 108, app/assets/stylesheets/select2_custom.scss */
.select2-container--default.select2-container--disabled .select2-selection--single,
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #f3f4f6;
  cursor: not-allowed;
}

/* Focus states */
/* line 115, app/assets/stylesheets/select2_custom.scss */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 2px solid #3b82f6;
}

/* line 1, app/assets/stylesheets/prose.scss */
.prose {
  padding: 0;
  font-weight: 400;
  color: #374151;
}

/* line 7, app/assets/stylesheets/prose.scss */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  font-family: 'Montserrat', sans-serif;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.75em;
  margin-bottom: 0.5em;
  letter-spacing: -0.025em;
}

/* line 17, app/assets/stylesheets/prose.scss */
.prose h1 {
  font-size: 2.25rem;
  margin-top: 0;
  color: #111827;
}

/* line 22, app/assets/stylesheets/prose.scss */
.prose h2 {
  font-size: 1.875rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.25rem;
}

/* line 27, app/assets/stylesheets/prose.scss */
.prose h3 {
  font-size: 1.5rem;
  color: #374151;
}

/* line 31, app/assets/stylesheets/prose.scss */
.prose h4 {
  font-size: 1.25rem;
  color: #4b5563;
}

/* line 35, app/assets/stylesheets/prose.scss */
.prose h5 {
  font-size: 1.125rem;
  color: #6b7280;
}

/* line 39, app/assets/stylesheets/prose.scss */
.prose h6 {
  font-size: 1rem;
  color: #9ca3af;
}

/* line 45, app/assets/stylesheets/prose.scss */
.prose p {
  margin-bottom: 0.75em;
  line-height: 1.75;
  font-size: inherit;
  color: #374151;
}

/* line 52, app/assets/stylesheets/prose.scss */
.prose a {
  color: #2563eb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

/* line 58, app/assets/stylesheets/prose.scss */
.prose a:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

/* line 65, app/assets/stylesheets/prose.scss */
.prose ul, .prose ol {
  margin: 0.75em 0;
  padding-left: 1.5em;
}

/* line 70, app/assets/stylesheets/prose.scss */
.prose ul {
  list-style-type: none;
}

/* line 73, app/assets/stylesheets/prose.scss */
.prose ul li {
  position: relative;
  padding-left: 1.5em;
}

/* line 77, app/assets/stylesheets/prose.scss */
.prose ul li:before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 88, app/assets/stylesheets/prose.scss */
.prose ol {
  list-style-type: decimal;
}

/* line 91, app/assets/stylesheets/prose.scss */
.prose ol li {
  padding-left: 0.5em;
}

/* line 96, app/assets/stylesheets/prose.scss */
.prose li {
  margin-bottom: 0.375em;
  line-height: 1.6;
}

/* line 102, app/assets/stylesheets/prose.scss */
.prose b, .prose strong {
  font-weight: 600;
  color: #111827;
}

/* line 107, app/assets/stylesheets/prose.scss */
.prose em {
  font-style: italic;
  color: #4b5563;
}

/* line 113, app/assets/stylesheets/prose.scss */
.prose blockquote {
  border-left: 4px solid #3b82f6;
  margin: 1em 0;
  padding: 1em 1.5em;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
  position: relative;
}

/* line 123, app/assets/stylesheets/prose.scss */
.prose blockquote:before {
  content: "“";
  font-size: 3rem;
  color: #3b82f6;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: Georgia, serif;
}

/* line 133, app/assets/stylesheets/prose.scss */
.prose blockquote p {
  margin: 0;
  font-size: 1.125rem;
}

/* line 140, app/assets/stylesheets/prose.scss */
.prose pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1em;
  border-radius: 12px;
  overflow-x: auto;
  margin: 1em 0;
  font-size: 0.875rem;
  line-height: 1.6;
  border: 1px solid #334155;
}

/* line 152, app/assets/stylesheets/prose.scss */
.prose code {
  background: #f1f5f9;
  color: #dc2626;
  padding: 0.25em 0.5em;
  border-radius: 6px;
  font-size: 0.875em;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

/* line 162, app/assets/stylesheets/prose.scss */
.prose pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border: none;
  border-radius: 0;
}

/* line 171, app/assets/stylesheets/prose.scss */
.prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1em 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* line 181, app/assets/stylesheets/prose.scss */
.prose th, .prose td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}

/* line 188, app/assets/stylesheets/prose.scss */
.prose th {
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #d1d5db;
}

/* line 198, app/assets/stylesheets/prose.scss */
.prose td {
  color: #374151;
  font-size: 0.875rem;
}

/* line 203, app/assets/stylesheets/prose.scss */
.prose tr:nth-child(even) {
  background: #f9fafb;
}

/* line 207, app/assets/stylesheets/prose.scss */
.prose tr:hover {
  background: #f3f4f6;
}

/* line 212, app/assets/stylesheets/prose.scss */
.prose img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* line 221, app/assets/stylesheets/prose.scss */
.prose hr {
  border: 0;
  border-top: 2px solid #e5e7eb;
  margin: 1.5em 0;
  position: relative;
}

/* line 227, app/assets/stylesheets/prose.scss */
.prose hr:after {
  content: "✧";
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0 1rem;
  color: #6b7280;
  font-size: 1.25rem;
}

/* line 241, app/assets/stylesheets/prose.scss */
.prose .highlight-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.25rem;
  border-radius: 16px;
  margin: 1em 0;
  position: relative;
  overflow: hidden;
}

/* line 250, app/assets/stylesheets/prose.scss */
.prose .highlight-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

/* line 260, app/assets/stylesheets/prose.scss */
.prose .highlight-box * {
  position: relative;
  z-index: 1;
}

/* line 267, app/assets/stylesheets/prose.scss */
.prose .cta-box {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 1.25rem;
  border-radius: 16px;
  margin: 1em 0;
  text-align: center;
}

/* line 275, app/assets/stylesheets/prose.scss */
.prose .cta-box h3 {
  color: white;
  margin-top: 0;
}

/* line 280, app/assets/stylesheets/prose.scss */
.prose .cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* line 285, app/assets/stylesheets/prose.scss */
.prose .cta-box .cta-button {
  display: inline-block;
  background: white;
  color: #f5576c;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* line 295, app/assets/stylesheets/prose.scss */
.prose .cta-box .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Directory-specific styles - simple and clean like documents page */
/* Line clamp utilities */
/* line 4, app/assets/stylesheets/directory.scss */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 11, app/assets/stylesheets/directory.scss */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* Directory-specific styles - simple and clean like documents page */
/* Line clamp utilities */
/* line 4, app/assets/stylesheets/directory.scss */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* line 11, app/assets/stylesheets/directory.scss */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@charset "UTF-8";
/* Base styles */
/* line 2, app/assets/stylesheets/main.scss */
html {
  font-size: 14px;
}

/* line 6, app/assets/stylesheets/main.scss */
body {
  background-color: #eef1fc;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

/* Layout components */
/* line 17, app/assets/stylesheets/main.scss */
.content-wrapper {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* line 25, app/assets/stylesheets/main.scss */
.svg-container {
  width: 100%;
  transform: translateY(-50px);
  overflow: hidden;
}

/* Header styles */
/* line 32, app/assets/stylesheets/main.scss */
header {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding-right: 40px;
  z-index: 2;
}

/* line 43, app/assets/stylesheets/main.scss */
header nav {
  display: flex;
  gap: 200px;
}

/* line 48, app/assets/stylesheets/main.scss */
.header-item {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #13274F;
  opacity: 0.6;
}

/* line 57, app/assets/stylesheets/main.scss */
.header-item-active {
  opacity: 1;
}

/* line 61, app/assets/stylesheets/main.scss */
.logo {
  position: absolute;
  top: 60px;
  left: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: #13274F;
  z-index: 2;
}

/* Content blocks */
/* line 73, app/assets/stylesheets/main.scss */
.new-block {
  width: 50%;
  text-align: center;
  z-index: 2;
}

/* line 79, app/assets/stylesheets/main.scss */
.new-block h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #13274F;
  margin-bottom: 20px;
}

/* line 87, app/assets/stylesheets/main.scss */
.new-block p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #13274F;
  line-height: 160%;
}

/* line 95, app/assets/stylesheets/main.scss */
.top-section {
  position: relative;
  width: 100%;
  max-height: 150px;
}

/* line 101, app/assets/stylesheets/main.scss */
.image-block {
  margin-bottom: 40px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  z-index: 2;
  overflow: hidden;
}

@media (max-width: 768px) {
  /* line 101, app/assets/stylesheets/main.scss */
  .image-block {
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    margin-top: 0;
    border-radius: 0;
  }
}

/* Footer styles */
/* line 121, app/assets/stylesheets/main.scss */
.footer {
  flex-shrink: 0;
  background-color: #E2E7FA;
  width: 100%;
  padding: 40px 0 20px;
  margin-top: auto;
}

/* line 129, app/assets/stylesheets/main.scss */
.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

/* line 139, app/assets/stylesheets/main.scss */
.footer-column {
  flex: 1;
}

/* line 143, app/assets/stylesheets/main.scss */
.footer-column h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #13274F;
  margin-bottom: 10px;
}

/* line 151, app/assets/stylesheets/main.scss */
.footer-column p,
.footer-column ul,
.footer-column li,
.footer-column a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
  line-height: 1.5;
}

/* line 162, app/assets/stylesheets/main.scss */
.footer-column ul {
  list-style-type: none;
  padding: 0;
}

/* line 167, app/assets/stylesheets/main.scss */
.footer-column a {
  text-decoration: none;
}

/* line 171, app/assets/stylesheets/main.scss */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}

/* line 176, app/assets/stylesheets/main.scss */
.footer-bottom p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

/* Flash messages backdrop */
/* line 184, app/assets/stylesheets/main.scss */
.flash-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 999;
  animation: fadeIn 0.3s ease-out;
}

/* Flash messages */
/* line 198, app/assets/stylesheets/main.scss */
.flash-messages {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
  border-radius: 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideInCenter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

/* line 226, app/assets/stylesheets/main.scss */
.flash-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  gap: 16px;
  position: relative;
}

/* line 235, app/assets/stylesheets/main.scss */
.flash-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 16px 16px 0 0;
}

/* line 246, app/assets/stylesheets/main.scss */
.flash-notice .flash-content::before {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

/* line 250, app/assets/stylesheets/main.scss */
.flash-success .flash-content::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

/* line 254, app/assets/stylesheets/main.scss */
.flash-error .flash-content::before {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

/* line 258, app/assets/stylesheets/main.scss */
.flash-message-text {
  flex: 1;
  line-height: 1.5;
  color: #374151;
}

/* line 264, app/assets/stylesheets/main.scss */
.flash-close {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 278, app/assets/stylesheets/main.scss */
.flash-close:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: #374151;
  transform: scale(1.05);
}

/* line 285, app/assets/stylesheets/main.scss */
.flash-close:active {
  transform: scale(0.95);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInCenter {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) translateY(0);
  }
}

/* line 309, app/assets/stylesheets/main.scss */
.flash-success {
  /* Success styling handled by top bar */
}

/* line 313, app/assets/stylesheets/main.scss */
.flash-error {
  /* Error styling handled by top bar */
}

/* line 317, app/assets/stylesheets/main.scss */
.flash-notice {
  /* Notice styling handled by top bar */
}

/* Responsive styles */
@media (max-width: 768px) {
  /* line 323, app/assets/stylesheets/main.scss */
  .new-block {
    width: 100%;
  }
  /* line 327, app/assets/stylesheets/main.scss */
  .flash-messages {
    max-width: 95%;
    font-size: 15px;
  }
  /* line 332, app/assets/stylesheets/main.scss */
  .flash-content {
    padding: 20px;
    gap: 12px;
  }
  /* line 337, app/assets/stylesheets/main.scss */
  .flash-close {
    padding: 6px;
  }
  /* line 341, app/assets/stylesheets/main.scss */
  .logo {
    display: none;
  }
  /* line 345, app/assets/stylesheets/main.scss */
  .svg-container {
    display: none;
  }
  /* line 349, app/assets/stylesheets/main.scss */
  header {
    position: static;
    padding-right: 0;
    justify-content: center;
    padding-top: 20px;
  }
  /* line 356, app/assets/stylesheets/main.scss */
  header nav {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  /* line 362, app/assets/stylesheets/main.scss */
  header a {
    font-size: 14px;
  }
  /* line 366, app/assets/stylesheets/main.scss */
  .top-section {
    margin-bottom: 20px;
  }
}

/* Blog-specific styles */
/* line 373, app/assets/stylesheets/main.scss */
.blog-container {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* line 377, app/assets/stylesheets/main.scss */
.blog-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

/* line 383, app/assets/stylesheets/main.scss */
.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='50' cy='50' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  animation: float 20s ease-in-out infinite;
}

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

/* line 399, app/assets/stylesheets/main.scss */
.blog-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #374151;
}

/* line 405, app/assets/stylesheets/main.scss */
.blog-content h2 {
  position: relative;
  padding-bottom: 0.5rem;
}

/* line 410, app/assets/stylesheets/main.scss */
.blog-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  border-radius: 2px;
}

/* line 421, app/assets/stylesheets/main.scss */
.blog-content h3 {
  color: #4b5563;
  font-weight: 600;
}

/* line 426, app/assets/stylesheets/main.scss */
.blog-content strong {
  color: #111827;
  font-weight: 600;
}

/* line 431, app/assets/stylesheets/main.scss */
.blog-content ul li {
  position: relative;
  padding-left: 1.5rem;
}

/* line 436, app/assets/stylesheets/main.scss */
.blog-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* line 444, app/assets/stylesheets/main.scss */
.blog-content blockquote {
  border-left: 4px solid #3b82f6;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 0 12px 12px 0;
  position: relative;
}

/* line 451, app/assets/stylesheets/main.scss */
.blog-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #3b82f6;
  position: absolute;
  top: -1rem;
  left: 1rem;
  font-family: Georgia, serif;
  opacity: 0.3;
}

/* line 462, app/assets/stylesheets/main.scss */
.blog-content table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* line 468, app/assets/stylesheets/main.scss */
.blog-content table th {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
}

/* line 476, app/assets/stylesheets/main.scss */
.blog-content table tr:nth-child(even) {
  background: #f9fafb;
}

/* line 480, app/assets/stylesheets/main.scss */
.blog-content table tr:hover {
  background: #f3f4f6;
  transition: background-color 0.2s ease;
}

/* line 485, app/assets/stylesheets/main.scss */
.blog-footer {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid #e5e7eb;
}

/* line 490, app/assets/stylesheets/main.scss */
.related-articles {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* line 496, app/assets/stylesheets/main.scss */
.related-article-card {
  background: #f9fafb;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* line 503, app/assets/stylesheets/main.scss */
.related-article-card:hover {
  background: #f3f4f6;
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
}

/* line 510, app/assets/stylesheets/main.scss */
.related-article-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* line 520, app/assets/stylesheets/main.scss */
.related-article-card:hover .related-article-icon {
  transform: scale(1.1);
}

/* Responsive blog styles */
@media (max-width: 768px) {
  /* line 526, app/assets/stylesheets/main.scss */
  .blog-hero {
    padding: 2rem 1rem;
  }
  /* line 530, app/assets/stylesheets/main.scss */
  .blog-hero h1 {
    font-size: 2rem;
  }
  /* line 534, app/assets/stylesheets/main.scss */
  .blog-content {
    padding: 1rem;
    font-size: 1rem;
  }
  /* line 539, app/assets/stylesheets/main.scss */
  .blog-content h2 {
    font-size: 1.5rem;
  }
  /* line 543, app/assets/stylesheets/main.scss */
  .blog-content h3 {
    font-size: 1.25rem;
  }
  /* line 547, app/assets/stylesheets/main.scss */
  .related-articles {
    padding: 1rem;
  }
  /* line 551, app/assets/stylesheets/main.scss */
  .related-articles .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* line 557, app/assets/stylesheets/main.scss */
  .blog-hero h1 {
    font-size: 1.75rem;
  }
  /* line 561, app/assets/stylesheets/main.scss */
  .blog-content {
    font-size: 0.95rem;
  }
  /* line 565, app/assets/stylesheets/main.scss */
  .blog-content h2 {
    font-size: 1.375rem;
  }
  /* line 569, app/assets/stylesheets/main.scss */
  .blog-content h3 {
    font-size: 1.125rem;
  }
}
@charset "UTF-8";
/* line 1, app/assets/stylesheets/prose.scss */
.prose {
  padding: 0;
  font-weight: 400;
  color: #374151;
}

/* line 7, app/assets/stylesheets/prose.scss */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
  font-family: 'Montserrat', sans-serif;
  color: #1f2937;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.75em;
  margin-bottom: 0.5em;
  letter-spacing: -0.025em;
}

/* line 17, app/assets/stylesheets/prose.scss */
.prose h1 {
  font-size: 2.25rem;
  margin-top: 0;
  color: #111827;
}

/* line 22, app/assets/stylesheets/prose.scss */
.prose h2 {
  font-size: 1.875rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.25rem;
}

/* line 27, app/assets/stylesheets/prose.scss */
.prose h3 {
  font-size: 1.5rem;
  color: #374151;
}

/* line 31, app/assets/stylesheets/prose.scss */
.prose h4 {
  font-size: 1.25rem;
  color: #4b5563;
}

/* line 35, app/assets/stylesheets/prose.scss */
.prose h5 {
  font-size: 1.125rem;
  color: #6b7280;
}

/* line 39, app/assets/stylesheets/prose.scss */
.prose h6 {
  font-size: 1rem;
  color: #9ca3af;
}

/* line 45, app/assets/stylesheets/prose.scss */
.prose p {
  margin-bottom: 0.75em;
  line-height: 1.75;
  font-size: inherit;
  color: #374151;
}

/* line 52, app/assets/stylesheets/prose.scss */
.prose a {
  color: #2563eb;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

/* line 58, app/assets/stylesheets/prose.scss */
.prose a:hover {
  color: #1d4ed8;
  border-bottom-color: #1d4ed8;
}

/* line 65, app/assets/stylesheets/prose.scss */
.prose ul, .prose ol {
  margin: 0.75em 0;
  padding-left: 1.5em;
}

/* line 70, app/assets/stylesheets/prose.scss */
.prose ul {
  list-style-type: none;
}

/* line 73, app/assets/stylesheets/prose.scss */
.prose ul li {
  position: relative;
  padding-left: 1.5em;
}

/* line 77, app/assets/stylesheets/prose.scss */
.prose ul li:before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* line 88, app/assets/stylesheets/prose.scss */
.prose ol {
  list-style-type: decimal;
}

/* line 91, app/assets/stylesheets/prose.scss */
.prose ol li {
  padding-left: 0.5em;
}

/* line 96, app/assets/stylesheets/prose.scss */
.prose li {
  margin-bottom: 0.375em;
  line-height: 1.6;
}

/* line 102, app/assets/stylesheets/prose.scss */
.prose b, .prose strong {
  font-weight: 600;
  color: #111827;
}

/* line 107, app/assets/stylesheets/prose.scss */
.prose em {
  font-style: italic;
  color: #4b5563;
}

/* line 113, app/assets/stylesheets/prose.scss */
.prose blockquote {
  border-left: 4px solid #3b82f6;
  margin: 1em 0;
  padding: 1em 1.5em;
  background: #f8fafc;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #475569;
  position: relative;
}

/* line 123, app/assets/stylesheets/prose.scss */
.prose blockquote:before {
  content: "“";
  font-size: 3rem;
  color: #3b82f6;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-family: Georgia, serif;
}

/* line 133, app/assets/stylesheets/prose.scss */
.prose blockquote p {
  margin: 0;
  font-size: 1.125rem;
}

/* line 140, app/assets/stylesheets/prose.scss */
.prose pre {
  background: #1e293b;
  color: #e2e8f0;
  padding: 1em;
  border-radius: 12px;
  overflow-x: auto;
  margin: 1em 0;
  font-size: 0.875rem;
  line-height: 1.6;
  border: 1px solid #334155;
}

/* line 152, app/assets/stylesheets/prose.scss */
.prose code {
  background: #f1f5f9;
  color: #dc2626;
  padding: 0.25em 0.5em;
  border-radius: 6px;
  font-size: 0.875em;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

/* line 162, app/assets/stylesheets/prose.scss */
.prose pre code {
  background: transparent;
  color: inherit;
  padding: 0;
  border: none;
  border-radius: 0;
}

/* line 171, app/assets/stylesheets/prose.scss */
.prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1em 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* line 181, app/assets/stylesheets/prose.scss */
.prose th, .prose td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}

/* line 188, app/assets/stylesheets/prose.scss */
.prose th {
  background: #f9fafb;
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #d1d5db;
}

/* line 198, app/assets/stylesheets/prose.scss */
.prose td {
  color: #374151;
  font-size: 0.875rem;
}

/* line 203, app/assets/stylesheets/prose.scss */
.prose tr:nth-child(even) {
  background: #f9fafb;
}

/* line 207, app/assets/stylesheets/prose.scss */
.prose tr:hover {
  background: #f3f4f6;
}

/* line 212, app/assets/stylesheets/prose.scss */
.prose img {
  max-width: 100%;
  height: auto;
  margin: 1em 0;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* line 221, app/assets/stylesheets/prose.scss */
.prose hr {
  border: 0;
  border-top: 2px solid #e5e7eb;
  margin: 1.5em 0;
  position: relative;
}

/* line 227, app/assets/stylesheets/prose.scss */
.prose hr:after {
  content: "✧";
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 0 1rem;
  color: #6b7280;
  font-size: 1.25rem;
}

/* line 241, app/assets/stylesheets/prose.scss */
.prose .highlight-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.25rem;
  border-radius: 16px;
  margin: 1em 0;
  position: relative;
  overflow: hidden;
}

/* line 250, app/assets/stylesheets/prose.scss */
.prose .highlight-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

/* line 260, app/assets/stylesheets/prose.scss */
.prose .highlight-box * {
  position: relative;
  z-index: 1;
}

/* line 267, app/assets/stylesheets/prose.scss */
.prose .cta-box {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  padding: 1.25rem;
  border-radius: 16px;
  margin: 1em 0;
  text-align: center;
}

/* line 275, app/assets/stylesheets/prose.scss */
.prose .cta-box h3 {
  color: white;
  margin-top: 0;
}

/* line 280, app/assets/stylesheets/prose.scss */
.prose .cta-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

/* line 285, app/assets/stylesheets/prose.scss */
.prose .cta-box .cta-button {
  display: inline-block;
  background: white;
  color: #f5576c;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* line 295, app/assets/stylesheets/prose.scss */
.prose .cta-box .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* Select2 Custom Styles */
/* line 2, app/assets/stylesheets/select2_custom.scss */
.select2-container {
  display: block;
  width: 100%;
}

/* line 7, app/assets/stylesheets/select2_custom.scss */
.select2-container .select2-selection--single {
  height: 3rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #ffffff;
}

/* line 14, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--single {
  border: 1px solid #d1d5db;
}

/* line 18, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #374151;
  padding: 0.5rem 1rem 0;
  line-height: 2rem;
  overflow: hidden;
  /* width: 350px; */
}

/* line 27, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.5rem;
  color: #9ca3af;
}

/* line 36, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-search--dropdown .select2-search__field {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
}

/* line 43, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  outline: none;
  border-color: #3b82f6;
  /* box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); */
  border: 2px solid #3b82f6;
}

/* line 50, app/assets/stylesheets/select2_custom.scss */
.select2-dropdown {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

/* line 57, app/assets/stylesheets/select2_custom.scss */
.select2-results__option {
  padding: 0.5rem 1rem;
  color: #374151;
  cursor: pointer;
}

/* line 63, app/assets/stylesheets/select2_custom.scss */
.select2-results__option:hover {
  background-color: #f3f4f6;
}

/* line 67, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #3b82f6;
  color: #ffffff;
}

/* line 71, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-results__option--highlighted[aria-selected] .option-hint {
  color: #eeeeee;
}

/* line 76, app/assets/stylesheets/select2_custom.scss */
.select2-container--default .select2-results__option[aria-selected=true] {
  /* background-color: #f3f4f6; */
}

/* Multiple select styles */
/* line 81, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--multiple {
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: #ffffff;
  min-height: 3rem;
}

/* line 88, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  margin-right: 0.25rem;
  font-size: 0.875rem;
  color: #1d4ed8;
}

/* line 98, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #3b82f6;
  margin-right: 0.25rem;
}

/* line 103, app/assets/stylesheets/select2_custom.scss */
.select2-container.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #1d4ed8;
}

/* Disabled state */
/* line 108, app/assets/stylesheets/select2_custom.scss */
.select2-container--default.select2-container--disabled .select2-selection--single,
.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #f3f4f6;
  cursor: not-allowed;
}

/* Focus states */
/* line 115, app/assets/stylesheets/select2_custom.scss */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 2px solid #3b82f6;
}
