/* ==========================================================================
   n8n Blog Theme - CSS
   Based on Figma Design System 2025
   ========================================================================== */

/* ==========================================================================
   FONT IMPORTS
   ========================================================================== */
@import url('../fonts/stylesheet.css');

/* ==========================================================================
   CSS CUSTOM PROPERTIES (DESIGN SYSTEM)
   ========================================================================== */
:root {
   /* Typography - Geomanist Font Family */
   --font-family-primary: var(--ghost-font-family, 'Geomanist', system-ui, -apple-system, sans-serif);
   --font-family-heading: var(--ghost-font-family, var(--font-family-primary));
   --font-family-body: var(--ghost-font-family, var(--font-family-primary));
   --font-weight-regular: 400;
   --font-weight-book: 400;
   
   /* Font Sizes */
   --font-size-h1: 48px;
   --font-size-h2: 38px;
   --font-size-h3: 32px;
   --font-size-h4: 38px;
   --font-size-sub-headline: 24px;
   --font-size-body-large: 20px;
   --font-size-body-small: 16px;
   --font-size-button-large: 16px;
   --font-size-button-small: 14px;
   --font-size-caption-large: 14px;
   --font-size-caption-small: 12px;
   
   /* Line Heights */
   --line-height-h1: 1.1;
   --line-height-h2: 1.1;
   --line-height-h3: 1.2;
   --line-height-h4: 110%;
   --line-height-sub-headline: 1.5;
   --line-height-body-large: 1.5;
   --line-height-body-small: 1.5;
   --line-height-caption-large: 1.3;
   --line-height-caption-small: 1.5;
   --line-height-button: 1;

   /* Colors */
   --color-white: #FFFFFF;
   --color-dark-navy: #1B1728;
   --color-midnight-navy: #0E0918;
   --color-dark-blue-3: #1f192a;
   --color-paragraphs: #c4bbd3;
   --color-lavender-gray: #C4BBD3;
   --color-darker-gray: #7A7A7A;
   --color-soft-gray: #E4E4E4;
   --color-light-gray: #e4e4e4;

   /* Background Colors */
   --color-body: #0E0918;
   --color-surface: rgba(255, 255, 255, 0.07);
   --color-surface-border: rgba(255, 255, 255, 0.08);

   /* Button Gradients */
   --gradient-orange: linear-gradient(141deg, #077ac7, #6b21ef);
   --gradient-github: linear-gradient(to top, rgba(38, 33, 73, 0), rgba(0, 0, 0, 0.42));
   --gradient-headline-silver-purple: linear-gradient(96deg, #FFF -10.58%, #7C65A1 123.65%);

   /* Spacing */
   --spacing-4: 4px;
   --spacing-8: 8px;
   --spacing-12: 12px;
   --spacing-16: 16px;
   --spacing-24: 24px;
   --spacing-32: 32px;
   --spacing-48: 48px;
   --spacing-64: 64px;

   /* Border Radius */
   --border-radius: 8px;
   --border-radius-large: 16px;

   /* Layout Widths */
   --max-width-global: 1460px;
   --max-width-hero: 1286px;
   --max-width-content: 1120px;
   --max-width-header: 1432px;
   --max-width-post: 700px;

   /* Shadows */
   --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.1);
   --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
   --shadow-button: 0 4px 12px rgba(255, 12, 0, 0.3);

   /* Transitions */
   --transition-fast: 0.2s ease;
   --transition-medium: 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
   box-sizing: border-box;
}

html {
   font-size: 16px;
   scroll-behavior: smooth;
}

body {
   margin: 0;
   padding: 0;
   font-family: var(--font-family-primary);
   font-size: var(--font-size-body-small);
   line-height: var(--line-height-body-small);
   color: var(--color-white);
   background-color: var(--color-body);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
   margin: 0;
   padding: 0;
   font-family: var(--font-family-primary);
   font-weight: var(--font-weight-book);
}

p {
   margin: 0 0 var(--spacing-16);
}

a {
   color: inherit;
   text-decoration: none;
   transition: var(--transition-fast);
}

ul, ol {
   margin: 0;
   padding: 0;
   list-style: none;
}

img {
   max-width: 100%;
   height: auto;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */

/* Container */
.container {
   max-width: var(--max-width-global);
   margin: 0 auto;
   padding: 0 var(--spacing-24);
}

/* Main Content Area */
.main-content {
   min-height: 100vh;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header-section {
   padding: var(--spacing-8) var(--spacing-24);
   margin-bottom: var(--spacing-32);
   position: relative;
   z-index: 1;
}

.header-container {
   max-width: var(--max-width-global);
   margin: 0 auto;
}

.header-navbar {
   background: rgba(0, 0, 0, 0.7);
   border: 1px solid var(--color-dark-blue-3);
   border-radius: var(--border-radius);
   padding: var(--spacing-8) var(--spacing-12);
   display: flex;
   align-items: center;
   justify-content: space-between;
   backdrop-filter: blur(10px);
   max-width: var(--max-width-header);
   height: 68px;
}

.header-left {
   display: flex;
   align-items: center;
   gap: var(--spacing-24);
}

.header-logo .logo-image {
   width: 144.53px;
   height: 25.6px;
}

.header-logo .logo-text,
.header-logo .logo-heading {
   font-size: var(--font-size-sub-headline);
   font-weight: var(--font-weight-book);
   color: var(--color-white);
   margin: 0;
}

.header-logo .logo-link {
   display: flex;
}

.header-navigation {
   display: flex;
}

.nav-list {
   display: flex;
   align-items: center;
   gap: var(--spacing-48);
}

.nav-link {
   font-size: var(--font-size-button-large);
   font-weight: var(--font-weight-book);
   color: var(--color-paragraphs);
   transition: var(--transition-fast);
}

.nav-link:hover {
   color: var(--color-white);
}

.header-right {
   display: flex;
   align-items: center;
   gap: var(--spacing-24);
}

.github-badge {
   display: flex;
   align-items: center;
   gap: var(--spacing-8);
   background: var(--gradient-github);
   border: 0.5px solid rgba(255, 255, 255, 0.2);
   border-radius: var(--border-radius);
   padding: var(--spacing-8) var(--spacing-16);
   transition: var(--transition-fast);
}

.github-badge:hover {
   transform: scale(1.05);
}

.github-icon {
   width: 24px;
   height: 24px;
   color: var(--color-white);
}

.github-text {
   font-size: var(--font-size-caption-large);
   color: var(--color-white);
   white-space: nowrap;
}

.sign-in-link {
   font-size: var(--font-size-caption-large);
   color: var(--color-white);
   transition: var(--transition-fast);
}

.sign-in-link:hover {
   opacity: 0.8;
}

.get-started-btn {
   position: relative;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: var(--spacing-4);
   overflow: hidden;
   --gradient-glow-x: 100%;
   --gradient-glow-y: 50%;
   --bg-color-1: hsla(0, 0%, 100%, 0);
   --bg-color-2: #ff9b26;
   --bg-color-3: #ff0c00;
   --bg-color-4: #fd8925;
   --bg-stop-1: 100%;
   --bg-stop-2: 150%;
   background-image: linear-gradient(rgba(255, 255, 255, 0) 100%, rgb(255, 155, 38) 100%, rgba(0, 0, 0, 0) 100%), linear-gradient(63.9655deg, rgb(253, 137, 37) 7.171%, rgb(255, 12, 0) 86.297%);
   border: none;
   border-radius: var(--border-radius);
   padding: 9px 14px;
   font-family: var(--font-family-primary);
   font-size: var(--font-size-button-small);
   font-weight: var(--font-weight-book);
   line-height: 1;
   color: var(--color-white);
   cursor: pointer;
   transition-duration: .45s;
   transition-property: --gradient-glow-x, --gradient-glow-y, --bg-color-1, --bg-color-2, --bg-stop-1, --bg-stop-2;
}

.get-started-btn::after {
   content: '';
   position: absolute;
   inset: 0;
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: var(--border-radius);
   pointer-events: none;
}

.get-started-btn:hover {
   --bg-stop-1: -20%;
   --bg-stop-2: 0%;
}

/* Mobile Navigation */
.mobile-menu-toggle {
   display: none;
}

.mobile-checkbox {
   display: none;
}

.mobile-toggle-label {
   cursor: pointer;
   padding: var(--spacing-8);
}

.hamburger {
   display: block;
   position: relative;
   width: 24px;
   height: 18px;
}

.hamburger .bar {
   width: 100%;
   height: 2px;
   background: var(--color-white);
   border-radius: 2px;
   transition: all 0.3s ease;
   position: absolute;
}

.hamburger .bar:nth-child(1) {
   top: 0;
}

.hamburger .bar:nth-child(2) {
   top: 8px;
}

.hamburger .bar:nth-child(3) {
   top: 16px;
}

.mobile-checkbox:checked + .mobile-toggle-label .hamburger .bar:nth-child(1) {
   top: 8px;
   transform: rotate(45deg);
}

.mobile-checkbox:checked + .mobile-toggle-label .hamburger .bar:nth-child(2) {
   opacity: 0;
}

.mobile-checkbox:checked + .mobile-toggle-label .hamburger .bar:nth-child(3) {
   top: 8px;
   transform: rotate(-45deg);
}

.hamburger-icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 24px;
   height: 24px;
   cursor: pointer;
}

.mobile-navigation {
   display: none;
   position: absolute;
   top: 100%;
   right: 0;
   left: 0;
   background: rgba(0, 0, 0, 0.95);
   border: 1px solid var(--color-dark-blue-3);
   border-radius: var(--border-radius);
   margin-top: var(--spacing-8);
   padding: var(--spacing-24);
   z-index: 1000;
}

.mobile-checkbox:checked ~ .mobile-navigation {
   display: block;
}

.mobile-nav-item {
   border-bottom: 1px solid var(--color-dark-blue-3);
   padding: var(--spacing-16) 0;
}

.mobile-nav-item:last-child {
   border-bottom: none;
}

.mobile-nav-link {
   font-size: var(--font-size-body-small);
   color: var(--color-white);
   display: block;
   padding: var(--spacing-8) 0;
}

.mobile-auth {
   display: flex;
   flex-direction: column;
   gap: var(--spacing-16);
   padding-top: var(--spacing-24);
}

.mobile-get-started-btn {
   background: var(--gradient-orange);
   border-radius: var(--border-radius);
   padding: var(--spacing-12) var(--spacing-24);
   font-size: var(--font-size-body-small);
   color: var(--color-white);
   text-align: center;
   display: block;
}

/* ==========================================================================
   GLOBAL MAIN
   ========================================================================== */
.global-main {
   position: relative;
   z-index: 0;
   overflow-x: hidden;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section-new {
   position: relative;
   width: 100%;
   margin: 0 auto;
   padding: 64px 0;
   overflow: visible;
}

.hero-background-decoration {
   position: absolute;
   right: -17.976px;
   top: 140px;
   width: 1057px;
   height: 719.911px;
   transform: rotate(15deg);
   background: radial-gradient(67.82% 89.62% at 86.97% 105.17%, #4006A7 0%, #621F04 100%);
   opacity: 0.6;
   border-radius: 1057px;
   filter: blur(150px);
   z-index: -1;
}

.hero-container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: var(--max-width-hero);
   gap: var(--spacing-48);
}

.hero-content-left {
   flex: 0 0 448px;
   display: flex;
   flex-direction: column;
   gap: var(--spacing-24);
}

.hero-tags {
   display: flex;
   gap: var(--spacing-8);
}

.hero-chip {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: var(--spacing-8);
   height: 32px;
   padding: 10px 16px 8px 16px;
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.30);
   border-radius: 8px;
   color: var(--color-lavender-gray);
   font-family: var(--font-family-primary);
   font-size: var(--font-size-caption-large);
   font-weight: var(--font-weight-regular);
   line-height: 1;
   letter-spacing: 0.14px;
   text-align: center;
   white-space: nowrap;
   box-sizing: border-box;
}

.hero-title-gradient {
   margin: 0 0 var(--spacing-8);
   font-size: var(--font-size-h4);
   line-height: var(--line-height-h4);
   font-weight: var(--font-weight-book);
   max-width: fit-content;
   background: linear-gradient(96deg, #FFF -10.58%, #7C65A1 123.65%);
   background: var(--gradient-headline-silver-purple);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   background-size: cover;
}

.hero-title-gradient a {
   color: inherit;
   background: inherit;
   -webkit-background-clip: inherit;
   background-clip: inherit;
   -webkit-text-fill-color: inherit;
}

.hero-description {
   margin-bottom: var(--spacing-16);
}

.hero-description p {
   font-size: var(--font-size-body-small);
   line-height: var(--line-height-body-small);
   color: var(--color-paragraphs);
   margin: 0;
}

.hero-authors-section {
   display: flex;
   align-items: center;
   gap: var(--spacing-16);
}

.hero-avatars {
   display: flex;
   align-items: center;
}

.hero-avatar {
   position: relative;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   border: 2px solid var(--color-midnight-navy);
   overflow: hidden;
   margin-right: -8px;
   z-index: 2;
}

.hero-avatar:last-child {
   margin-right: 0;
}

.hero-avatar img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.hero-avatar-fallback {
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--color-dark-navy);
   color: var(--color-white);
   font-weight: var(--font-weight-book);
   font-size: 16px;
}

.hero-author-info {
   flex: 1;
}

.hero-author-names {
   font-size: var(--font-size-body-small);
   font-weight: var(--font-weight-book);
   color: var(--color-white);
   line-height: 1.5;
   margin-bottom: 2px;
}

.hero-publish-info {
   font-size: var(--font-size-caption-small);
   color: var(--color-paragraphs);
   line-height: 1.5;
   letter-spacing: 0.12px;
}

.hero-image-box {
   flex: 0 0 544px;
   height: fit-content;
   background: var(--color-surface);
   border: 1px solid var(--color-surface-border);
   border-radius: var(--border-radius-large);
   padding: var(--spacing-8);
   position: relative;
}

a.hero-image-container,
.hero-image-container,
.hero-image-placeholder {
   width: 100%;
   height: 100%;
    display: flex;
   background: linear-gradient(to bottom, #211a2e 0%, #000000 100%);
   border-radius: var(--border-radius);
   overflow: hidden;
   position: relative;
   border: 1px solid rgba(255, 255, 255, 0.1);
   text-decoration: none;
   box-shadow:
      0px 0.451px 0px 0.901px inset rgba(255, 255, 255, 0.1),
      0px 0px 1.802px 0px rgba(255, 255, 255, 0.19);
}

.hero-image {
   width: 100%;
   height: 100%;
   object-fit: contain;
}

.hero-image-placeholder {
   display: flex;
   align-items: center;
   justify-content: center;
}

.placeholder-nodes {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-template-rows: repeat(3, 1fr);
   gap: var(--spacing-24);
   width: 200px;
   height: 200px;
}

.node-icon {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: var(--color-white);
   position: relative;
   opacity: 0.8;
}

.node-icon::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 24px;
   height: 24px;
   background: var(--color-dark-navy);
   border-radius: 4px;
}

/* ==========================================================================
   EXPLORE SECTION - NEW DESIGN
   ========================================================================== */
.explore-section-new {
   width: 100%;
   padding: var(--spacing-64) 0;
   background: var(--background-primary);
}

.explore-section-new.popular-tags {
   padding-bottom: 0;
}

.explore-inner {
   width: 100%;
   margin: 0 auto;
   max-width: var(--max-width-content);
}

.explore-header {
   text-align: left;
   margin-bottom: 48px;
}

.explore-title-gradient {
   font-family: var(--font-family-primary);
   font-size: var(--font-size-h4);
   font-style: normal;
   font-weight: var(--font-weight-regular);
   line-height: var(--line-height-h4);
   margin-bottom: var(--spacing-16);
   max-width: fit-content;
   background: linear-gradient(96deg, #FFF -10.58%, #7C65A1 123.65%);
   background: var(--gradient-headline-silver-purple);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.explore-filters {
   display: flex;
   justify-content: flex-start;
   width: 100%;
}

.popular-tags-listing {
   display: flex;
   flex-wrap: wrap;
   gap: 12px;
   justify-content: flex-start;
   align-items: center;
   width: 100%;
   margin-bottom: var(--spacing-16);
}

.popular-tags-listing a {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: var(--spacing-8);
   height: 32px;
   padding: 10px 16px 8px 16px;
   background: transparent;
   border: 1px solid rgba(255, 255, 255, 0.30);
   border-radius: 8px;
   color: var(--color-lavender-gray);
   font-family: var(--font-family-primary);
   font-size: var(--font-size-caption-large);
   font-weight: var(--font-weight-regular);
   line-height: 1;
   letter-spacing: 0.14px;
   text-align: center;
   cursor: pointer;
   transition: var(--transition-fast);
   white-space: nowrap;
   box-sizing: border-box;
}

.popular-tags-listing a:hover {
   border-color: rgba(255, 255, 255, 0.5);
   color: var(--color-white);
   transform: translateY(-1px);
}

.popular-tags-listing a.active {
   background: rgba(255, 255, 255, 0.1);
   border-color: rgba(255, 255, 255, 0.6);
   color: var(--color-white);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Legacy explore section (keeping for compatibility) */
.explore-section {
   margin: var(--spacing-48) 0;
   padding: var(--spacing-48) var(--spacing-24);
}

.explore-section h2 {
   font-size: var(--font-size-sub-headline);
   line-height: var(--line-height-sub-headline);
   color: var(--color-white);
   margin-bottom: var(--spacing-32);
   text-align: center;
}

.explore-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: var(--spacing-24);
   margin-top: var(--spacing-32);
}

.explore-card {
   background: var(--color-surface);
   border: 1px solid var(--color-surface-border);
   border-radius: var(--border-radius);
   padding: var(--spacing-32);
   box-shadow: var(--shadow-card);
   transition: var(--transition-fast);
   cursor: pointer;
}

.explore-card:hover {
   transform: translateY(-4px);
   box-shadow: var(--shadow-card-hover);
}

.card-icon {
   width: 48px;
   height: 48px;
   border-radius: 12px;
   background: linear-gradient(135deg, var(--color-dark-navy), var(--color-midnight-navy));
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: var(--spacing-16);
   color: var(--color-white);
}

.explore-card h3 {
   font-size: var(--font-size-body-large);
   line-height: var(--line-height-body-large);
   color: var(--color-white);
   margin-bottom: var(--spacing-8);
   font-weight: var(--font-weight-book);
}

.explore-card p {
   font-size: var(--font-size-body-small);
   line-height: var(--line-height-body-small);
   color: var(--color-paragraphs);
   margin-bottom: var(--spacing-16);
}

.card-tag {
   display: inline-block;
   background: var(--color-lavender-gray);
   color: var(--color-dark-navy);
   padding: var(--spacing-8) var(--spacing-16);
   border-radius: 20px;
   font-size: var(--font-size-caption-small);
   font-weight: var(--font-weight-regular);
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.loop-section {
   padding: 0 var(--spacing-24);
}

.loop-wrap {
   max-width: var(--max-width-content);
   margin: 0 auto;
   display: grid;
}

.posts-grid {
   display: grid;
   grid-template-columns: repeat(6, 1fr);
   gap: var(--spacing-32);
   justify-content: center;
   max-width: var(--max-width-content);
   padding: 64px 0;
}

/* Repeating pattern: 6 small cards + 2 large cards */

/* Small cards pattern: positions 1,2,3,4,5,6 in 8-post cycle */
.posts-grid .item:nth-child(8n+1) { grid-column: 1 / span 2; } /* Posts 1,9,17... */
.posts-grid .item:nth-child(8n+2) { grid-column: 3 / span 2; } /* Posts 2,10,18... */
.posts-grid .item:nth-child(8n+3) { grid-column: 5 / span 2; } /* Posts 3,11,19... */
.posts-grid .item:nth-child(8n+4) { grid-column: 1 / span 2; } /* Posts 4,12,20... */
.posts-grid .item:nth-child(8n+5) { grid-column: 3 / span 2; } /* Posts 5,13,21... */
.posts-grid .item:nth-child(8n+6) { grid-column: 5 / span 2; } /* Posts 6,14,22... */

/* Large cards pattern: positions 7,8 in 8-post cycle */
.posts-grid .item:nth-child(8n+7) { grid-column: 1 / span 3; } /* Posts 7,15,23... */
.posts-grid .item:nth-child(8n+8) { grid-column: 4 / span 3; } /* Posts 8,16,24... */

.item:not(.hero-section-new) {
   background: var(--color-dark-navy);
   border: 1px solid rgba(255, 255, 255, 0.07);
   border-radius: 16px;
   overflow: hidden;
   transition: var(--transition-fast);
   position: relative;
}

/* All cards let grid determine width */
.posts-grid .item {
   width: 100%;
}

.item:not(.hero-section-new):hover {
   transform: translateY(-2px);
   box-shadow: var(--shadow-card);
}

.item-container {
   display: flex;
   flex-direction: column;
   height: 100%;
}

a.item-image,
.item-image {
   width: 100%;
   height: 200px;
   overflow: hidden;
   background: rgba(255, 255, 255, 0.1);
   display: block;
   text-decoration: none;
}

.item-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: var(--transition-medium);
}

.item:hover .item-image img {
   transform: scale(1.05);
}

.item-content {
   padding: var(--spacing-32);
   flex: 1;
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.item-title {
   font-size: var(--font-size-sub-headline);
   line-height: var(--line-height-body-large);
   color: rgba(248, 248, 248, 0.95);
   margin: 0;
   font-weight: var(--font-weight-book);
   font-family: var(--font-family-primary);
}

/* Typography adjustments - repeating 8-post cycle */
/* First row of each cycle (posts 1,2,3): 24px titles */
.posts-grid .item:nth-child(8n+1) .item-title,
.posts-grid .item:nth-child(8n+2) .item-title,
.posts-grid .item:nth-child(8n+3) .item-title {
   font-size: var(--font-size-sub-headline); /* 24px */
   font-weight: var(--font-weight-book);
}

/* Second row + large cards (posts 4,5,6,7,8): 20px titles */
.posts-grid .item:nth-child(8n+4) .item-title,
.posts-grid .item:nth-child(8n+5) .item-title,
.posts-grid .item:nth-child(8n+6) .item-title,
.posts-grid .item:nth-child(8n+7) .item-title,
.posts-grid .item:nth-child(8n+8) .item-title {
   font-size: var(--font-size-body-large); /* 20px */
   font-weight: var(--font-weight-regular);
}

.item-title a {
   color: inherit;
}

.item-excerpt {
   font-size: var(--font-size-body-small);
   color: var(--color-paragraphs);
   margin-bottom: var(--spacing-16);
   flex: 1;
}

.item-meta {
   font-size: var(--font-size-body-small);
   color: var(--color-paragraphs);
   opacity: 0.55;
   font-weight: var(--font-weight-regular);
   font-family: var(--font-family-primary);
   margin: 0;
}

.item-tags {
   margin: 0;
   display: flex;
   gap: var(--spacing-8);
   flex-wrap: wrap;
}

.item-tags span,
.item-tags a {
   position: relative;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: transparent;
   border: none;
   color: var(--color-lavender-gray);
   height: 32px;
   padding: 10px var(--spacing-16) var(--spacing-8) var(--spacing-16);
   border-radius: var(--border-radius);
   font-size: var(--font-size-caption-large);
   font-weight: var(--font-weight-regular);
   font-family: var(--font-family-primary);
   line-height: 1;
   letter-spacing: 0.14px;
   text-decoration: none;
   text-align: center;
   white-space: nowrap;
   transition: var(--transition-fast);
   box-sizing: border-box;
}

.item-tags span::after,
.item-tags a::after {
   content: '';
   position: absolute;
   inset: 0;
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: var(--border-radius);
   pointer-events: none;
}
}

/* Ghost Template Classes */
.global-link {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
}

/* Pagination */
.pagination {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: var(--spacing-16);
   padding: var(--spacing-48) 0;
}

.pagination a,
.pagination span {
   display: inline-block;
   padding: var(--spacing-8) var(--spacing-16);
   border-radius: var(--border-radius);
   color: var(--color-paragraphs);
   transition: var(--transition-fast);
}

.pagination a:hover,
.pagination .current {
   background: var(--color-surface);
   color: var(--color-white);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-section {
   margin-top: var(--spacing-64);
   padding: var(--spacing-48) var(--spacing-24);
   border-top: 1px solid var(--color-dark-blue-3);
}

.footer-content {
   max-width: var(--max-width-content);
   margin: 0 auto;
   text-align: center;
}

.footer-content p {
   color: var(--color-paragraphs);
   font-size: var(--font-size-caption-large);
}

/* ==========================================================================
   PAGINATION & LOAD MORE
   ========================================================================== */
.pagination-section {
   display: flex;
   justify-content: center;
   padding: 0 0 var(--spacing-48) 0;
}

.pagination-wrap {
   position: relative;
}

.global-button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 16px 24px;
   background: var(--gradient-orange);
   border: none;
   border-radius: 8px;
   color: var(--color-white);
   font-family: var(--font-family-primary);
   font-size: var(--font-size-button-large);
   font-weight: var(--font-weight-book);
   line-height: 1;
   cursor: pointer;
   transition: var(--transition-fast);
   box-shadow: 0px 1px 2px 0px rgba(8, 8, 8, 0.2),
               0px 4px 4px 0px rgba(8, 8, 8, 0.08),
               0px 7px 0px -12px #077ac7;
   position: relative;
}

.global-button::before {
   content: '';
   position: absolute;
   inset: 0;
   border-radius: 8px;
   background: transparent;
   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
   pointer-events: none;
}

.content-banner {
    background-size: contain !important;
}

/* Override content-banner white background on before/after */
.content-banner--centered .global-button::before,
.content-banner--centered .global-button::after {
   background: transparent !important;
}

/* Override content-banner button styles - ensure white text and no border */
.content-banner--centered .global-button.blog-banner-community {
   color: var(--color-white) !important;
   border: none !important;
}

.global-button:hover {
   transform: translateY(-1px);
   box-shadow: 0px 2px 4px 0px rgba(8, 8, 8, 0.3),
               0px 6px 8px 0px rgba(8, 8, 8, 0.12),
               0px 7px 0px -12px #077ac7;
}

/* Secondary Blue Button - matches Figma design */
.global-button-secondary-blue {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: var(--spacing-8);
   padding: var(--spacing-16) var(--spacing-24);
   --bg-color-1: hsla(0, 0%, 100%, 0);
   --bg-color-2: hsla(0, 0%, 100%, 0);
   --bg-color-3: #077ac7;
   --bg-color-4: #6b21ef;
   background: linear-gradient(to bottom, var(--bg-color-1), var(--bg-color-2)), linear-gradient(141deg, var(--bg-color-3), var(--bg-color-4));
   border: none;
   border-radius: var(--border-radius);
   color: var(--color-white);
   font-family: var(--font-family-primary);
   font-size: var(--font-size-button-large);
   font-weight: var(--font-weight-book);
   line-height: var(--line-height-button);
   cursor: pointer;
   box-shadow: inset 0 1px 1px #fff3, 0 1px 2px #08080833, 0 4px 4px #08080814, 0 7px 0 -12px #077ac7, inset 0 6px 12px #ffffff1f;
   transition-duration: .4s, .3s, .3s, .3s, .3s;
   transition-property: box-shadow, --bg-color-1, --bg-color-2, --bg-color-3, --bg-color-4;
   transition-timing-function: cubic-bezier(.25,.46,.45,.94), linear, linear, linear, linear;
   position: relative;
}

.global-button-secondary-blue:hover {
   --bg-color-1: hsla(0, 0%, 100%, .1);
   --bg-color-2: hsla(0, 0%, 100%, 0);
   color: var(--color-white);
   transition-duration: .4s, .3s, .3s, .3s, .3s;
   transition-property: box-shadow, --bg-color-1, --bg-color-2, --bg-color-3, --bg-color-4;
   transition-timing-function: cubic-bezier(.25,.46,.45,.94), linear, linear, linear, linear;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet */
@media (max-width: 1054px) {
   .header-navigation,
   .github-badge {
      display: none;
   }
   
   .mobile-menu-toggle {
      display: block;
   }
   
   .hero-section-new {
      padding: 64px var(--spacing-24);
   }
   
   .hero-container {
      flex-direction: column;
      gap: var(--spacing-32);
   }
   
   .hero-content-left {
      flex: none;
      width: 100%;
      max-width: 600px;
   }
   
   .hero-image-box {
      flex: none;
      width: 100%;
      max-width: 500px;
   }
   
   .hero-background-decoration {
      top: 80px;
      right: 0;
      left: 100%;
      transform: rotate(15deg);
      width: 100vw;
      max-width: 390px;
   }
   
   .explore-cards {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   }
}

/* Mobile */
@media (max-width: 768px) {
   .container {
      padding: 0 var(--spacing-16);
   }
   
   .header-section {
      padding: var(--spacing-8) var(--spacing-16);
   }
   
   .header-navbar {
      padding: var(--spacing-12) var(--spacing-16);
       height: 64px;
   }
   
   .header-right {
      gap: var(--spacing-16);
   }
   
   .sign-in-link {
      display: none;
   }
   
   .hero-section-new {
      padding: 64px var(--spacing-16);
   }
   
   .hero-title-gradient {
      font-size: 32px;
   }

   .hero-image-box {
      height: fit-content;
      width: fit-content;
   }

   .hero-tags {
       justify-content: center;
       text-align: center;
   }

   .hero-title-gradient {
       justify-content: center;
       text-align: center;
       margin: 0 auto;
   }

   .hero-description {
       justify-content: center;
       text-align: center;
       margin: 0 auto;
   }

   .hero-authors-section {

       justify-content: center;
       text-align: center;
       margin: 0 auto;
   }

   .hero-avatar {
       justify-content: center;
       text-align: center;
       margin-right: auto;
       margin-left: auto;
   }

   .hero-avatars {
       margin: 0 auto;
   }

   .hero-section-new {
       padding-top: 0;
   }


   .hero-authors-section {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--spacing-12);
   }
   
   .explore-section {
      padding: var(--spacing-32) var(--spacing-16);
   }
   
   .explore-cards {
      grid-template-columns: 1fr;
      gap: var(--spacing-16);
   }
   
   .loop-section {
      padding: 0 var(--spacing-16);
   }
   
   .loop-wrap > div {
      grid-template-columns: 1fr;
      gap: var(--spacing-24);
   }

   .posts-grid {
       grid-template-columns: repeat(1, 1fr);
       padding: 48px 0;
   }

    /* Small cards pattern: positions 1,2,3,4,5,6 in 8-post cycle */
    .posts-grid .item:nth-child(8n+1) { grid-column: 1 } /* Posts 1,9,17... */
    .posts-grid .item:nth-child(8n+2) { grid-column: 1 } /* Posts 2,10,18... */
    .posts-grid .item:nth-child(8n+3) { grid-column: 1 } /* Posts 3,11,19... */
    .posts-grid .item:nth-child(8n+4) { grid-column: 1 } /* Posts 4,12,20... */
    .posts-grid .item:nth-child(8n+5) { grid-column: 1 } /* Posts 5,13,21... */
    .posts-grid .item:nth-child(8n+6) { grid-column: 1 } /* Posts 6,14,22... */

    /* Large cards pattern: positions 7,8 in 8-post cycle */
    .posts-grid .item:nth-child(8n+7) { grid-column: 1 } /* Posts 7,15,23... */
    .posts-grid .item:nth-child(8n+8) { grid-column: 1 } /* Posts 8,16,24... */
   
   .item:not(.hero-section-new) {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
   }
   
   .footer-section {
      padding: var(--spacing-32) var(--spacing-16);
   }
   
   /* New explore section responsive - tablet */
   .explore-section-new {
      padding: 60px 0;
   }

   .explore-section-new.popular-tags {
      padding-bottom: 0;
   }
   
   .explore-inner {
      padding: 0 16px;
   }
   
   .explore-title-gradient {
      font-size: 36px;
   }
   
   .explore-header {
      margin-bottom: 32px;
   }
   
   .filter-chips {
      gap: 8px;
      max-width: none;
   }
   
   .filter-chip {
      padding: 10px 16px;
      font-size: 13px;
   }
}

/* Small Mobile */
@media (max-width: 480px) {
   .hero-title-gradient {
      font-size: 28px;
   }
   
   /* New explore section responsive - mobile */
   .explore-title-gradient {
      font-size: 28px;
   }
   
   .filter-chip {
      padding: 8px 12px;
      font-size: 12px;
   }
   
   .explore-card {
      padding: var(--spacing-24);
   }
   
   .item-content {
      padding: var(--spacing-16);
   }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.sr-only {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
}

.hidden {
   display: none;
}

/* Progress bar for reading progress */
.post-progress {
   position: fixed;
   z-index: 90;
   top: 0;
   right: 0;
   left: 0;
   width: 100%;
   height: 2px;
   transition: opacity 0.15s ease-out 0.3s;
   border: none;
   outline: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

.post-progress:not([value]) {
   display: none;
}

.post-progress,
.post-progress[value]::-webkit-progress-bar {
   background-color: transparent;
}

.post-progress[value]::-webkit-progress-value,
.post-progress[value]::-moz-progress-bar {
   background: linear-gradient(90deg, #FF6B35 0%, #9269FF 50%, #4B8BF5 100%);
}

.post-progress[value='1'] {
   opacity: 0;
}

/* Ghost notification messages */
.global-notification {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	max-width: 400px;
	opacity: 0;
	transform: translateX(100%);
	transition: all 0.3s ease;
	pointer-events: none;
}

.global-notification.is-subscribe,
.global-notification.is-signin,
.global-notification.is-signup,
.global-notification.is-expired,
.global-notification.is-checkout-success {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.global-notification > div {
	display: none;
	background: #ffffff;
	color: #1e1e1e;
	padding: 16px 20px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	border-left: 4px solid #22c55e;
	font-family: var(--font-family-sans);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 8px;
}

.global-notification.is-subscribe .subscribe,
.global-notification.is-signin .signin,
.global-notification.is-signup .signup,
.global-notification.is-checkout-success .checkout-success {
	display: block;
	border-left-color: #22c55e;
}

.global-notification.is-expired .expired {
	display: block;
	border-left-color: #ef4444;
	background: #fef2f2;
	color: #dc2626;
}

/* Responsive notifications */
@media (max-width: 768px) {
	.global-notification {
		top: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
	}
	
	.global-notification > div {
		padding: 14px 16px;
		font-size: 13px;
	}
}

/* Add close button functionality */
.global-notification > div {
	position: relative;
	cursor: pointer;
}

/* Disable hover effects on notifications to prevent background flashing */

/* ==========================================================================
   SUBFOOTER
   ========================================================================== */
/* Subfooter Styles */
.sub-footer {
	padding: 44px var(--spacing-16) !important;
	color: #ffffff;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-footer-container {
	width: 100%;
	margin: 0 auto;
}

.sub-footer .footer-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: var(--spacing-16);
	max-width: 1230px;
    margin: 0 auto var(--spacing-48) auto;
    padding: 0;
}




.sub-footer .footer-columns > div {
	flex: 1;
	min-width: 200px;
	max-width: calc(20% - var(--spacing-4));
    margin: 0 auto;
}

.sub-footer .column-name {
	font-family: 'Geomanist', var(--font-family-sans);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
	color: #ffffff;
	margin-bottom: 12px;
}

.sub-footer .col-links {
	list-style: none;
	padding: 0;
	margin: 0;
	opacity: 0.66;
}

.sub-footer .col-links li {
	margin-bottom: 6px;
}

.sub-footer .footer-link {
	font-family: 'Geomanist', var(--font-family-sans);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: #e4e4e4;
	opacity: 0.65;
	text-decoration: none;
	transition: opacity 0.2s ease;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: block;
	max-width: 233px;
}

.sub-footer .footer-link:hover {
	opacity: 1;
}

.sub-footer .hidden-link {
	display: none;
}

.sub-footer.sub-footer--full .hidden-link {
	display: block;
}

.sub-footer .bottom-link {
	margin-top: var(--spacing-16);
	opacity: 0.65;
}

.sub-footer .bottom-link .footer-link {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-4);
	font-weight: 400;
	color: #e4e4e4;
	opacity: 1;
	max-width: none;
}

.sub-footer .bottom-link svg {
	width: 7px;
	height: 7px;
	transition: transform 0.2s ease;
}

.sub-footer .bottom-link:hover svg {
	transform: translate(2px, -2px);
}

.sub-footer .footer-link--more {
	position: relative;
	background: none;
	border: none;
	padding: 0;
	margin-top: var(--spacing-8);
	cursor: pointer;
	font-family: 'Geomanist', var(--font-family-sans);
	font-size: 14px;
	font-weight: 400;
	color: #e4e4e4;
	opacity: 0.65;
	transition: opacity 0.2s ease;
	text-decoration: underline;
	text-underline-offset: 1px;
}

.sub-footer .footer-link--more:before {
	content: 'Show more';
}

.sub-footer.sub-footer--full .footer-link--more:before {
	content: 'Show less';
}

.sub-footer .footer-link--more:hover {
	opacity: 1;
}

/* Responsive for subfooter */
@media (max-width: 1280px) {
	.sub-footer .footer-columns {
		padding: 0 var(--spacing-32);
        grid-template-columns: 1fr 1fr 1fr;
	}

    .nav-list {
        gap: var(--spacing-24);
    }
}

@media (max-width: 1024px) {
	.sub-footer .footer-columns {
		gap: var(--spacing-24);
		padding: 0 var(--spacing-24);
        grid-template-columns: 1fr 1fr;
	}

	.sub-footer .footer-columns > div {
		flex: 1;
		min-width: 300px;
		max-width: calc(50% - var(--spacing-12));
	}
}

@media (max-width: 768px) {
	.sub-footer .footer-columns {
		gap: var(--spacing-16);
		padding: 0 var(--spacing-16);
		justify-content: center;
		text-align: center;
	}

	.sub-footer .footer-columns > div {
		flex: 1;
		min-width: 250px;
		max-width: calc(50% - var(--spacing-8));
	}

	.sub-footer {
		padding: var(--spacing-48) var(--spacing-16);
	}

	.sub-footer .footer-link {
		max-width: none;
	}

	.sub-footer .column-name {
		text-align: center;
		margin-bottom: var(--spacing-16);
	}

	.sub-footer .col-links {
		text-align: center;
	}

	.sub-footer .bottom-link {
		text-align: center;
	}
}

@media (max-width: 1160px) {
    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }
}

@media (max-width: 480px) {
	.sub-footer .footer-columns {
		flex-direction: column;
		align-items: center;
		gap: var(--spacing-32);
		text-align: center;
		max-width: 400px;
		margin: 0 auto;
	}

	.sub-footer .footer-columns > div {
		flex: 1 1 100%;
		min-width: auto;
		max-width: 100%;
	}

	.sub-footer {
		padding: var(--spacing-32) var(--spacing-16);
	}

	.sub-footer .column-name {
		font-size: 18px;
		margin-bottom: var(--spacing-16);
		text-align: center;
	}

	.sub-footer .col-links {
		margin-bottom: var(--spacing-24);
	}

	.sub-footer .col-links li {
		margin-bottom: var(--spacing-8);
	}

	.sub-footer .footer-link {
		text-align: center;
		white-space: normal;
		display: inline-block;
		font-size: 15px;
		line-height: 1.4;
	}

	.sub-footer .bottom-link {
		margin-top: var(--spacing-12);
		text-align: center;
	}

	.sub-footer .footer-link--more {
		display: block;
		text-align: center;
		margin-top: var(--spacing-12);
	}
}

/* ==========================================================================
   BLOG FOOTER
   ========================================================================== */
.blog-footer {
   color: #ffffff;
}

.blog-footer-container {
   max-width: 1230px;
   margin: 0 auto;
   padding: 0 105px;
}

/* Integrations Columns */
.footer-columns {
   display: flex;
   gap: var(--spacing-16);
   justify-content: center;
   margin-bottom: var(--spacing-48);
   padding: 0 var(--spacing-48);
}


.footer-column {
   display: flex;
   flex-direction: column;
   gap: var(--spacing-12);
   flex: 1;
   max-width: 233px;
}

.footer-column-title {
   font-family: var(--font-family-primary);
   font-size: var(--font-size-body-small);
   font-weight: var(--font-weight-book);
   line-height: 1.5;
   color: var(--color-white);
   margin: 0;
}

.footer-column-links {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 6px;
   opacity: 0.66;
}

.footer-column-links li a {
   font-family: var(--font-family-primary);
   font-size: var(--font-size-caption-large);
   font-weight: var(--font-weight-regular);
   line-height: 1.5;
   color: var(--color-soft-gray);
   text-decoration: none;
   opacity: 0.65;
   transition: var(--transition-fast);
}

.footer-column-links li a:hover {
   opacity: 1;
}

.footer-show-more {
   background: none;
   border: none;
   font-family: var(--font-family-primary);
   font-size: var(--font-size-caption-large);
   font-weight: var(--font-weight-regular);
   line-height: 1.5;
   color: var(--color-soft-gray);
   text-align: left;
   cursor: pointer;
   padding: 0;
   opacity: 0.65;
   text-decoration: underline;
   transition: var(--transition-fast);
}

.footer-show-more:hover {
   opacity: 1;
}

/* Hidden links functionality */
.footer-hidden-link {
   display: none;
}

.footer-show-more-container {
   margin-top: var(--spacing-8);
}

.footer-show-less {
   background: none;
   border: none;
   font-family: var(--font-family-primary);
   font-size: var(--font-size-caption-large);
   font-weight: var(--font-weight-regular);
   line-height: 1.5;
   color: var(--color-soft-gray);
   text-align: left;
   cursor: pointer;
   padding: 0;
   opacity: 0.65;
   text-decoration: underline;
   transition: var(--transition-fast);
}

.footer-show-less:hover {
   opacity: 1;
}

/* Brand Section */
.footer-brand {
   display: flex;
   gap: var(--spacing-64);
   align-items: flex-start;
   justify-content: space-between;
   max-width: 1230px;
   margin: 0 auto;
   padding: var(--spacing-48) 0;
}

.footer-brand-left {
   display: flex;
   flex-direction: column;
   gap: var(--spacing-20, 20px);
   max-width: 280px;
}

.footer-logo {
   height: 30px;
}

.footer-logo a {
   display: inline-block;
}

.footer-logo img {
   height: 30px;
   width: auto;
}

.footer-tagline {
   font-family: var(--font-family-primary);
   font-size: var(--font-size-body-small);
   font-weight: var(--font-weight-book);
   line-height: 1.5;
   color: var(--color-soft-gray);
   margin: 20px 0;
}

.footer-social {
   display: flex;
   gap: var(--spacing-16);
   align-items: center;
}

.footer-social a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 24px;
   height: 24px;
   opacity: 0.6;
   transition: var(--transition-fast);
}

.footer-social a:hover {
   opacity: 1;
}

.footer-social svg {
   width: 24px;
   height: 24px;
   fill: currentColor;
}

.footer-brand-right {
   flex: 1;
   display: flex;
   flex-wrap: wrap;
   gap: 0;
   align-items: flex-start;
   justify-content: flex-end;
}

.footer-primary-links {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   gap: 0;
   align-items: flex-start;
}

.footer-primary-links li {
   padding: 0 10px 10px 10px;
   width: 257.33px;
   box-sizing: border-box;
}

.footer-primary-links li a {
   font-family: 'Geomanist', var(--font-family-sans);
   font-size: 16px;
   font-weight: 400;
   line-height: 1.5;
   color: #c4bbd3;
   text-decoration: none;
   transition: var(--transition-fast);
   display: block;
   max-width: 280px;
}

.footer-primary-links li a:hover {
   color: var(--color-white);
}

/* Bottom Section */
.footer-bottom {
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 1230px;
   margin: 0 auto;
   padding: var(--spacing-48) 0;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
   display: flex;
   align-items: center;
   gap: var(--spacing-8);
}

.footer-legal a {
   font-family: var(--font-family-primary);
   font-size: var(--font-size-body-small);
   font-weight: var(--font-weight-regular);
   line-height: 1.5;
   color: var(--color-soft-gray);
   text-decoration: none;
   transition: var(--transition-fast);
}

.footer-legal a:hover {
   color: var(--color-white);
}

.footer-separator {
   font-family: var(--font-family-primary);
   font-size: var(--font-size-body-small);
   font-weight: var(--font-weight-book);
   line-height: 1.5;
   color: var(--color-soft-gray);
}

.footer-copyright {
   display: flex;
   align-items: center;
   justify-content: center;
}

.footer-copyright p {
   font-family: var(--font-family-primary);
   font-size: var(--font-size-body-small);
   font-weight: var(--font-weight-book);
   line-height: 1.5;
   color: var(--color-soft-gray);
   margin: 0;
   text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
   .footer-columns {
      flex-wrap: wrap;
      gap: var(--spacing-24);
      padding: 0 var(--spacing-16);
   }
   
   .footer-column {
      flex: 0 0 calc(50% - var(--spacing-12));
      max-width: none;
   }
   
   .footer-brand {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: var(--spacing-32);
      padding: var(--spacing-32) 0;
   }

   .footer-brand-left {
      align-items: center;
      text-align: center;
   }

   .footer-brand-right {
      width: 100%;
      justify-content: center;
   }
}

@media (max-width: 768px) {
   .blog-footer-container {
      padding: 0 var(--spacing-16);
   }
   
   .footer-columns {
      flex-direction: column;
      gap: var(--spacing-32);
   }
   
   .footer-column {
      flex: none;
      max-width: none;
   }
   
   .footer-bottom {
      flex-direction: column;
      gap: var(--spacing-16);
      text-align: center;
   }
   
   .footer-legal {
      flex-wrap: wrap;
      justify-content: center;
   }


   .footer-link--more {
       margin: 0 auto;
       width: 100%;
   }

   .footer-primary-links {
       justify-content: center;
       flex-direction: column;
   }
}

/* ==========================================================================
   25. BLOG POST HERO SECTION
   ========================================================================== */
.post-hero-section {
	padding: 140px 160px 64px;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}


.post-hero-container {
	max-width: var(--max-width-hero);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--spacing-48);
}

.post-hero-content {
	flex: 0 0 448px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.post-hero-tags {
	display: flex;
	gap: 8px;
}

.post-hero-chip {
	padding: 10px 16px 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	font-family: var(--font-family-primary);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: var(--color-paragraphs);
	text-align: center;
	white-space: nowrap;
}

.post-hero-copy {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.post-hero-header {
	width: 100%;
}

.post-hero-title {
	font-family: var(--font-family-primary);
	font-size: 38px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--color-paragraphs);
	background: linear-gradient(135deg, #C4BBD3 0%, #9D92A8 50%, #C4BBD3 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.post-hero-subheader {
	width: 100%;
}

.post-hero-subheader p {
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-paragraphs);
}

.post-hero-authors {
	display: flex;
	gap: 16px;
	align-items: center;
}

.post-hero-avatars {
	display: flex;
	margin-right: -8px;
}

.post-hero-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid var(--color-midnight-navy);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: -8px;
	position: relative;
	z-index: 2;
}

.post-hero-avatar:first-child {
	z-index: 3;
}

.post-hero-author-info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-left: 12px;
}

.post-hero-author-name {
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
}

.post-hero-author-name a {
	color: var(--color-white);
	text-decoration: none;
}

.post-hero-author-meta {
	font-family: var(--font-family-primary);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-paragraphs);
	letter-spacing: 0.12px;
}

.post-hero-node-box {
	flex: 0 0 544px;
	height: 360px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 8px;
	box-sizing: border-box;
}

.post-hero-image-wrapper {
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #211a2e, #000000);
	border-radius: 8px;
	border: 1px solid #000000;
	box-shadow: 0px 0px 1.802px 0px rgba(255, 255, 255, 0.19),
	            0px 0.451px 0px 0.901px inset rgba(255, 255, 255, 0.1);
	padding: 1px;
	box-sizing: border-box;
}

.post-hero-image {
	width: 100%;
	height: 100%;
	border-radius: 7px;
	object-fit: cover;
	object-position: center;
}

/* Post Article Content Area */
.post-article {
	padding: 64px 16px;
	box-sizing: border-box;
}

.post-content-wrapper {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.post-content {
	width: 100%;
	max-width: 700px;
	text-align: left;
}

/* Main heading (H1) with gradient text */
.post-content h1 {
	font-family: var(--font-family-primary);
	font-size: 42px;
	font-weight: 400;
	line-height: 1.1;
	margin: 72px 0 32px 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 35.33%),
	            linear-gradient(139.215deg, rgb(255, 255, 255) 10.576%, rgb(124, 101, 161) 123.65%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 100% 100%;
	max-width: fit-content;
}

.post-content h1:first-child {
	margin-top: 0;
}

/* Major section headings (H2) with gradient text */
.post-content h2 {
	font-family: var(--font-family-primary);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.1;
	margin: 64px 0 28px 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 35.33%),
	            linear-gradient(139.215deg, rgb(255, 255, 255) 10.576%, rgb(124, 101, 161) 123.65%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 100% 100%;
	max-width: fit-content;
}

.post-content h2:first-child {
	margin-top: 0;
}

/* Section headings (H3) */
.post-content h3 {
	font-family: var(--font-family-primary);
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 48px 0 24px 0;
	width: 100%;
}

/* Subsection headings (H4) */
.post-content h4 {
	font-family: var(--font-family-primary);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-white);
	margin: 40px 0 20px 0;
	width: 100%;
}

/* Smaller headings (H5) */
.post-content h5 {
	font-family: var(--font-family-primary);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-white);
	margin: 32px 0 16px 0;
	width: 100%;
}

/* Body paragraphs */
.post-content p {
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-paragraphs);
	margin: 0 0 24px 0;
	width: 100%;
}

/* Blockquote styling for quotes */
.post-content blockquote {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	padding: 16px;
	margin: 24px 0;
	position: relative;
	display: flex;
	gap: 12px;
}

.post-content blockquote::before {
	content: '';
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 26L10 16H4V6H14V16L11 26H7Z' fill='%239269FF'/%3E%3Cpath d='M21 26L24 16H18V6H28V16L25 26H21Z' fill='%239269FF'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

.post-content blockquote p {
	font-style: italic;
	margin: 0;
	flex: 1;
}

/* Links in content */
.post-content a {
	color: var(--color-white);
	text-decoration: underline;
	text-underline-position: from-font;
}

.post-content a:hover {
	opacity: 0.8;
}

/* Inset/Callout blocks */
.post-content .inset,
.post-content .callout {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: 24px;
	margin: 48px 0;
}

.post-content .inset p,
.post-content .callout p {
	margin-bottom: 16px;
}

.post-content .inset p:last-child,
.post-content .callout p:last-child {
	margin-bottom: 0;
}

/* Tables */
.post-content table {
	font-size: 14px;
	display: inline-block;
	width: 100%;
	max-width: 100%;
	border-spacing: 0;
	border-collapse: collapse;
	text-align: left;
	overflow-x: auto;
	white-space: nowrap;
	margin: 40px 0;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.post-content table th,
.post-content table td {
	padding: 20px 24px;
	text-align: left;
	font-family: var(--font-family-primary);
	font-size: 15px;
	line-height: 1.5;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	vertical-align: top;
}

.post-content table th {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-weight: 600;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.post-content table td {
	color: rgba(255, 255, 255, 0.85);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Table links styling */
.post-content table a {
	color: #ff6d6d;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
	border-bottom: 1px solid rgba(255, 109, 109, 0.3);
}

.post-content table a:hover {
	color: #ff5252;
	border-bottom-color: #ff5252;
	transform: translateY(-1px);
}

.post-content table th:last-child,
.post-content table td:last-child {
	border-right: none;
}

.post-content table tr:last-child td {
	border-bottom: none;
}

/* Media blocks with captions */
.post-content .media-block,
.post-content figure {
	margin: 48px 0;
}

.post-content .media-block img,
.post-content figure img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.post-content .media-caption,
.post-content figcaption {
	font-family: var(--font-family-primary);
	font-size: 14px;
	line-height: 1.3;
	color: var(--color-darker-gray);
	text-align: center;
	margin-top: 12px;
	font-style: italic;
}

/* FAQ Blocks */
.post-content .faq-block {
	margin: 48px 0;
}

/* Ghost Toggle Cards */
.kg-card.kg-toggle-card {
	padding: 0;
}

.kg-toggle-heading {
	padding: 1.2rem;
	justify-content: space-between;
	width: 100%;
}

.kg-toggle-card-icon svg {
	color: #C4BBD3 !important;
}

.kg-toggle-content {
	padding: 0 1.2rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.kg-toggle-card[data-kg-toggle-state="open"] .kg-toggle-content {
	padding: 0 1.2rem 1.2rem 1.2rem;
	max-height: 1000px;
}

.post-content .faq-item {
	background: none;
	border: none;
	border-radius: 0;
	margin-bottom: 0;
	overflow: hidden;
	position: relative;
}

.post-content .faq-item::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 32px;
	right: 32px;
	height: 1px;
	background: #4a4554;
}

.post-content .faq-item:last-child::after {
	display: none;
}

.post-content .faq-question {
	font-family: 'Geomanist', var(--font-family-primary);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	color: #ffffff;
	padding: 16px 32px;
	margin: 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	letter-spacing: -0.2px;
	gap: 16px;
}

.post-content .faq-question:hover {
	background: none;
}

.post-content .faq-question .faq-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-content .faq-question .faq-icon::before {
	content: '+';
	font-size: 18px;
	color: #ffffff;
	line-height: 1;
}

.post-content .faq-answer {
	padding: 0 32px 16px 32px;
	border-top: none;
	background: none;
}

.post-content .faq-answer p {
	margin: 0;
	color: #c4bbd3;
	font-size: 16px;
	line-height: 1.5;
}

/* CTA Banner */
.post-content .cta-banner {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(146, 105, 255, 0.1) 100%);
	border: 1px solid rgba(255, 107, 53, 0.2);
	border-radius: 16px;
	padding: 32px;
	margin: 48px 0;
	text-align: center;
}

.post-content .cta-banner h3 {
	font-family: var(--font-family-primary);
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-white);
	margin: 0 0 16px 0;
}

.post-content .cta-banner p {
	font-size: 16px;
	color: var(--color-paragraphs);
	margin: 0 0 24px 0;
}

.post-content .cta-banner .cta-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--gradient-orange);
	color: var(--color-white);
	text-decoration: none;
	border-radius: 8px;
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-weight: 600;
	transition: var(--transition-fast);
}

.post-content .cta-banner .cta-button:hover {
	transform: translateY(-1px);
	box-shadow: var(--shadow-button);
}

/* Lists */
.post-content ul,
.post-content ol {
	margin: 24px 0;
	padding-left: 24px;
	width: 100%;
}

.post-content ul {
	list-style: disc;
}

.post-content ol {
	list-style: decimal;
}

/* Nested lists - reduced margin */
.post-content li > ul,
.post-content li > ol {
	margin: 8px 0;
}

/* Nested unordered lists - different bullet styles */
.post-content ul ul {
	list-style: circle;
}

.post-content ul ul ul {
	list-style: square;
}

/* Nested ordered lists - different numbering styles */
.post-content ol ol {
	list-style: lower-alpha; /* a, b, c */
}

.post-content ol ol ol {
	list-style: lower-roman; /* i, ii, iii */
}

.post-content li {
	font-family: var(--font-family-primary);
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-paragraphs);
	margin-bottom: 8px;
}

.post-content li:last-child {
	margin-bottom: 0;
}

/* Code blocks */
.post-content pre,
.post-content code {
	font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
}

.post-content pre {
	padding: 20px;
	margin: 24px 0;
	overflow-x: auto;
	color: var(--color-white);
	font-size: 14px;
	line-height: 1.4;
}

.post-content code {
	padding: 2px 6px;
	font-size: 14px;
	color: var(--color-white);
}

.post-content pre code {
	padding: 0;
	background: none;
	border: none;
}

/* Large tablet styles for post hero */
@media (max-width: 1200px) {
	.post-hero-section {
		padding: 120px 32px 64px;
	}
}

/* Tablet styles for post hero - column layout */
@media (max-width: 1054px) {
	.post-hero-section {
		padding: 120px 24px 64px;
	}

	.post-hero-container {
		flex-direction: column;
		gap: var(--spacing-48);
		align-items: center;
	}

	.post-hero-content {
		flex: none;
		width: 100%;
		max-width: 600px;
		text-align: center;
	}

	.post-hero-node-box {
		flex: none;
		width: 100%;
		max-width: 600px;
	}


	.post-hero-tags {
		justify-content: center;
	}

	.post-hero-authors {
		justify-content: center;
	}
}

/* Mobile styles for post hero */
@media (max-width: 768px) {
	.post-hero-section {
		padding: 100px 16px 48px;
	}


	.post-hero-container {
		flex-direction: column;
		gap: var(--spacing-32);
	}

	.post-hero-content {
		flex: none;
		width: 100%;
	}

	.post-hero-node-box {
		flex: none;
		width: 100%;
		height: 240px;
	}

	.post-hero-title {
		font-size: 28px;
	}

	.post-content h1 {
		font-size: 32px;
		margin: 48px 0 24px 0;
	}

	.post-content h1:first-child {
		margin-top: 0;
	}

	.post-content h2 {
		font-size: 26px;
		margin: 40px 0 20px 0;
	}

	.post-content h2:first-child {
		margin-top: 0;
	}

	.post-content h3 {
		font-size: 22px;
		margin: 36px 0 18px 0;
	}

	.post-content h4 {
		font-size: 20px;
		margin: 32px 0 16px 0;
	}

	.post-content h5 {
		font-size: 16px;
		margin: 24px 0 12px 0;
	}

	.post-article {
		padding: 48px 16px;
	}

	.post-content table {
		font-size: 13px;
		margin: 32px 0;
		border-radius: 12px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
		display: block !important;
		width: auto;
		max-width: calc(100vw - 32px);
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch;
		white-space: nowrap;
	}

	.post-content table th,
	.post-content table td {
		padding: 16px 12px;
		font-size: 13px;
		min-width: 80px;
		white-space: nowrap;
	}

	.post-content table th {
		font-size: 12px;
		padding: 12px;
	}

	.post-content .inset,
	.post-content .callout {
		padding: 20px;
		margin: 32px 0;
	}

	.post-content .cta-banner {
		padding: 24px;
		margin: 32px 0;
	}

	.post-content .cta-banner h3 {
		font-size: 20px;
	}
}

/* Small mobile styles */
@media (max-width: 480px) {
	.post-hero-section {
		padding: 0 16px 32px;
	}


	.post-hero-title {
		font-size: 24px;
	}

	.post-hero-node-box {
		height: 200px;
	}
}

/* Post Share Section */
.post-share-section {
	margin-top: 48px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.post-share-content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.post-share-title {
	font-family: var(--font-family-primary);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
	margin: 0;
}

.post-share-body p {
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
	margin: 0;
}

.post-share-body a {
	color: var(--color-white);
	text-decoration: underline;
	text-underline-position: from-font;
}

/* Newsletter Banner */
.post-newsletter-banner {
	background: #1B1728;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 24px 32px;
	backdrop-filter: blur(21.818px);
	-webkit-backdrop-filter: blur(21.818px);
}

.post-newsletter-content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.post-newsletter-header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.post-newsletter-header h3 {
	font-family: var(--font-family-primary);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
	margin: 0;
	letter-spacing: -0.2px;
}

.post-newsletter-header p {
	font-family: var(--font-family-primary);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-paragraphs);
	margin: 0;
	letter-spacing: 0.12px;
}

.post-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.post-newsletter-inputs {
	display: flex;
	gap: 16px;
	align-items: stretch;
}

.post-newsletter-email {
	flex: 1;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	padding: 12px 16px;
	font-family: var(--font-family-primary);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
	outline: none;
	transition: all 0.2s ease;
}

.post-newsletter-email::placeholder {
	color: var(--color-paragraphs);
	opacity: 0.7;
}

.post-newsletter-email:focus {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.15);
}

.post-newsletter-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-8);
	padding: var(--spacing-16) var(--spacing-24);
	--bg-color-1: hsla(0, 0%, 100%, 0);
	--bg-color-2: hsla(0, 0%, 100%, 0);
	--bg-color-3: #077ac7;
	--bg-color-4: #6b21ef;
	background: linear-gradient(to bottom, var(--bg-color-1), var(--bg-color-2)), linear-gradient(141deg, var(--bg-color-3), var(--bg-color-4));
	border: none;
	border-radius: var(--border-radius);
	color: var(--color-white);
	font-family: var(--font-family-primary);
	font-size: var(--font-size-button-large);
	font-weight: var(--font-weight-book);
	line-height: var(--line-height-button);
	cursor: pointer;
	box-shadow: inset 0 1px 1px #fff3, 0 1px 2px #08080833, 0 4px 4px #08080814, 0 7px 0 -12px #077ac7, inset 0 6px 12px #ffffff1f;
	transition-duration: .4s, .3s, .3s, .3s, .3s;
	transition-property: box-shadow, --bg-color-1, --bg-color-2, --bg-color-3, --bg-color-4;
	transition-timing-function: cubic-bezier(.25,.46,.45,.94), linear, linear, linear, linear;
	position: relative;
	white-space: nowrap;
}

.post-newsletter-submit:hover {
	--bg-color-1: hsla(0, 0%, 100%, .1);
	--bg-color-2: hsla(0, 0%, 100%, 0);
	color: var(--color-white);
	box-shadow: inset 0 1px 1px #fff3, 0 1px 2px #08080833, 0 4px 4px #08080814, 0 7px 0 -12px #077ac7, inset 0 6px 12px #ffffff3d;
}

/* Workflows button container */
.workflows-button {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Blog banner signup button with same blue styling as load more */
.workflows-button .global-button.blog-banner-signup,
.global-button.blog-banner-signup {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-8);
	padding: var(--spacing-16) var(--spacing-24) !important;
	--bg-color-1: hsla(0, 0%, 100%, 0);
	--bg-color-2: hsla(0, 0%, 100%, 0);
	--bg-color-3: #077ac7;
	--bg-color-4: #6b21ef;
	background: linear-gradient(to bottom, var(--bg-color-1), var(--bg-color-2)), linear-gradient(141deg, var(--bg-color-3), var(--bg-color-4)) !important;
	border: none !important;
	border-radius: var(--border-radius);
	color: var(--color-white) !important;
	font-family: var(--font-family-primary);
	font-size: var(--font-size-button-large) !important;
	font-weight: var(--font-weight-book);
	line-height: var(--line-height-button) !important;
	cursor: pointer;
	box-shadow: inset 0 1px 1px #fff3, 0 1px 2px #08080833, 0 4px 4px #08080814, 0 7px 0 -12px #077ac7, inset 0 6px 12px #ffffff1f !important;
	transition-duration: .4s, .3s, .3s, .3s, .3s;
	transition-property: box-shadow, --bg-color-1, --bg-color-2, --bg-color-3, --bg-color-4;
	transition-timing-function: cubic-bezier(.25,.46,.45,.94), linear, linear, linear, linear;
	position: relative;
	text-decoration: none !important;
}

.workflows-button .global-button.blog-banner-signup:hover,
.global-button.blog-banner-signup:hover {
	--bg-color-1: hsla(0, 0%, 100%, .1);
	--bg-color-2: hsla(0, 0%, 100%, 0);
	color: var(--color-white) !important;
	box-shadow: inset 0 1px 1px #fff3, 0 1px 2px #08080833, 0 4px 4px #08080814, 0 7px 0 -12px #077ac7, inset 0 6px 12px #ffffff3d !important;
}

/* Reset any before pseudo-element on workflows button */
.workflows-button .global-button.blog-banner-signup::before,
.global-button.blog-banner-signup::before {
	display: none !important;
	content: none !important;
}

.post-newsletter-messages {
	display: none;
}

.post-newsletter-messages .message {
	font-family: var(--font-family-primary);
	font-size: 14px;
	line-height: 1.5;
	padding: 8px 12px;
	border-radius: 4px;
	display: none;
}

.post-newsletter-messages .message--error {
	background: rgba(255, 0, 0, 0.1);
	color: #ff6b6b;
	border: 1px solid rgba(255, 0, 0, 0.2);
}

.post-newsletter-messages .message--success {
	background: rgba(0, 255, 0, 0.1);
	color: #51cf66;
	border: 1px solid rgba(0, 255, 0, 0.2);
}

.post-newsletter-form.error .post-newsletter-messages {
	display: block;
}

.post-newsletter-form.error .message--error {
	display: block;
}

.post-newsletter-form.success .post-newsletter-messages {
	display: block;
}

.post-newsletter-form.success .message--success {
	display: block;
}

/* Share Buttons */
.post-share-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}

.post-share-label {
	font-family: var(--font-family-primary);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-paragraphs);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.post-share-icons {
	display: flex;
	gap: 16px;
	align-items: center;
}

.post-share-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	opacity: 0.9;
	transition: opacity 0.2s ease;
}

.post-share-icons a:hover {
	opacity: 1;
}

.post-share-icons svg {
	width: 24px;
	height: 24px;
}

/* Mobile styles for newsletter section */
@media (max-width: 768px) {
	.post-share-section {
		margin-top: 32px;
		gap: 32px;
	}

	.post-newsletter-banner {
		padding: 20px;
	}

	.post-newsletter-inputs {
		flex-direction: column;
		gap: 12px;
	}

	.post-newsletter-email,
	.post-newsletter-submit {
		width: 100%;
	}
}

/* ==========================================================================
   27. POST NAVIGATION
   ========================================================================== */
.post-navigation-section {
	padding: 64px 160px;
	box-sizing: border-box;
}

.post-navigation-wrap {
	max-width: 1088px;
	margin: 0 auto;
	display: flex;
	gap: 32px;
	align-items: center;
	justify-content: center;
}

.post-navigation-card {
	background: #1B1728;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 16px 16px 16px 32px;
	display: flex;
	gap: 24px;
	align-items: center;
	width: 544px;
	height: 120px;
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
	backdrop-filter: blur(21.818px);
	-webkit-backdrop-filter: blur(21.818px);
	transition: all 0.2s ease;
}

.post-navigation-card:hover {
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.3);
}

.post-navigation-thumbnail {
	flex-shrink: 0;
	width: 61px;
	height: 88px;
}

.post-navigation-image {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.post-navigation-image--placeholder {
	background: linear-gradient(135deg, rgba(196, 187, 211, 0.1) 0%, rgba(157, 146, 168, 0.1) 100%);
	position: relative;
}

.post-navigation-image--placeholder::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
	background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 19V5C21 3.9 20.1 3 19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19ZM8.5 13.5L11 16.51L14.5 12L19 18H5L8.5 13.5Z' fill='%23C4BBD3' fill-opacity='0.3'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

.post-navigation-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.post-navigation-header {
	width: 100%;
}

.post-navigation-title {
	font-family: var(--font-family-primary);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-white);
	margin: 0;
	letter-spacing: -0.2px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.post-navigation-label {
	font-family: var(--font-family-primary);
	font-size: 12px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-paragraphs);
	letter-spacing: 0.12px;
}

/* Mobile styles for post navigation */
@media (max-width: 1200px) {
	.post-navigation-section {
		padding: 64px 80px;
	}
}

@media (max-width: 768px) {
	.post-navigation-section {
		padding: 48px 20px;
	}

	.post-navigation-wrap {
		flex-direction: column;
		gap: 20px;
	}

	.post-navigation-card {
		width: 100%;
		min-width: auto;
		padding: 16px 16px 16px 24px;
		height: auto;
		min-height: 100px;
	}

	.post-navigation-thumbnail {
		width: 48px;
		height: 72px;
	}

	.post-navigation-title {
		font-size: 18px;
		-webkit-line-clamp: 3;
	}
}

/* ==========================================================================
   28. POST LATEST SECTION - Latest n8n guides
   ========================================================================== */
.post-latest-section {
	padding: 64px 160px;
	box-sizing: border-box;
}

.post-latest-container {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.post-latest-header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.post-latest-title {
	font-family: var(--font-family-primary);
	font-size: 48px;
	font-weight: 400;
	margin: 0;
	max-width: fit-content;
	letter-spacing: -1.92px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 35.33%),
	            linear-gradient(139.215deg, rgb(255, 255, 255) 10.576%, rgb(124, 101, 161) 123.65%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.post-latest-grid {
	display: grid;
	grid-template-columns: repeat(3, 352px);
	gap: 32px;
	justify-content: center;
}

.post-latest-card {
	background: #1B1728;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	overflow: hidden;
	transition: all 0.2s ease;
}

.post-latest-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.15);
	box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.4);
}

.post-latest-card-container {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.post-latest-card-image {
	width: 100%;
	height: 200px;
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.1);
	display: block;
}

.post-latest-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.post-latest-card:hover .post-latest-card-image img {
	transform: scale(1.05);
}

.post-latest-image--placeholder {
	background: linear-gradient(135deg, rgba(196, 187, 211, 0.1) 0%, rgba(157, 146, 168, 0.1) 100%);
	position: relative;
}

.post-latest-image--placeholder::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	background-image: url("data:image/svg+xml,%3Csvg width='48' height='48' viewBox='0 0 48 48' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 38V10C42 7.8 40.2 6 38 6H10C7.8 6 6 7.8 6 10V38C6 40.2 7.8 42 10 42H38C40.2 42 42 40.2 42 38ZM17 27L22 33.02L29 24L38 36H10L17 27Z' fill='%23C4BBD3' fill-opacity='0.3'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}

.post-latest-card-content {
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.post-latest-card-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.post-latest-card-tags .tag {
	padding: 10px 16px 8px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	font-family: var(--font-family-primary);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: var(--color-paragraphs);
	text-transform: capitalize;
	letter-spacing: 0.14px;
	text-decoration: none;
}

.post-latest-card-tags .tag:hover {
	border-color: rgba(255, 255, 255, 0.5);
}

.post-latest-card-copy {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.post-latest-card-title {
	font-family: var(--font-family-primary);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0;
}

.post-latest-card-title a {
	color: rgba(248, 248, 248, 0.95);
	text-decoration: none;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.post-latest-card-title a:hover {
	color: rgba(248, 248, 248, 1);
}

.post-latest-card-authors {
	font-family: var(--font-family-primary);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-paragraphs);
	opacity: 0.55;
}

.post-latest-card-authors a {
	color: inherit;
	text-decoration: none;
}

/* Mobile styles for latest posts section */
@media (max-width: 1200px) {
	.post-latest-section {
		padding: 64px 80px;
	}

	.post-latest-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		max-width: 736px;
	}
}

@media (max-width: 768px) {
	.post-latest-section {
		padding: 48px 20px;
	}

	.post-latest-container {
		gap: 48px;
	}

	.post-latest-title {
		font-size: 38px;
	}

	.post-latest-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 100%;
	}

	.post-latest-card-content {
		padding: 24px;
	}

	.post-latest-card-title {
		font-size: 20px;
		-webkit-line-clamp: 2;
	}

	.post-latest-card-authors {
		font-size: 14px;
	}
}

/* ==========================================================================
   29. POST RELATED SECTION - Other Guides on [Tag]
   ========================================================================== */
.post-related-section {
	padding: 64px 160px;
	box-sizing: border-box;
}

.post-related-container {
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.post-related-header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.post-related-title {
	font-family: var(--font-family-primary);
	font-size: 48px;
	font-weight: 400;
	margin: 0;
	max-width: fit-content;
	letter-spacing: -1.92px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.2) 35.33%),
	            linear-gradient(139.215deg, rgb(255, 255, 255) 10.576%, rgb(124, 101, 161) 123.65%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.post-related-grid {
	display: grid;
	grid-template-columns: repeat(3, 352px);
	gap: 32px;
	justify-content: center;
}

/* Mobile styles for related posts section */
@media (max-width: 1200px) {
	.post-related-section {
		padding: 64px 80px;
	}

	.post-related-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		max-width: 736px;
	}
}

@media (max-width: 768px) {
	.post-related-section {
		padding: 48px 20px;
	}

	.post-related-container {
		gap: 48px;
	}

	.post-related-title {
		font-size: 38px;
	}

	.post-related-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 100%;
	}
}

/* ==========================================================================
   30. FOOTER MOBILE
   ========================================================================== */

/* Mobile Footer Styles */
.footer-mobile {
   display: none;
   background: linear-gradient(180deg, rgba(42, 28, 66, 0.00) 0%, rgba(42, 28, 66, 0.85) 20%, rgba(42, 28, 66, 0.85) 80%, rgba(42, 28, 66, 0.00) 100%);
   color: white;
   padding: 48px 0 32px;
}

.footer-mobile-container {
   max-width: 390px;
   margin: 0 auto;
   padding: 0 16px;
   display: flex;
   flex-direction: column;
   gap: 24px;
   align-items: center;
   text-align: center;
}

/* Mobile Footer Brand Section */
.footer-mobile-brand {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 20px;
   width: 100%;
   max-width: 280px;
}

.footer-mobile-logo {
   margin-bottom: 4px;
}

.footer-mobile-logo a {
   color: inherit;
   text-decoration: none;
}

.footer-mobile-logo img {
   height: 24px;
   width: auto;
}

.footer-mobile-tagline {
   font-family: 'Geomanist', sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.5;
   color: #e4e4e4;
   margin: 0 0 8px 0;
}

.footer-mobile-social {
   display: flex;
   gap: 16px;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   max-width: 250px;
}

.footer-mobile-social a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 24px;
   height: 24px;
   opacity: 0.6;
   color: white;
   transition: opacity 0.2s ease;
}

.footer-mobile-social a:hover {
   opacity: 1;
}

.footer-mobile-social svg {
   width: 24px;
   height: 24px;
   fill: currentColor;
}

/* Mobile Footer Links */
.footer-mobile-links {
   display: flex;
   flex-direction: column;
   gap: 24px;
   width: 100%;
}

.footer-mobile-section {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.footer-mobile-list {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.footer-mobile-list li a {
   font-family: 'Geomanist', sans-serif;
   font-weight: 400;
   font-size: 14px;
   line-height: 1.5;
   color: #c4bbd3;
   text-decoration: none;
   transition: color 0.2s ease;
}

.footer-mobile-list li a:hover {
   color: white;
}

/* Mobile Footer Dropdowns */
.footer-mobile-dropdowns {
   display: flex;
   flex-direction: column;
   gap: 8px;
   width: 100%;
   max-width: 358px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 24px;
}

.footer-mobile-dropdown {
   display: flex;
   flex-direction: column;
   gap: 4px;
}

.footer-dropdown-toggle {
   background: none;
   border: none;
   color: white;
   font-family: 'Geomanist', sans-serif;
   font-weight: 400;
   font-size: 14px;
   line-height: 1.5;
   padding: 8px 0;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 4px;
   cursor: pointer;
   transition: opacity 0.2s ease;
}

.footer-dropdown-toggle:hover {
   opacity: 0.8;
}

.dropdown-chevron {
   transition: transform 0.2s ease;
   color: white;
}

.footer-dropdown-toggle[aria-expanded="true"] .dropdown-chevron {
   transform: rotate(180deg);
}

.footer-dropdown-content {
   display: none;
   flex-direction: column;
   gap: 12px;
   padding: 12px 0 0;
   opacity: 0.66;
}

.footer-dropdown-content.open {
   display: flex;
}

.footer-dropdown-content ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 6px;
}

.footer-dropdown-content ul li a {
   font-family: 'Geomanist', sans-serif;
   font-weight: 400;
   font-size: 14px;
   line-height: 1.5;
   color: white;
   opacity: 0.65;
   text-decoration: none;
   transition: opacity 0.2s ease;
}

.footer-dropdown-content ul li a:hover {
   opacity: 1;
}

.footer-show-more {
   font-family: 'Geomanist', sans-serif;
   font-weight: 400;
   font-size: 14px;
   line-height: 1.5;
   color: white;
   text-decoration: none;
   opacity: 0.65;
   border-bottom: 1px solid white;
   padding-bottom: 1px;
   align-self: center;
   transition: opacity 0.2s ease;
}

.footer-show-more:hover {
   opacity: 1;
}

/* Mobile Footer Bottom */
.footer-mobile-bottom {
   display: flex;
   flex-direction: column;
   gap: 16px;
   width: 100%;
   align-items: center;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 24px;
}

.footer-mobile-legal {
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   gap: 8px 12px;
}

.footer-mobile-legal a {
   font-family: 'Geomanist', sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.5;
   color: white;
   text-decoration: none;
   transition: opacity 0.2s ease;
}

.footer-mobile-legal a:hover {
   opacity: 0.8;
}

.footer-separator {
   color: white;
   font-size: 16px;
   line-height: 1.5;
}

.footer-mobile-copyright {
   text-align: center;
}

.footer-mobile-copyright p {
   font-family: 'Geomanist', sans-serif;
   font-weight: 400;
   font-size: 16px;
   line-height: 1.5;
   color: white;
   margin: 0;
}

/* Desktop/Mobile Footer Toggle */
@media (max-width: 768px) {
   .sub-footer,
   .footer-desktop {
       display: none;
   }

   .footer-mobile {
       display: block;
   }
}

@media (min-width: 769px) {
   .footer-mobile {
       display: none;
   }

   .footer-desktop {
       display: block;
   }
}

/* ==========================================================================
   ARCHIVE & AUTHOR PAGE STYLES
   ========================================================================== */

/* Author Page - Archive Section */
.archive-section {
   padding: 60px var(--spacing-24) 40px;
   width: 100%;
}

.archive-wrap {
   max-width: var(--max-width-content);
   margin: 0 auto;
}

.archive-container {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   gap: var(--spacing-24);
   margin-bottom: var(--spacing-32);
}

.archive-image {
   width: 120px;
   height: 120px;
   border-radius: 50%;
   overflow: hidden;
   border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.archive-content {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: var(--spacing-12);
}

.archive-title {
   font-size: var(--font-size-h2);
   line-height: var(--line-height-h2);
   color: var(--color-white);
   margin: 0;
   font-weight: var(--font-weight-book);
   background: var(--gradient-headline-silver-purple);
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.archive-location {
   font-size: var(--font-size-body-small);
   color: var(--color-paragraphs);
   font-weight: var(--font-weight-regular);
}

.archive-description {
   font-size: var(--font-size-body-large);
   line-height: var(--line-height-body-large);
   color: var(--color-paragraphs);
   max-width: 700px;
   margin: 0;
   position: relative;
   padding-top: var(--spacing-24);
}

.archive-description svg {
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 40px;
   height: auto;
   opacity: 0.5;
}

.archive-counter {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: var(--spacing-8);
   padding: var(--spacing-16) 0;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.archive-counter span:first-child {
   font-size: var(--font-size-h3);
   font-weight: var(--font-weight-book);
   color: var(--color-white);
}

.archive-counter span:last-child {
   font-size: var(--font-size-body-large);
   color: var(--color-paragraphs);
   font-weight: var(--font-weight-regular);
}

.archive-icons {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: var(--spacing-16);
   padding-top: var(--spacing-16);
}

.archive-icons a {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--color-surface);
   border: 1px solid var(--color-surface-border);
   border-radius: 50%;
   color: var(--color-white);
   transition: var(--transition-fast);
}

.archive-icons a:hover {
   background: rgba(255, 255, 255, 0.1);
   transform: translateY(-2px);
}

.archive-icons svg {
   width: 20px;
   height: 20px;
   fill: #FFF;
   opacity: 0.6;
}

.archive-cover {
   width: 100%;
   max-width: var(--max-width-content);
   height: 400px;
   margin: var(--spacing-48) auto 0;
   border-radius: var(--border-radius-large);
   overflow: hidden;
}

.archive-cover img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Responsive Author Page */
@media (max-width: 768px) {
   .archive-section {
       padding: 40px var(--spacing-16) 32px;
   }

   .archive-image {
       width: 100px;
       height: 100px;
   }

   .archive-title {
       font-size: var(--font-size-h3);
   }

   .archive-description {
       font-size: var(--font-size-body-small);
   }

   .archive-counter span:first-child {
       font-size: var(--font-size-sub-headline);
   }

   .archive-counter span:last-child {
       font-size: var(--font-size-body-small);
   }

   .archive-cover {
       height: 250px;
       margin-top: var(--spacing-32);
   }
}

/* Archive (Tag) Page Styles */
.archive-header-centered {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 60px 0 0;
   width: 100%;
}

.archive-header-content {
   display: flex;
   align-items: baseline;
   justify-content: center;
   gap: 16px;
}

.archive-title-gradient {
   color: #C4BBD3;
   font-family: Geomanist;
   font-size: 30px;
   font-style: normal;
   font-weight: 400;
   line-height: 120%; /* 36px */
   letter-spacing: -1.2px;
   margin: 0;
   max-width: fit-content;
   background: linear-gradient(135deg, #C4BBD3 0%, #9D92A8 50%, #C4BBD3 100%);
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-size: 200% 200%;
   animation: gradient-shift 3s ease-in-out infinite;
   white-space: nowrap;
}

@keyframes gradient-shift {
   0%, 100% {
       background-position: 0% 0%;
   }
   50% {
       background-position: 100% 100%;
   }
}

.archive-separator {
   width: 1px;
   height: 20px;
   background: #C4BBD3;
   flex-shrink: 0;
}

.archive-counter-new {
   display: flex;
   align-items: center;
   justify-content: center;
}

.archive-post-count {
   color: #E8E5EB;
   font-family: Geomanist;
   font-size: 24px;
   font-style: normal;
   font-weight: 400;
   line-height: 140%; /* 33.6px */
   letter-spacing: -0.48px;
   white-space: nowrap;
}

.archive-description-centered {
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 0 20px 40px;
}

.archive-description-centered .archive-description {
   text-align: center;
   max-width: 600px;
}

/* Responsive Archive Header */
@media (max-width: 768px) {
   .archive-header-centered {
       padding: 40px 0 32px;
   }

   .archive-header-content {
       gap: 12px;
       align-items: center;
   }

   .archive-title-gradient {
       font-size: 24px;
       letter-spacing: -0.96px;
   }

   .archive-post-count {
       font-size: 18px;
       letter-spacing: -0.36px;
   }

   .archive-separator {
       width: 20px;
       height: 1px;
   }
}

/* ==========================================================================
   ERROR PAGE STYLES - 404 and other error pages
   ========================================================================== */

.custom-error {
	min-height: 70vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
}

.custom-container {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.custom-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.custom-content h1 {
	font-size: 120px;
	font-weight: 700;
	color: #ff6d6d;
	margin: 0;
	line-height: 1;
	letter-spacing: -0.02em;
}

.custom-content p {
	font-size: 24px;
	color: #fff;
	margin: 0;
	font-weight: 400;
	line-height: 1.4;
}

.custom-content .global-button {
	margin-top: 16px;
	padding: 12px 24px;
	background: #ff6d6d;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.2s ease;
	display: inline-block;
}

.custom-content .global-button:hover {
	background: #e55555;
	transform: translateY(-1px);
}

/* Mobile responsive */
@media (max-width: 768px) {
	.custom-error {
		min-height: 60vh;
		padding: 60px 20px;
	}

	.custom-content h1 {
		font-size: 80px;
	}

	.custom-content p {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.custom-content h1 {
		font-size: 60px;
	}

	.custom-content p {
		font-size: 18px;
	}
}

/* ==========================================================================
   GHOST KOENIG EDITOR STYLES - Required CSS classes
   ========================================================================== */

/* Width utilities */
.kg-width-wide {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: none;
}

.kg-width-full {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: none;
}

/* Override post-content max-width for wide/full images */
.post-content .kg-width-wide,
.post-content .kg-width-full {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	max-width: none;
}

/* Ensure images inside wide/full containers are properly sized */
.kg-width-wide .kg-image,
.kg-width-full .kg-image,
.kg-width-wide img,
.kg-width-full img {
	width: 100%;
	max-width: 100%;
}

/* Gallery styles */
.kg-gallery-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 24px 0;
}

.kg-gallery-row {
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

.kg-gallery-image {
	flex: 1;
	height: auto;
	max-width: 100%;
	border-radius: 4px;
}

.kg-gallery-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

/* Bookmark card - minimal dark theme styling */
.kg-bookmark-card a.kg-bookmark-container {
	background: var(--color-surface) !important;
	border: 1px solid var(--color-surface-border) !important;
	border-radius: 8px !important;
	transition: all 0.2s ease;
	text-decoration: none !important;
	padding: 16px !important;
}

.kg-bookmark-card:hover a.kg-bookmark-container {
	border-color: rgba(255, 255, 255, 0.15) !important;
	transform: translateY(-1px);
}

.kg-bookmark-content {
	font-family: var(--font-family-primary) !important;
	background: transparent !important;
	padding: 0 16px 0 0 !important;
}

.kg-bookmark-title {
	color: var(--color-white) !important;
	font-family: var(--font-family-primary) !important;
	font-weight: 400 !important;
	text-decoration: none !important;
	margin: 0 0 8px 0 !important;
}

.kg-bookmark-description {
	color: var(--color-paragraphs) !important;
	font-family: var(--font-family-primary) !important;
	margin: 0 0 12px 0 !important;
}

.kg-bookmark-metadata {
	display: grid !important;
	grid-template-columns: auto 1fr;
	grid-template-rows: auto auto;
	gap: 4px 12px;
	align-items: center;
	color: var(--color-paragraphs) !important;
	font-family: var(--font-family-primary) !important;
	margin-top: auto !important;
	margin-bottom: 8px !important;
}

.kg-bookmark-icon {
	grid-row: span 2;
	width: 48px !important;
	height: 48px !important;
	border-radius: 6px;
	flex-shrink: 0;
}

.kg-bookmark-author {
	grid-column: 2;
	grid-row: 1;
	font-weight: 500 !important;
	font-size: 13px !important;
	line-height: 1.3;
	color: var(--color-white) !important;
	opacity: 0.9;
}

.kg-bookmark-publisher {
	grid-column: 2;
	grid-row: 2;
	font-size: 12px !important;
	line-height: 1.3;
	color: var(--color-paragraphs) !important;
	opacity: 0.6;
	max-width: none !important;
}

/* Remove bullet separator */
.kg-bookmark-metadata > span:nth-of-type(2):before {
	content: none !important;
}

.kg-bookmark-thumbnail {
	background-color: rgba(255, 255, 255, 0.05);
}

/* Blockquote alt styling */
.kg-blockquote-alt {
	border-left: 4px solid #ff6d6d;
	background: #f9fafb;
	margin: 24px 0;
	padding: 20px 24px;
	font-style: italic;
	color: #4b5563;
}

.kg-blockquote-alt p {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
}

/* Card and Image Card styles - Ghost Koenig figure elements */
.kg-card {
	margin: 24px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Cards inside post content should align left */
.post-content .kg-card {
	align-items: flex-start;
}

/* Callout Card Styles */
.kg-card.kg-callout-card {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

.kg-card.kg-callout-card.kg-callout-card-blue {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
}

/* Accent callout card - purple theme matching n8n design */
.kg-callout-card-accent {
	background: linear-gradient(135deg, rgba(124, 101, 161, 0.2) 0%, rgba(124, 101, 161, 0.15) 100%) !important;
	color: #FFFFFF !important;
}

.kg-callout-card-accent .kg-callout-text {
	color: #FFFFFF;
}

.kg-callout-card-accent a {
	color: #FFFFFF !important;
	text-decoration: underline;
}

.kg-image-card {
	margin: 24px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* Image cards inside post content should align left */
.post-content .kg-image-card {
	align-items: flex-start;
	margin-left: 0;
	margin-right: 0;
}

/* Video card with caption */
.kg-card.kg-video-card.kg-width-regular.kg-card-hascaption {
	width: 100%;
}

/* Main image class used by Ghost Koenig */
.kg-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	display: block;
	max-width: 100%;
}

.kg-image-card img,
.kg-image-card .kg-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	display: block;
	max-width: 100%;
}

/* Figure with caption styling */
.kg-card-hascaption {
	margin: 24px 0;
}

.kg-card-hascaption figcaption {
	text-align: center;
	font-size: 14px;
	color: #6b7280;
	margin-top: 12px;
	font-style: italic;
	line-height: 1.4;
	padding: 0 16px;
}

/* Ensure all images in cards are responsive */
.kg-card img,
.kg-image-card img,
.kg-card .kg-image,
.kg-image-card .kg-image {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Wide and full width cards */
.kg-width-wide.kg-card,
.kg-width-wide.kg-image-card {
	margin: 32px 0;
	left: 0;
	width: 100%;
}

.kg-width-full.kg-card,
.kg-width-full.kg-image-card {
	margin: 32px 0;
}

/* Override full-width image cards to behave like regular images */
.post-content .kg-width-full.kg-image-card {
	width: auto !important;
	position: static !important;
	left: auto !important;
	right: auto !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	align-items: flex-start !important;
}

.post-content .kg-width-full.kg-image-card img,
.post-content .kg-width-full.kg-image-card .kg-image {
	width: 100% !important;
	max-width: 100% !important;
}

/* Mobile responsive styles for Koenig elements */
@media (max-width: 768px) {
	.kg-gallery-row {
		flex-direction: column;
	}

	.kg-width-wide,
	.kg-width-full,
	.post-content .kg-width-wide,
	.post-content .kg-width-full {
		width: 100%;
		left: auto;
		right: auto;
		margin-left: 0;
		margin-right: 0;
		position: static;
		max-width: none;
	}

	.kg-card,
	.kg-image-card,
	.kg-card-hascaption {
		margin: 16px 0;
	}

	.kg-card img,
	.kg-image-card img,
	.kg-image {
		border-radius: 4px;
	}

	.kg-card-hascaption figcaption {
		font-size: 13px;
		margin-top: 8px;
		padding: 0 8px;
	}
}

/* ========================================
   ### FIX ### - Client Issues Resolution
   ======================================== */

/* #1 - Lightense styles (based on 3.1, with JS blur) */
.lightense-backdrop {
    z-index: 99998 !important;
    background-color: var(--color-body) !important;
    -webkit-backdrop-filter: initial !important;
    backdrop-filter: initial !important;
}
.lightense-wrap ~ br,
.lightense-wrap ~ small {
    display: none;
}
.lightense-wrap img {
    border-radius: 0 !important;
}

/* Blur style for JS blur */
.lightense-blur {
    filter: blur(8px) !important;
    -webkit-filter: blur(8px) !important;
    transition: filter 0.3s ease !important;
}

/* Fix hero-background-decoration overflow on mobile */
@media (max-width: 991px) {
    .global-content {
        position: relative !important;
        overflow-x: hidden !important;
    }
}

/* #2 - Tables visibility on dark background */
.post-content table {
    background: rgba(30, 30, 45, 0.6) !important;
    border: 1px solid rgba(100, 100, 120, 0.3) !important;
}

.post-content table th {
    background: rgba(50, 50, 70, 0.8) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(100, 100, 120, 0.4) !important;
}

.post-content table td {
    color: rgba(240, 240, 245, 0.9) !important;
    border-bottom: 1px solid rgba(100, 100, 120, 0.15) !important;
}

.post-content table th,
.post-content table td {
    border-right: 1px solid rgba(100, 100, 120, 0.2) !important;
}

/* #5 & #6 - Table padding reduction (20px 24px → 12px 16px) */
.post-content table th,
.post-content table td {
    padding: 12px 16px !important;
}

/* #7 - Charts/Canvas visibility - white background */
.post-content canvas,
.post-content .kg-card canvas,
.post-content figure canvas {
    background: #ffffff !important;
    padding: 16px !important;
    border-radius: 8px !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Ensure canvas parent doesn't interfere */
.post-content .kg-card:has(canvas) {
    background: transparent !important;
}

/* Lightense zoom - default behavior from 3.1 (scale transform enabled) */

.workflow > .workflow-content > .workflow-nodes {
    display: flex !important;
    flex-wrap: wrap !important;
    min-width: 112px !important;
}

.workflow-nodes img {
    max-width: initial !important;
    filter: brightness(0) invert(1) !important;
}

.workflow-nodes i,
.workflow-nodes img {
    width: 24px !important;
    height: 24px !important;
    font-size: 24px !important;
}

table {
    display: inline-table !important;
    overflow: hidden !important;
}

summary {
    display: flex;
    align-items: center;
    list-style: none;
    cursor: pointer;
    margin-bottom: 8px;
}

summary::before {
    content: '▶';
    margin-right: 0.5em;
    transition: transform 0.2s;
    flex-shrink: 0;
}

details[open] summary::before {
    transform: rotate(90deg);
}

summary h4 {
    margin: 0 !important;
}