     button,
     a,
     input,
     textarea {
       -webkit-tap-highlight-color: transparent;
     }

     /* Behind Healthcare Styles */
     body {
       background-image: radial-gradient(circle farthest-corner at 50% 50%,
           #deeffc,
           #dff4e9);
       margin: 0;
       padding: 0;
     }

     .btc-section {
       padding: 20px 0;
       background: transparent;
     }

     .btc-container {
       max-width: 1368px;
       margin: 0 auto;
       padding: 0 24px;
     }

     .btc-header {
       text-align: center;
       margin-bottom: 56px;
     }

     .btc-heading {
       font-family: var(--font-sans);
       font-weight: 700;
       font-size: var(--text-4xl);
       line-height: 1.11;
       color: var(--color-text);
       margin: 0 0 16px 0;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .btc-subtitle {
       font-family: var(--font-sans);
       font-weight: 400;
       font-size: 20px;
       line-height: 1.4;
       color: var(--color-text-muted);
       margin: 0 auto;
       max-width: 672px;
     }

     .articles-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 32px;
       margin-bottom: 44px;
     }

     .article-card {
       background: #ffffff;
       border: 1px solid #e2e8f0;
       border-radius: 8px;
       box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
       overflow: hidden;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       cursor: pointer;
       position: relative;
     }

     .article-card:hover {
       transform: translateY(-4px);
       box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1);
     }

     .article-image-wrapper {
       position: relative;
       width: 100%;
       height: 250px;
       overflow: hidden;
       background: #f1f5f9;
     }

     .article-image {
       width: 100%;
       height: 100%;
       object-fit: cover;
     }

     .article-content {
       padding: 25px;
     }

     .article-meta {
       display: flex;
       align-items: center;
       gap: 12px;
       margin-bottom: 12px;
     }

     .article-date,
     .article-reading-time {
       display: flex;
       align-items: center;
       gap: 4px;
       font-family: var(--font-sans);
       font-weight: 400;
       font-size: var(--text-sm);
       line-height: 1.43;
       color: var(--color-text-muted);
     }

     .article-author {
       font-family: var(--font-sans);
       font-weight: 400;
       font-size: var(--text-sm);
       color: var(--color-text-muted);
     }

     .article-date svg,
     .article-reading-time svg {
       width: 16px;
       height: 16px;
     }

     .article-title {
       font-family: var(--font-sans);
       font-weight: 600;
       font-size: var(--text-2xl);
       /* 24px for article titles */
       line-height: 1.4;
       letter-spacing: -0.025em;
       color: var(--color-text);
       padding: 5px 0px;
       margin: 0;
       display: -webkit-box;
       -webkit-line-clamp: 2;
       line-clamp: 2;
       -webkit-box-orient: vertical;
       overflow: hidden;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .article-title a {
       color: inherit;
       text-decoration: none;
       transition: color 0.2s ease;
     }

     .article-title a:hover {
       color: #2563eb;
     }

     .article-excerpt {
       font-family: var(--font-sans);
       font-weight: 500;
       font-size: var(--text-lg);
       line-height: 1.625;
       color: var(--color-text-muted);
       margin: 0 0 20px 0;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .article-cta {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       font-family: var(--font-sans);
       font-weight: 600;
       font-size: var(--text-sm);
       line-height: 1.43;
       color: #2563eb;
       text-decoration: none;
       transition: gap 0.3s ease;
     }

     .article-cta:hover {
       gap: 12px;
     }

     .article-cta svg {
       width: 16px;
       height: 16px;
     }

     .article-footer {
       display: flex;
       justify-content: space-between;
       align-items: center;
       gap: 16px;
       margin-top: 16px;
       padding-top: 12px;
       border-top: 1px solid #f1f5f9;
     }

     .article-card-share-btn {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       padding: 8px 16px;
       background: #ffffff;
       border: 2px solid #e2e8f0;
       border-radius: 6px;
       color: var(--color-text-muted);
       font-family: var(--font-sans);
       font-weight: 600;
       font-size: var(--text-sm);
       line-height: 1.43;
       cursor: pointer;
       transition: all 0.3s ease;
       text-decoration: none;
       white-space: nowrap;
       box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
     }

     .article-card-share-btn:hover {
       border-color: #2563eb;
       color: #2563eb;
       background: rgba(37, 99, 235, 0.05);
       gap: 0.75rem;
     }

     .article-card-share-btn svg {
       transition: transform 0.3s ease;
       width: 18px;
       height: 18px;
     }

     .article-card-share-btn:hover svg {
       transform: scale(1.1);
     }

     .view-all-btn {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       gap: 8px;
       padding: 12px 32px;
       background: linear-gradient(163deg,
           rgba(26, 140, 255, 1) 0%,
           rgba(34, 195, 34, 1) 100%);
       color: #ffffff;
       font-family: var(--font-sans);
       font-weight: 700;
       font-size: var(--text-sm);
       line-height: 1.43;
       border-radius: 6px;
       border: none;
       cursor: pointer;
       transition: transform 0.3s ease, opacity 0.3s ease;
       text-decoration: none;
       margin: 0 auto;
       display: flex;
     }

     .view-all-btn:hover {
       transform: translateY(-2px);
       opacity: 0.9;
     }

     .loading-state,
     .error-state,
     .empty-state {
       text-align: center;
       padding: 60px 20px;
     }

     .loading-state {
       color: #6b7280;
       font-size: 18px;
     }

     .error-state {
       color: #ef4444;
       font-size: 18px;
     }

     .empty-state {
       color: #6b7280;
       font-size: 18px;
     }

     /* Responsive Design */
     @media (max-width: 991px) {
       .articles-grid {
         grid-template-columns: 1fr 1fr;
         gap: 24px;
       }

       .btc-heading {
         font-size: 32px;
         word-wrap: break-word;
         overflow-wrap: break-word;
         max-width: 100%;
       }

       .btc-subtitle {
         font-size: 18px;
       }
     }

     @media (max-width: 768px) {
       .articles-grid {
         grid-template-columns: 1fr;
         gap: 20px;
       }
     }

     @media (max-width: 767px) {
       .btc-section {
         padding: 20px 0;
       }

       .btc-heading {
         font-size: 28px;
         word-wrap: break-word;
         overflow-wrap: break-word;
         max-width: 100%;
       }

       .btc-subtitle {
         font-size: 16px;
       }

       .article-content {
         padding: 20px;
       }

       .article-footer {
         flex-direction: column;
         align-items: flex-start;
         gap: 12px;
       }

       .article-card-share-btn {
         width: 100%;
         justify-content: center;
         padding: 10px 16px;
         font-size: 16px;
       }
     }

     button,
     a,
     input,
     textarea {
       -webkit-tap-highlight-color: transparent;
     }

     /* Article Detail Styles */
     body {
       background-image: radial-gradient(circle farthest-corner at 50% 50%,
           #deeffc,
           #dff4e9);
       margin: 0;
       padding: 0;
     }

     .article-detail-section {
       padding: 40px 0 80px;
       background: transparent;
     }

     .article-container {
       max-width: 900px;
       margin: 0 auto;
       padding: 0 24px;
     }

     .breadcrumb {
       margin-top: 90px;
       margin-bottom: 24px;
       font-size: 14px;
     }

     .breadcrumb a {
       color: #2563eb;
       text-decoration: none;
       transition: color 0.3s ease;
     }

     .breadcrumb a:hover {
       color: #1d4ed8;
     }

     .breadcrumb span {
       color: #6b7280;
       margin: 0 8px;
     }

     .article-header {
       margin-top: 32px;
       margin-bottom: 32px;
     }

     .article-detail-title {
       font-family: var(--font-sans);
       font-weight: 700;
       font-size: var(--text-hero);
       line-height: var(--leading-tight);
       letter-spacing: -0.025em;
       color: var(--color-text);
       margin: 0 0 16px 0;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .article-meta-detail {
       display: flex;
       align-items: center;
       gap: 16px;
       flex-wrap: wrap;
       margin-bottom: 32px;
       justify-content: space-between;
     }

     .meta-items-group {
       display: flex;
       align-items: center;
       gap: 16px;
       flex-wrap: wrap;
     }

     .meta-item {
       display: flex;
       align-items: center;
       gap: 6px;
       font-family: var(--font-sans);
       font-weight: 400;
       font-size: var(--text-sm);
       color: var(--color-text-muted);
     }

     .meta-item svg {
       width: 16px;
       height: 16px;
     }

     .article-share-btn-inline {
       display: flex;
       align-items: center;
       gap: 6px;
       padding: 8px 12px;
       background: transparent;
       border: 1px solid #e2e8f0;
       border-radius: 6px;
       color: var(--color-text-muted);
       font-family: var(--font-sans);
       font-weight: 400;
       font-size: var(--text-sm);
       line-height: 1.43;
       cursor: pointer;
       transition: all 0.3s ease;
       text-decoration: none;
       white-space: nowrap;
     }

     .article-share-btn-inline:hover {
       border-color: #2563eb;
       color: #2563eb;
       background: rgba(37, 99, 235, 0.05);
     }

     .article-share-btn-inline svg {
       transition: transform 0.3s ease;
       width: 16px;
       height: 16px;
     }

     .article-share-btn-inline:hover svg {
       transform: scale(1.1);
     }

     .article-featured-image {
       width: 100%;
       height: auto;
       object-fit: none;
       border-radius: 8px;
       margin-bottom: 40px;
     }

     .article-body {
       font-family: var(--font-sans);
       font-size: var(--text-lg);
       font-weight: 500;
       line-height: var(--leading-relaxed);
       color: #333333;
       max-width: 100%;
       word-wrap: break-word;
       overflow-wrap: break-word;
       hyphens: auto;

     }

     .article-body h2 {
       font-size: 32px;
       font-weight: 700;
       color: #111827;
       margin: 40px 0 16px 0;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .article-body h3 {
       font-size: 24px;
       font-weight: 600;
       color: #111827;
       margin: 32px 0 12px 0;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .article-body p {
       margin: 0 0 20px 0;
       word-wrap: break-word;
       overflow-wrap: break-word;
       font-weight: 500;
       max-width: 100%;
     }

     .article-body ul,
     .article-body ol {
       margin: 0 0 20px 0;
       padding-left: 24px;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .article-body li {
       margin-bottom: 8px;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .article-body a {
       color: #2563eb;
       text-decoration: underline;
     }

     .article-body a:hover {
       color: #1d4ed8;
     }

     .article-body img {
       max-width: 100%;
       height: auto;
       border-radius: 8px;
       margin: 24px 0;
     }

     /* Press original content collapse behaviour to avoid large pasted blocks
       collapsed by default, toggled by .press-toggle-button */
     .press-original-collapsed {
       max-height: none;
       overflow: visible;
       transition: max-height 0.35s ease;
     }

     .press-original-collapsed.collapsed {
       max-height: 420px;
       overflow: hidden;
     }

     .press-toggle-button {
       display: inline-block;
       margin-top: 16px;
       padding: 10px 14px;
       border-radius: 6px;
       border: 1px solid #e2e8f0;
       background: #ffffff;
       color: #2563eb;
       cursor: pointer;
       font-family: var(--font-sans);
       font-weight: 600;
       font-size: var(--text-sm);
     }

     .article-body blockquote {
       border-left: 4px solid #2563eb;
       padding-left: 20px;
       margin: 24px 0;
       font-style: italic;
       color: #4b5563;
       word-wrap: break-word;
       overflow-wrap: break-word;
       max-width: 100%;
     }

     .back-link {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       color: #2563eb;
       text-decoration: none;
       font-weight: 600;
       font-size: 16px;
       margin-top: 48px;
       margin-bottom: 4px;
       transition: gap 0.3s ease;
     }

     .back-link:hover {
       gap: 12px;
     }

     .back-link svg {
       width: 20px;
       height: 20px;
     }

     .loading-state,
     .error-state {
       text-align: center;
       padding: 100px 20px;
     }

     .loading-state {
       color: #6b7280;
       font-size: 18px;
     }

     .error-state {
       color: #ef4444;
       font-size: 18px;
     }

     .error-state a {
       color: #2563eb;
       text-decoration: underline;
     }

     /* Responsive Design */
     @media (max-width: 767px) {
       .article-detail-section {
         padding: 24px 0 60px;
       }

       .article-detail-title {
         font-size: 32px;
         word-wrap: break-word;
         overflow-wrap: break-word;
         max-width: 100%;
       }

       .article-body {
         font-size: 16px;
       }

       .article-body h2 {
         font-size: 28px;
       }

       .article-body h3 {
         font-size: 22px;
       }

       .article-featured-image {
         height: auto;
         max-height: none;
       }

       .article-meta-detail {
         flex-direction: column;
         align-items: flex-start;
         gap: 12px;
       }

       .meta-items-group {
         gap: 12px;
       }

       .article-share-btn-inline {
         align-self: flex-end;
         padding: 10px 16px;
         font-size: 16px;
       }
     }