/** Shopify CDN: Minification failed

Line 465:15 Unterminated string token

**/
/*
 * Sworn Translators Blog Article Styles v3.0
 * MINIMAL version - fixes from user feedback
 * 
 * Changes in v3:
 * - Button text always white
 * - How It Works redesigned with icons, vertical layout
 * - Info cards simplified (no box shadow/border-radius)
 * - Highlight box without border-radius
 * - Benefits list properly aligned
 */

/* ==========================================================================
   Anchor Navigation
   ========================================================================== */

.st-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 16px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}

.st-anchor-nav a {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
}

.st-anchor-nav a:hover {
  color: #D63A5E;
  text-decoration: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.st-hero {
  padding: 24px 0 40px;
}

.st-hero-subtitle {
  color: #4a5568;
  font-style: italic;
  margin-bottom: 24px;
}

/* ==========================================================================
   Benefits List (Checkmarks) - FIXED ALIGNMENT
   ========================================================================== */

.st-benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.st-benefits li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin-bottom: 12px;
  align-items: start;
}

.st-check {
  color: #38a169;
  font-weight: bold;
  text-align: center;
}

/* Two-column variant for document types list */
.st-benefits--two-col {
  display: grid;
  grid-template-columns: minmax(180px, 200px) 1fr;
  gap: 8px 24px;
}

.st-benefits--two-col li {
  display: contents;
}

.st-benefits--two-col .st-check {
  display: none;
}

.st-benefits--two-col .st-benefit-label {
  display: flex;
  align-items: start;
  gap: 8px;
  font-weight: 600;
  color: #1E3A5F;
}

.st-benefits--two-col .st-benefit-label::before {
  content: "✓";
  color: #38a169;
  font-weight: bold;
}

.st-benefits--two-col .st-benefit-desc {
  color: #4a5568;
}

/* ==========================================================================
   CTA Wrapper & Buttons - ALWAYS WHITE TEXT
   ========================================================================== */

.st-cta-wrapper {
  margin: 32px 0;
  text-align: center;
}

/* Force white text on all button variations */
.st-cta-wrapper a.button,
.st-cta-wrapper .button,
a.button.st-cta-button,
.st-final-cta a.button,
.st-final-cta .button {
  color: #ffffff !important;
  text-decoration: none !important;
}

.st-cta-wrapper a.button:hover,
.st-final-cta a.button:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

.st-cta-subtext {
  display: block;
  margin-top: 12px;
  font-size: 0.875rem;
  color: #718096;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.st-trust-section {
  background: #f7fafc;
  padding: 32px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}

.st-trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}

.st-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.st-badge-icon {
  width: 60px;
  height: 60px;
  background: #1E3A5F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
}

.st-badge-label {
  font-size: 0.875rem;
  color: #4a5568;
}

/* ==========================================================================
   Authority Grid
   ========================================================================== */

.st-authority-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.st-authority-item {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
  border: 1px solid rgba(18, 18, 18, 0.1);
}

/* ==========================================================================
   Trustpilot Badge
   ========================================================================== */

.st-trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  font-weight: 600;
}

.st-trustpilot-stars {
  color: #00b67a;
}

/* ==========================================================================
   Info Cards - SIMPLIFIED (no shadow, no border-radius box)
   ========================================================================== */

.st-info-card {
  margin: 32px 0;
  padding: 0 0 32px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}

.st-info-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.st-info-card h3 {
  margin-top: 0;
  color: #1E3A5F;
  margin-bottom: 16px;
}

/* ==========================================================================
   Highlight Box - NO BORDER RADIUS, refined
   ========================================================================== */

.st-highlight-box {
  background: #f8f9fa;
  padding: 20px 24px;
  border-left: 3px solid #D63A5E;
  margin: 24px 0;
}

.st-highlight-box strong {
  color: #121212;
}

/* ==========================================================================
   Use Cases with Sub-Anchors
   ========================================================================== */

.st-use-cases-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 16px;
  background: #f7fafc;
  border-radius: 8px;
}

.st-use-cases-nav a {
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  color: #4a5568;
  font-size: 0.875rem;
  border: 1px solid rgba(18, 18, 18, 0.1);
}

.st-use-cases-nav a:hover {
  background: #D63A5E;
  color: #ffffff;
  text-decoration: none;
}

.st-use-case {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}

.st-use-case:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.st-use-case h4 {
  color: #1E3A5F;
  margin-top: 0;
  margin-bottom: 12px;
}

/* ==========================================================================
   Process Steps - REDESIGNED: Vertical, Icon-driven, Less Text Heavy
   ========================================================================== */

.st-steps {
  margin: 40px 0;
}

.st-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.st-step:last-child {
  border-bottom: none;
}

.st-step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.st-step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #D63A5E 0%, #b8324f 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(214, 58, 94, 0.25);
}

.st-step-icon {
  width: 32px;
  height: 32px;
  color: #1E3A5F;
}

.st-step-icon svg {
  width: 100%;
  height: 100%;
}

.st-step-content h3 {
  margin: 0 0 8px 0;
  color: #1E3A5F;
}

.st-step-content p {
  margin: 0;
  color: #4a5568;
}

/* Connector line between steps */
.st-step:not(:last-child) .st-step-visual::after {
  content: "";
  width: 2px;
  height: 24px;
  background: linear-gradient(to bottom, #D63A5E, rgba(214, 58, 94, 0.2));
  margin-top: 8px;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.st-faq-grid {
  margin: 32px 0;
}

.st-faq-item {
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}

.st-faq-item:last-child {
  border-bottom: none;
}

.st-faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 40px 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #121212;
  position: relative;
  font-size: inherit;
  font-family: inherit;
  line-height: 1.4;
}

.st-faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #D63A5E;
  transition: transform 0.2s;
}

.st-faq-item.is-open .st-faq-question::after {
  content: "−";
}

.st-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 0 0 0;
}

.st-faq-item.is-open .st-faq-answer {
  max-height: 500px;
  padding: 0 0 20px 0;
}

.st-faq-answer p {
  color: #4a5568;
  margin: 0;
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.st-testimonial {
  background: #f7fafc;
  padding: 28px;
  border-radius: 12px;
  margin: 32px 0;
}

.st-testimonial blockquote {
  font-style: italic;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
  quotes: none;
}

.st-testimonial blockquote::before {
  content: """;
  font-size: 2rem;
  color: #D63A5E;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}

.st-testimonial cite {
  color: #718096;
  font-size: 0.875rem;
}

/* ==========================================================================
   Final CTA Section
   ========================================================================== */

.st-final-cta {
  background: linear-gradient(135deg, #1E3A5F 0%, #15294a 100%);
  color: #ffffff;
  padding: 48px 32px;
  border-radius: 12px;
  text-align: center;
  margin: 48px 0 24px;
}

.st-final-cta h2 {
  color: #ffffff;
  border: none;
  padding: 0;
  margin-top: 0;
}

.st-final-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 24px;
}

.st-final-cta .button {
  background: #D63A5E !important;
  border-color: #D63A5E !important;
  color: #ffffff !important;
}

.st-final-cta .button:hover {
  background: #b8324f !important;
  border-color: #b8324f !important;
  color: #ffffff !important;
}

.st-final-cta .st-cta-subtext {
  color: rgba(255, 255, 255, 0.7);
}

/* Fix for benefit label/desc when not in two-col context */
.st-benefits:not(.st-benefits--two-col) .st-benefit-label {
  display: block !important;
  font-weight: 600;
  color: #1E3A5F;
  margin-bottom: 4px;
}

.st-benefits:not(.st-benefits--two-col) .st-benefit-desc {
  display: block !important;
  color: #4a5568;
  padding-left: 36px;
  margin-bottom: 16px;
}

/* ==========================================================================
   Mobile Adjustments
   ========================================================================== */

@media (max-width: 767px) {
  .st-anchor-nav {
    gap: 8px 16px;
  }

  .st-trust-section,
  .st-final-cta {
    padding: 24px 20px;
  }

  .st-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .st-badge-icon {
    width: 50px;
    height: 50px;
  }

  .st-benefits--two-col {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }

  .st-benefits--two-col .st-benefit-desc {
    padding-left: 24px;
    margin-bottom: 16px;
  }
}

/* END */ 



.article-template > *:first-child:not(.article-template__hero-container) {
  margin-top: 5rem;
}

@media screen and (min-width: 750px) {
  .article-template > *:first-child:not(.article-template__hero-container) {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

.article-template__hero-container {
  max-width: 130rem;
  margin: 0 auto;
}

.article-template__hero-small {
  height: 11rem;
}

.article-template__hero-medium {
  height: 22rem;
}

.article-template__hero-large {
  height: 33rem;
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .article-template__hero-small {
    height: 22rem;
  }

  .article-template__hero-medium {
    height: 44rem;
  }

  .article-template__hero-large {
    height: 66rem;
  }
}

@media screen and (min-width: 990px) {
  .article-template__hero-small {
    height: 27.5rem;
  }

  .article-template__hero-medium {
    height: 55rem;
  }

  .article-template__hero-large {
    height: 82.5rem;
  }
}

.article-template header {
  margin-top: 4.4rem;
  margin-bottom: 2rem;
  line-height: calc(0.8 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .article-template header {
    margin-top: 5rem;
  }
}

.article-template__title {
  margin: 0;
}

.article-template__title:not(:only-child) {
  margin-bottom: 1rem;
}

.article-template__link {
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.article-template__link .icon-wrap {
  display: flex;
  margin-right: 1rem;
  transform: rotate(180deg);
}

.article-template__content {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.article-template__social-sharing {
  margin-top: 3rem;
}

.article-template__social-sharing + header,
.article-template__social-sharing + .article-template__content {
  margin-top: 1.5rem;
}

.article-template__comment-wrapper {
  margin-top: 5rem;
  padding: 2.7rem 0;
}

@media screen and (min-width: 750px) {
  .article-template__comment-wrapper {
    margin-top: 6rem;
    padding: 3.6rem 0;
  }
}

.article-template__comment-wrapper h2 {
  margin-top: 0;
}

.article-template__comments {
  margin-bottom: 5rem;
}

@media screen and (min-width: 750px) {
  .article-template__comments {
    margin-bottom: 7rem;
  }
}

.article-template__comments-fields {
  margin-bottom: 4rem;
}

.article-template__comments-comment {
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
  margin-bottom: 1.5rem;
  padding: 2rem 2rem 1.5rem;
}

@media screen and (min-width: 750px) {
  .article-template__comments-comment {
    padding: 2rem 2.5rem;
  }
}

.article-template__comments-comment p {
  margin: 0 0 1rem;
}

.article-template__comment-fields > * {
  margin-bottom: 3rem;
}

@media screen and (min-width: 750px) {
  .article-template__comment-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 4rem;
  }
}

.article-template__comment-warning {
  margin: 2rem 0 2.5rem;
}

@media screen and (min-width: 990px) {
  .article-template__comments .pagination-wrapper {
    margin: 5rem 0 8rem;
  }
}

.article-template__back:last-child {
  margin-bottom: 3.2rem;
}
