@charset "UTF-8";
/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --color-primary: #1a7bc9;
  --color-primary-dark:#1260a0;
  --color-accent: #00b5cc;
  --color-text: #1a1a1a;
  --color-text-muted: #666;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f8fa;
  --color-border: #e5e7eb;
  --color-topbar: #111827;
  --color-hero-from: #1a7bc9;
  --color-hero-to: #0d4f8a;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.13);
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ============================================================
   Reset / Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ============================================================
   Utilities
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn--outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   Top Bar
   ============================================================ */
.topbar {
  background: var(--color-topbar);
  padding: 6px 24px;
}

.topbar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.topbar__social {
  color: #ccc;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.topbar__social:hover {
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   Site Header / Nav
   ============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-text);
  padding: 4px 8px;
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 72px;
}

.site-logo:hover {
  text-decoration: none;
}

.site-logo__top {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--color-text);
}

.site-logo__bottom {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--color-text);
}

.site-logo__accent {
  color: var(--color-primary);
}

.site-logo--footer .site-logo__top,
.site-logo--footer .site-logo__bottom {
  color: #fff;
}

.site-logo--footer {
  border-color: rgba(255, 255, 255, 0.4);
}

.site-logo--image {
  border: none;
  padding: 0;
  min-width: auto;
}

.site-logo__img {
  display: block;
  height: 48px;
  width: auto;
}

/* Nav */
.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex: 1;
}

.site-nav__link {
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--color-primary);
  background: rgba(26, 123, 201, 0.06);
  text-decoration: none;
}

/* Burger — hidden on desktop, always visible on mobile */
.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}

.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
}

/* Mobile menu — hidden by default, shown via .is-open class */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__link {
  padding: 10px 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

/* ============================================================
   Hero (Home)
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--color-hero-from) 0%, var(--color-hero-to) 100%);
  padding: 72px 24px;
  text-align: center;
  color: #fff;
}

.hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero__headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero__lead,
.hero__typed {
  display: block;
}

.hero__typed {
  display: inline-block;
  min-height: 1.1em;
}

.hero__typed {
  color: #d8f4ff;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.18);
}

.typed-cursor {
  display: inline;
  vertical-align: baseline;
  color: #ffffff;
  font-weight: 700;
}

/* ============================================================
   Section Heading
   ============================================================ */
.section-heading {
  font-size: 1.9rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.section-heading__accent {
  color: var(--color-accent);
}

/* ============================================================
   Post Grid (Home)
   ============================================================ */
.post-grid-section {
  padding: 64px 0;
  background: var(--color-bg);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.post-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.post-card__image-link {
  display: block;
  overflow: hidden;
}

.post-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.3s;
}

.post-card:hover .post-card__image {
  transform: scale(1.03);
}

.post-card__image--placeholder {
  transform: none;
  background: linear-gradient(135deg, rgba(26, 123, 201, 0.2), rgba(0, 181, 204, 0.35));
  border-bottom: 1px solid var(--color-border);
}

.post-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__cats {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.post-card__cat {
  color: var(--color-accent);
  text-decoration: none;
}

.post-card__cat:hover {
  text-decoration: underline;
}

.post-card__date {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: block;
}

.post-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.post-card__title a {
  color: var(--color-text);
  text-decoration: none;
}

.post-card__title a:hover {
  color: var(--color-primary);
}

.post-card__excerpt {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: auto;
}

.post-grid__more {
  text-align: center;
  margin-top: 48px;
}

.home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.home-main .post-grid {
  grid-template-columns: repeat(3, 1fr);
}

.section-heading--home {
  text-align: left;
}

.hero--articles {
  padding: 48px 24px;
}

.post-grid--articles {
  margin-top: 8px;
}

.pagination {
  text-align: center;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.pagination__next {
  display: inline-block;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius);
  padding: 10px 24px;
  font-weight: 600;
  text-decoration: none;
}

.pagination__next:hover {
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
}

.pagination__meta {
  font-size: 14px;
  color: var(--color-text-muted);
}

.page-load-status {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 20px;
  min-height: 28px;
}

/* ============================================================
   Search
   ============================================================ */
.search-page {
  padding-top: 40px;
  padding-bottom: 64px;
}

.search-controls {
  max-width: 760px;
  margin: 0 auto 24px;
}

.search-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.search-input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(26, 123, 201, 0.16);
}

.search-status {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.search-empty {
  text-align: center;
  padding: 28px;
  border: 1px dashed var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
}

/* ============================================================
   About
   ============================================================ */
.about-page {
  padding: 42px 24px 64px;
}

.about-page__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.about-page__headshot {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-page__title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-page__eyebrow {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.about-page__content p {
  margin-bottom: 14px;
}

.about-page__connect-title {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.about-page__connect-list {
  margin: 0;
  padding-left: 18px;
}

.about-page__connect-list li {
  margin-bottom: 4px;
}

.infinite-scroll-request,
.infinite-scroll-last,
.infinite-scroll-error {
  display: none;
  font-size: 14px;
}

/* ============================================================
   Insights Page
   ============================================================ */
.insights-hero {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.insights-title h1 {
  margin-top: 0;
}

.insights-title img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 0 1rem;
}

.insights-copy h1,
.insights-copy h2,
.insights-copy h3,
.insights-copy h5 {
  margin-top: 0;
}

.insights-form-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

/* ============================================================
   Course Landing
   ============================================================ */
.course-landing {
  max-width: 980px;
}

.course-hero {
  text-align: center;
  padding: 1rem 0 2rem;
}

.course-stars {
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #0e7490;
}

.course-hero h1 {
  margin: 0;
  line-height: 1.05;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.course-intro {
  max-width: 780px;
  margin: 1.25rem auto 0;
  font-size: 1.08rem;
}

.course-block {
  margin-top: 2rem;
}

.course-media {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.course-media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.course-modules,
.course-includes {
  margin: 0;
  padding-left: 1.2rem;
}

.course-modules li,
.course-includes li {
  margin-bottom: 0.45rem;
}

.course-offer {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 12px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.course-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1rem;
}

.course-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.course-button {
  display: inline-block;
  background: #0f766e;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.68rem 1rem;
  border-radius: 8px;
}

.course-final {
  text-align: center;
  margin: 2.25rem 0 0.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

/* ============================================================
   Post Layout (Blog Post Page)
   ============================================================ */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding-top: 48px;
  padding-bottom: 64px;
  align-items: start;
}

/* Post header */
.post-header {
  margin-bottom: 32px;
}

.post-header__cats {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.post-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.post-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.post-header__image {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

/* Post body */
.post-body {
  font-size: 17px;
  line-height: 1.8;
}

.post-body h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 2em 0 0.5em;
}

.post-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1.6em 0 0.5em;
}

.post-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.4em 0 0.4em;
}

.post-body p {
  margin-bottom: 1.2em;
}

.post-body ul, .post-body ol {
  margin: 0 0 1.2em 1.5em;
}

.post-body li {
  margin-bottom: 0.3em;
}

.post-body blockquote {
  border-left: 4px solid var(--color-primary);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--color-text-muted);
}

.post-body pre {
  background: #1e2530;
  color: #e2e8f0;
  padding: 20px;
  border-radius: var(--radius);
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.2em;
}

.post-body code {
  background: var(--color-bg-alt);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: "Fira Mono", "Consolas", monospace;
}

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

.post-body img {
  border-radius: var(--radius);
  margin: 1.5em 0;
}

.post-body table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.2em;
  font-size: 15px;
}

.post-body th, .post-body td {
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
}

.post-body th {
  background: var(--color-bg-alt);
  font-weight: 700;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2em 0;
}

.in-post-ad {
  margin: 2.25rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(26, 123, 201, 0.24);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26, 123, 201, 0.07), rgba(0, 181, 204, 0.08));
}

.in-post-ad__label {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d4f8a;
}

.in-post-ad__body > *:last-child {
  margin-bottom: 0;
}

/* Post footer tags */
.post-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.post-footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.post-footer__tag {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
  color: var(--color-text-muted);
  transition: background 0.15s, color 0.15s;
}

.post-footer__tag:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  text-decoration: none;
}

/* ============================================================
   Sidebar
   ============================================================ */
.post-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 20px;
}

.sidebar-widget__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--color-text);
}

.sidebar-widget__cats a {
  color: var(--color-text-muted);
  font-size: 14px;
}

.sidebar-widget__cats a:hover {
  color: var(--color-primary);
}

.sidebar-widget__tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sidebar-tag {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--color-text-muted);
  transition: background 0.15s, color 0.15s;
}

.sidebar-tag:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  text-decoration: none;
}

.sidebar-recent {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-recent__item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sidebar-recent__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.sidebar-recent__link:hover {
  color: var(--color-primary);
}

.sidebar-recent__date {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Share buttons */
.share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: #fff;
  transition: opacity 0.2s;
  text-decoration: none;
}

.share-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.share-btn--email {
  background: #555;
}

.share-btn--facebook {
  background: #1877f2;
}

.share-btn--twitter {
  background: #000;
}

.share-btn--linkedin {
  background: #0a66c2;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #111827;
  color: #ccc;
  padding-top: 34px;
}

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer__brand .site-logo__img {
  height: 36px;
}

.site-footer__tagline {
  margin-top: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #9ca3af;
  max-width: 320px;
}

.site-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 0;
}

.site-footer__social a {
  color: #9ca3af;
  transition: color 0.2s;
}

.site-footer__social a:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: flex-end;
}

.site-footer__links a {
  font-size: 13px;
  color: #9ca3af;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: #fff;
  text-decoration: none;
}

.site-footer__bottom {
  border-top: 1px solid #374151;
  padding: 14px 24px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home-main .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .site-header__burger {
    display: flex;
  }
  .site-header__inner {
    gap: 16px;
  }
  .insights-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .course-media {
    grid-template-columns: 1fr;
  }
  .about-page {
    padding: 28px 24px 48px;
  }
  .about-page__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-page__media {
    max-width: 340px;
  }
  .post-grid {
    grid-template-columns: 1fr;
  }
  .home-main .post-grid {
    grid-template-columns: 1fr;
  }
  .section-heading--home {
    text-align: center;
  }
  .post-layout {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }
  .post-sidebar {
    position: static;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
  .site-footer__brand {
    align-items: flex-start;
    gap: 10px;
  }
  .site-footer__links {
    justify-content: flex-start;
    gap: 8px 12px;
  }
  .hero {
    padding: 48px 24px;
  }
}
@media (max-width: 480px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    font-size: 1.5rem;
  }
}

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