/* =========================================================
   CheatSheetSilo — Core Stylesheet
   Shared design system for all cheat sheets
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --cs-bg: #FFFFFF;
  --cs-border: #E5E7EB;
  --cs-radius: 16px;
  --cs-padding: 32px;
  --cs-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  --cs-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.08);

  --cs-text: #1F2937;
  --cs-text-muted: #6B7280;
  --cs-accent: #2563EB;
  --cs-accent-hover: #1D4ED8;

  --cs-code-bg: #1E1E2E;
  --cs-code-text: #E5E7EB;

  --cs-tip-bg: #ECFDF5;
  --cs-tip-border: #10B981;
  --cs-warning-bg: #FEF2F2;
  --cs-warning-border: #EF4444;
  --cs-summary-bg: #EFF6FF;
  --cs-summary-border: #2563EB;

  --cs-table-header-bg: #F9FAFB;
  --cs-table-row-alt: #F9FAFB;
  --cs-table-row-hover: #F3F4F6;
}

/* ---------- Base card ---------- */
.cs-card {
  background: var(--cs-bg);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  padding: var(--cs-padding);
  box-shadow: var(--cs-shadow);
  margin-bottom: 24px;
  transition: box-shadow 0.2s ease;
}

.cs-card:hover {
  box-shadow: var(--cs-shadow-hover);
}

.cs-card h2,
.cs-card h3 {
  color: var(--cs-text);
  margin-top: 0;
}

.cs-card p {
  color: var(--cs-text);
  line-height: 1.65;
}

/* ---------- Section anchors (for TOC jumps) ---------- */
.cs-section {
  scroll-margin-top: 90px; /* keeps content clear of any sticky header */
}

/* ---------- Table of Contents ---------- */
.cs-toc {
  background: var(--cs-bg);
  border: 1px solid var(--cs-border);
  border-radius: var(--cs-radius);
  padding: 24px 28px;
}

.cs-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 32px;
}

.cs-toc li {
  margin-bottom: 8px;
  break-inside: avoid;
}

.cs-toc a {
  color: var(--cs-accent);
  text-decoration: none;
  font-size: 15px;
}

.cs-toc a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cs-toc ul {
    columns: 1;
  }
}

/* ---------- Search bar ---------- */
.cs-search-wrap {
  position: relative;
  margin-bottom: 24px;
}

.cs-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid var(--cs-border);
  border-radius: 12px;
  background: var(--cs-bg);
  color: var(--cs-text);
}

.cs-search-input:focus {
  outline: none;
  border-color: var(--cs-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.cs-search-results {
  margin-top: 8px;
  border: 1px solid var(--cs-border);
  border-radius: 12px;
  background: var(--cs-bg);
  box-shadow: var(--cs-shadow);
  display: none;
}

.cs-search-results.is-active {
  display: block;
}

.cs-search-result-item {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cs-border);
  cursor: pointer;
}

.cs-search-result-item:last-child {
  border-bottom: none;
}

.cs-search-result-item:hover {
  background: var(--cs-table-row-hover);
}

/* ---------- Tables ---------- */
.cs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--cs-border);
  border-radius: 12px;
  margin: 20px 0;
}

.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 480px; /* forces horizontal scroll on mobile instead of squashing */
}

.cs-table thead th {
  position: sticky;
  top: 0;
  background: var(--cs-table-header-bg);
  color: var(--cs-text);
  text-align: left;
  font-weight: 600;
  padding: 12px 16px;
  border-bottom: 2px solid var(--cs-border);
  z-index: 1;
}

.cs-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--cs-border);
  color: var(--cs-text);
}

.cs-table tbody tr:nth-child(even) {
  background: var(--cs-table-row-alt);
}

.cs-table tbody tr:hover {
  background: var(--cs-table-row-hover);
}

/* ---------- Code blocks ---------- */
.cs-code-wrap {
  position: relative;
  margin: 20px 0;
}

.cs-code-block {
  background: var(--cs-code-bg);
  color: var(--cs-code-text);
  border-radius: 12px;
  padding: 20px 24px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 14px;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre;
}

.cs-copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #E5E7EB;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cs-copy-btn:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cs-copy-btn.is-copied {
  background: var(--cs-tip-border);
  color: #fff;
  border-color: var(--cs-tip-border);
}

/* Simple syntax token classes — reusable across all code examples */
.cs-tok-keyword { color: #C792EA; }
.cs-tok-string  { color: #C3E88D; }
.cs-tok-comment { color: #6B7280; font-style: italic; }
.cs-tok-number  { color: #F78C6C; }
.cs-tok-func    { color: #82AAFF; }

/* ---------- Output blocks (result of running code) ---------- */
.cs-output {
  background: #F3F4F6;
  border: 1px solid var(--cs-border);
  border-left: 4px solid var(--cs-text-muted);
  border-radius: 8px;
  padding: 16px 20px;
  font-family: monospace;
  font-size: 14px;
  color: var(--cs-text);
  margin: 16px 0;
}

.cs-output::before {
  content: "Output";
  display: block;
  font-family: inherit;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cs-text-muted);
  margin-bottom: 6px;
}

/* ---------- Callout boxes: tip / warning / summary ---------- */
.cs-callout {
  border-radius: 12px;
  padding: 18px 22px;
  margin: 20px 0;
  border-left: 4px solid;
}

.cs-callout p:last-child {
  margin-bottom: 0;
}

.cs-callout-title {
  font-weight: 600;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-tip {
  background: var(--cs-tip-bg);
  border-color: var(--cs-tip-border);
}
.cs-tip .cs-callout-title { color: #047857; }

.cs-warning {
  background: var(--cs-warning-bg);
  border-color: var(--cs-warning-border);
}
.cs-warning .cs-callout-title { color: #B91C1C; }

.cs-summary {
  background: var(--cs-summary-bg);
  border-color: var(--cs-summary-border);
}
.cs-summary .cs-callout-title { color: #1D4ED8; }

/* ---------- FAQ / Interview question accordion ---------- */
.cs-faq-item {
  border-bottom: 1px solid var(--cs-border);
  padding: 16px 0;
}

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

.cs-faq-question {
  font-weight: 600;
  color: var(--cs-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-faq-answer {
  color: var(--cs-text-muted);
  margin-top: 10px;
  line-height: 1.6;
  display: none;
}

.cs-faq-item.is-open .cs-faq-answer {
  display: block;
}

/* ---------- Responsive card padding ---------- */
@media (max-width: 640px) {
  .cs-card {
    padding: 22px;
  }
}
/* ==================================================
   CheatSheetSilo Shared Copy Button
================================================== */

button.cssilo-copy,
button.cssilo-js-copy,
button.cssilo-excel-copy {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 7px 12px !important;

  background-color: #020617 !important;
  background-image: none !important;

  border: 1px solid #0f172a !important;
  border-radius: 9px !important;

  color: #ffffff !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-transform: none !important;

  cursor: pointer !important;
  box-shadow: none !important;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}

button.cssilo-copy:hover,
button.cssilo-js-copy:hover,
button.cssilo-excel-copy:hover {
  background-color: #111827 !important;
  border-color: #1f2937 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(2, 6, 23, 0.22) !important;
}

button.cssilo-copy:focus-visible,
button.cssilo-js-copy:focus-visible,
button.cssilo-excel-copy:focus-visible {
  outline: 3px solid rgba(22, 163, 74, 0.3) !important;
  outline-offset: 2px;
}

button.cssilo-copy.is-copied,
button.cssilo-js-copy.is-copied,
button.cssilo-excel-copy.is-copied {
  background-color: #15803d !important;
  border-color: #15803d !important;
}
/* ==================================================
   CheatSheetSilo Shared Code Blocks
================================================== */

.cssilo-code-block,
.cssilo-js-code-block,
.cssilo-excel-code-block {
  overflow: hidden;
  margin: 22px 0;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.cssilo-code-header,
.cssilo-js-code-header,
.cssilo-excel-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
  padding: 9px 12px 9px 18px;
  background: #111827;
  border-bottom: 1px solid #334155;
}

.cssilo-code-header > span,
.cssilo-js-code-header > span,
.cssilo-excel-code-header > span {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cssilo-code-block pre,
.cssilo-js-code-block pre,
.cssilo-excel-code-block pre {
  overflow-x: auto;
  margin: 0;
  padding: 22px;
  background: transparent;
  border: 0;
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.7;
  white-space: pre;
}

.cssilo-code-block pre code,
.cssilo-js-code-block pre code,
.cssilo-excel-code-block pre code {
  padding: 0;
  background: transparent;
  color: inherit;
  border: 0;
  font: inherit;
}

@media (max-width: 520px) {
  .cssilo-code-header,
  .cssilo-js-code-header,
  .cssilo-excel-code-header {
    padding-left: 14px;
  }

  .cssilo-code-block pre,
  .cssilo-js-code-block pre,
  .cssilo-excel-code-block pre {
    padding: 18px;
    font-size: 13px;
  }
}
/* ==================================================
   CheatSheetSilo Shared Output Boxes
================================================== */

.cssilo-output,
.cssilo-js-output,
.cssilo-excel-output {
  margin: 18px 0 22px;
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #16a34a;
  border-radius: 12px;
  color: #334155;
}

.cssilo-output > strong,
.cssilo-js-output > strong,
.cssilo-excel-output > strong {
  display: block;
  margin-bottom: 8px;
  color: #166534;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cssilo-output p,
.cssilo-js-output p,
.cssilo-excel-output p {
  margin: 0;
}

.cssilo-output pre,
.cssilo-js-output pre,
.cssilo-excel-output pre {
  overflow-x: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  color: #0f172a;
  white-space: pre-wrap;
}

.cssilo-output code,
.cssilo-js-output code,
.cssilo-excel-output code {
  background: #e2e8f0;
  color: #0f172a;
}

@media (max-width: 520px) {
  .cssilo-output,
  .cssilo-js-output,
  .cssilo-excel-output {
    padding: 16px;
  }
}
/* ==================================================
   CheatSheetSilo Shared Tip and Warning Boxes
================================================== */

.cssilo-tip,
.cssilo-js-tip,
.cssilo-excel-tip,
.cssilo-warning,
.cssilo-js-warning,
.cssilo-excel-warning {
  margin: 20px 0;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.cssilo-tip,
.cssilo-js-tip,
.cssilo-excel-tip {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #16a34a;
  color: #166534;
}

.cssilo-warning,
.cssilo-js-warning,
.cssilo-excel-warning {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  color: #92400e;
}

.cssilo-tip strong,
.cssilo-js-tip strong,
.cssilo-excel-tip strong,
.cssilo-warning strong,
.cssilo-js-warning strong,
.cssilo-excel-warning strong {
  font-weight: 800;
}

.cssilo-tip code,
.cssilo-js-tip code,
.cssilo-excel-tip code {
  background: #dcfce7;
  color: #166534;
}

.cssilo-warning code,
.cssilo-js-warning code,
.cssilo-excel-warning code {
  background: #fef3c7;
  color: #92400e;
}

@media (max-width: 520px) {
  .cssilo-tip,
  .cssilo-js-tip,
  .cssilo-excel-tip,
  .cssilo-warning,
  .cssilo-js-warning,
  .cssilo-excel-warning {
    padding: 16px;
  }
}
/* ==================================================
   CheatSheetSilo Shared Tables
================================================== */

.cssilo-table-wrap,
.cssilo-js-table-wrap,
.cssilo-excel-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
}

.cssilo-table,
.cssilo-js-table,
.cssilo-excel-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.cssilo-table thead,
.cssilo-js-table thead,
.cssilo-excel-table thead {
  position: sticky;
  top: 0;
  z-index: 5;
}

.cssilo-table th,
.cssilo-js-table th,
.cssilo-excel-table th {
  padding: 16px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

.cssilo-table td,
.cssilo-js-table td,
.cssilo-excel-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}

.cssilo-table tbody tr:nth-child(even),
.cssilo-js-table tbody tr:nth-child(even),
.cssilo-excel-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.cssilo-table tbody tr:hover,
.cssilo-js-table tbody tr:hover,
.cssilo-excel-table tbody tr:hover {
  background: #f0fdf4;
}

.cssilo-table code,
.cssilo-js-table code,
.cssilo-excel-table code {
  font-size: 13px;
}

@media (max-width: 768px) {

  .cssilo-table,
  .cssilo-js-table,
  .cssilo-excel-table {
    min-width: 650px;
  }

}
/* Disable sticky table headers */
.cssilo-table thead,
.cssilo-js-table thead,
.cssilo-excel-table thead,
.cssilo-table th,
.cssilo-js-table th,
.cssilo-excel-table th {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
}
/* ==================================================
   PROMPT ENGINEERING — INTRODUCTION HERO
   ================================================== */

.cssilo-ai-hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 32px;
  padding: 34px;
  color: #111827;
  background:
    radial-gradient(circle at 100% 0%, rgba(124, 58, 237, 0.11), transparent 36%),
    linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.cssilo-ai-hero,
.cssilo-ai-hero * {
  box-sizing: border-box;
}

.cssilo-ai-hero__label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: #6d28d9;
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cssilo-ai-hero__title {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.cssilo-ai-hero__description {
  max-width: 780px;
  margin: 0 0 12px;
  color: #374151;
  font-size: 18px;
  line-height: 1.7;
}

.cssilo-ai-hero__supporting {
  max-width: 780px;
  margin: 0 0 24px;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

.cssilo-ai-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.cssilo-ai-hero__features li {
  position: relative;
  margin: 0;
  padding: 9px 13px 9px 34px;
  color: #374151;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
}

.cssilo-ai-hero__features li::before {
  position: absolute;
  top: 50%;
  left: 13px;
  width: 9px;
  height: 9px;
  background: #7c3aed;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #ede9fe;
  content: "";
  transform: translateY(-50%);
}

.cssilo-ai-hero__formula {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 20px;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 12px;
}

.cssilo-ai-hero__formula-label {
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-hero__formula code {
  overflow-wrap: anywhere;
  color: #f9fafb;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .cssilo-ai-hero {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .cssilo-ai-hero__description {
    font-size: 16px;
  }

  .cssilo-ai-hero__features {
    flex-direction: column;
  }

  .cssilo-ai-hero__features li {
    width: 100%;
  }

  .cssilo-ai-hero__formula {
    padding: 16px;
  }

  .cssilo-ai-hero__formula code {
    font-size: 13px;
  }
	}
/* ==================================================
   PROMPT ENGINEERING — CHEAT SHEET SEARCH
   ================================================== */

.cssilo-ai-search {
  margin: 0 0 32px;
  padding: 30px 32px;
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cssilo-ai-search,
.cssilo-ai-search * {
  box-sizing: border-box;
}

.cssilo-ai-search__header {
  margin-bottom: 20px;
}

.cssilo-ai-search__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-search__title {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(23px, 3vw, 29px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-search__description {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cssilo-ai-search__field {
  max-width: 100%;
}

.cssilo-ai-search__label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
}

.cssilo-ai-search__control {
  position: relative;
  display: flex;
  align-items: center;
}

.cssilo-ai-search__icon {
  position: absolute;
  left: 16px;
  z-index: 1;
  color: #6b7280;
  pointer-events: none;
}

.cssilo-ai-search__input {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 13px 88px 13px 48px;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.cssilo-ai-search__input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.cssilo-ai-search__input:hover {
  border-color: #9ca3af;
}

.cssilo-ai-search__input:focus {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}

.cssilo-ai-search__clear {
  position: absolute;
  right: 10px;
  min-height: 36px;
  margin: 0;
  padding: 7px 11px;
  color: #6d28d9;
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.cssilo-ai-search__clear:hover {
  color: #ffffff;
  background: #7c3aed;
  border-color: #7c3aed;
}

.cssilo-ai-search__clear:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.25);
  outline-offset: 2px;
}

.cssilo-ai-search__clear[hidden] {
  display: none;
}

.cssilo-ai-search__help,
.cssilo-ai-search__status {
  margin: 9px 0 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.5;
}

.cssilo-ai-search__status:empty {
  display: none;
}

@media (max-width: 600px) {
  .cssilo-ai-search {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .cssilo-ai-search__input {
    min-height: 52px;
    padding-right: 74px;
    font-size: 15px;
  }

  .cssilo-ai-search__clear {
    right: 8px;
    padding-right: 9px;
    padding-left: 9px;
  }
}
/* Search input override for GeneratePress */
.cssilo-ai-search input.cssilo-ai-search__input {
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 13px 88px 13px 48px;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  font: inherit;
  font-size: 16px;
  line-height: 1.4;
}

.cssilo-ai-search input.cssilo-ai-search__input:focus {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.14);
}

@media (max-width: 600px) {
  .cssilo-ai-search input.cssilo-ai-search__input {
    min-height: 52px;
    padding: 13px 74px 13px 48px;
    font-size: 15px;
  }
}
/* ==================================================
   PROMPT ENGINEERING — TABLE OF CONTENTS
   ================================================== */

.cssilo-ai-toc {
  margin: 0 0 32px;
  padding: 32px;
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cssilo-ai-toc,
.cssilo-ai-toc * {
  box-sizing: border-box;
}

.cssilo-ai-toc__header {
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-toc__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-toc__title {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(23px, 3vw, 29px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-toc__description {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cssilo-ai-toc__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: cssilo-ai-toc;
}

.cssilo-ai-toc__list li {
  min-width: 0;
  margin: 0;
  padding: 0;
  counter-increment: cssilo-ai-toc;
}

.cssilo-ai-toc__list a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 11px 38px 11px 52px;
  color: #374151;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-toc__list a::before {
  position: absolute;
  left: 14px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 7px;
  content: counter(cssilo-ai-toc, decimal-leading-zero);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-toc__list a::after {
  position: absolute;
  right: 14px;
  color: #9ca3af;
  content: "›";
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-toc__list a:hover {
  color: #6d28d9;
  background: #faf7ff;
  border-color: #c4b5fd;
  transform: translateY(-1px);
}

.cssilo-ai-toc__list a:hover::after {
  color: #7c3aed;
  transform: translateX(3px);
}

.cssilo-ai-toc__list a:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.22);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .cssilo-ai-toc {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .cssilo-ai-toc__list {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-toc__list a {
    min-height: 48px;
  }
}
/* ==================================================
   PROMPT ENGINEERING — SHARED CONTENT SECTIONS
   ================================================== */

.cssilo-ai-section {
  scroll-margin-top: 32px;
  margin: 0 0 32px;
  padding: 32px;
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cssilo-ai-section,
.cssilo-ai-section * {
  box-sizing: border-box;
}

.cssilo-ai-section[hidden] {
  display: none;
}

.cssilo-ai-section__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.cssilo-ai-section__number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #6d28d9;
  background: #ede9fe;
  border: 1px solid #ddd6fe;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-section__eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-section__title {
  margin: 0 0 9px;
  color: #111827;
  font-size: clamp(25px, 3.5vw, 32px);
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.cssilo-ai-section__description {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

/* Quick formula */

.cssilo-ai-formula {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  padding: 18px 20px;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 12px;
}

.cssilo-ai-formula__label {
  color: #c4b5fd;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-formula code {
  overflow-wrap: anywhere;
  color: #f9fafb;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 15px;
  line-height: 1.6;
}

/* Quick-reference cards */

.cssilo-ai-quick__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cssilo-ai-quick__card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-quick__card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.07);
  transform: translateY(-2px);
}

.cssilo-ai-quick__card-number {
  display: inline-flex;
  margin-bottom: 12px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}

.cssilo-ai-quick__card h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-quick__card p {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

.cssilo-ai-quick__card code {
  display: block;
  overflow-wrap: anywhere;
  padding: 10px 12px;
  color: #5b21b6;
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  border-radius: 8px;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .cssilo-ai-section {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .cssilo-ai-section__header {
    flex-direction: column;
    gap: 12px;
  }

  .cssilo-ai-quick__grid {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-formula {
    padding: 16px;
  }

  .cssilo-ai-formula code {
    font-size: 13px;
  }
}
/* ==================================================
   PROMPT ENGINEERING — UNIVERSAL PROMPT TEMPLATE
   ================================================== */

.cssilo-ai-quick-template {
  margin: -16px 0 32px;
  padding: 32px;
  color: #111827;
  background: linear-gradient(135deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cssilo-ai-quick-template,
.cssilo-ai-quick-template * {
  box-sizing: border-box;
}

.cssilo-ai-quick-template[hidden] {
  display: none;
}

.cssilo-ai-quick-template__header {
  margin-bottom: 22px;
}

.cssilo-ai-quick-template__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-quick-template__title {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-quick-template__description {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cssilo-ai-prompt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cssilo-ai-prompt-box {
  min-width: 0;
  overflow: hidden;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 13px;
}

.cssilo-ai-prompt-box--example {
  background: #172033;
  border-color: #4c1d95;
}

.cssilo-ai-prompt-box__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-prompt-box__label {
  display: block;
  margin-bottom: 5px;
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-prompt-box h4 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.cssilo-ai-quick-template button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 36px;
  margin: 0;
  padding: 8px 12px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-quick-template button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
  transform: translateY(-1px);
}

.cssilo-ai-quick-template button.cssilo-ai-copy:focus-visible {
  outline: 3px solid rgba(196, 181, 253, 0.5);
  outline-offset: 2px;
}

.cssilo-ai-prompt-box__code {
  min-height: 430px;
  margin: 0;
  padding: 20px;
  overflow: auto;
  color: #e5e7eb;
  background: transparent;
  border: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  tab-size: 2;
}

.cssilo-ai-prompt-box__code code {
  color: inherit;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .cssilo-ai-quick-template {
    margin-top: -16px;
    padding: 24px 20px;
    border-radius: 14px;
  }

  .cssilo-ai-prompt-grid {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-prompt-box__code {
    min-height: auto;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .cssilo-ai-prompt-box__header {
    flex-direction: column;
  }

  .cssilo-ai-quick-template button.cssilo-ai-copy {
    width: 100%;
  }
}
/* ==================================================
   PROMPT ENGINEERING — PROMPT ANATOMY
   ================================================== */

.cssilo-ai-anatomy__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
  gap: 18px;
  align-items: stretch;
}

.cssilo-ai-anatomy__prompt {
  min-width: 0;
  overflow: hidden;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 13px;
}

.cssilo-ai-anatomy__prompt-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-anatomy__prompt-label {
  display: block;
  margin-bottom: 5px;
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-anatomy__prompt h3 {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.cssilo-ai-anatomy button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 36px;
  margin: 0;
  padding: 8px 12px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-anatomy button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
  transform: translateY(-1px);
}

.cssilo-ai-anatomy button.cssilo-ai-copy:focus-visible {
  outline: 3px solid rgba(196, 181, 253, 0.5);
  outline-offset: 2px;
}

.cssilo-ai-anatomy__code {
  margin: 0;
  padding: 18px;
  overflow: auto;
  color: #e5e7eb;
  background: transparent;
  border: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  tab-size: 2;
}

.cssilo-ai-anatomy__code code {
  color: inherit;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.65;
}

.cssilo-ai-anatomy__line {
  display: block;
  padding: 10px 12px;
  border-left: 3px solid;
  border-radius: 0 8px 8px 0;
}

.cssilo-ai-anatomy__line--role {
  background: rgba(124, 58, 237, 0.14);
  border-color: #8b5cf6;
}

.cssilo-ai-anatomy__line--task {
  background: rgba(37, 99, 235, 0.14);
  border-color: #3b82f6;
}

.cssilo-ai-anatomy__line--context {
  background: rgba(8, 145, 178, 0.14);
  border-color: #06b6d4;
}

.cssilo-ai-anatomy__line--constraints {
  background: rgba(217, 119, 6, 0.14);
  border-color: #f59e0b;
}

.cssilo-ai-anatomy__line--format {
  background: rgba(5, 150, 105, 0.14);
  border-color: #10b981;
}

.cssilo-ai-anatomy__line--success {
  background: rgba(219, 39, 119, 0.14);
  border-color: #ec4899;
}

/* Anatomy explanation cards */

.cssilo-ai-anatomy__parts {
  display: grid;
  gap: 10px;
}

.cssilo-ai-anatomy__part {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-left: 4px solid;
  border-radius: 10px;
}

.cssilo-ai-anatomy__part-number {
  flex: 0 0 auto;
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.cssilo-ai-anatomy__part h3 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-anatomy__part p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}

.cssilo-ai-anatomy__part--role {
  border-left-color: #8b5cf6;
}

.cssilo-ai-anatomy__part--task {
  border-left-color: #3b82f6;
}

.cssilo-ai-anatomy__part--context {
  border-left-color: #06b6d4;
}

.cssilo-ai-anatomy__part--constraints {
  border-left-color: #f59e0b;
}

.cssilo-ai-anatomy__part--format {
  border-left-color: #10b981;
}

.cssilo-ai-anatomy__part--success {
  border-left-color: #ec4899;
}

@media (max-width: 820px) {
  .cssilo-ai-anatomy__layout {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-anatomy__parts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .cssilo-ai-anatomy__parts {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-anatomy__prompt-header {
    flex-direction: column;
  }

  .cssilo-ai-anatomy button.cssilo-ai-copy {
    width: 100%;
  }

  .cssilo-ai-anatomy__code {
    padding: 14px;
  }
}
/* ==================================================
   PROMPT ENGINEERING — BASIC PROMPT FORMULAS
   ================================================== */

.cssilo-ai-formulas__tip {
  margin-bottom: 22px;
  padding: 14px 16px;
  color: #4c1d95;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-left: 4px solid #8b5cf6;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.cssilo-ai-formulas__tip strong {
  color: #5b21b6;
}

.cssilo-ai-formulas__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cssilo-ai-formula-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  padding: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-formula-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.07);
  transform: translateY(-2px);
}

.cssilo-ai-formula-card--wide {
  grid-column: 1 / -1;
}

.cssilo-ai-formula-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 13px;
}

.cssilo-ai-formula-card__number {
  color: #7c3aed;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-formula-card__use {
  padding: 5px 8px;
  color: #5b21b6;
  background: #ede9fe;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}

.cssilo-ai-formula-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-formula-card__pattern {
  margin: 0 0 14px;
}

.cssilo-ai-formula-card__pattern code {
  display: block;
  overflow-wrap: anywhere;
  padding: 10px 12px;
  color: #f9fafb;
  background: #111827;
  border-radius: 8px;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.55;
}

.cssilo-ai-formula-card__example {
  flex: 1 1 auto;
  margin-bottom: 16px;
  padding: 13px 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
}

.cssilo-ai-formula-card__example > span {
  display: block;
  margin-bottom: 6px;
  color: #7c3aed;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-formula-card__example p {
  margin: 0;
  color: #374151;
  font-size: 13px;
  line-height: 1.65;
}

.cssilo-ai-formulas button.cssilo-ai-copy {
  width: 100%;
  min-height: 40px;
  margin: 0;
  padding: 9px 12px;
  color: #6d28d9;
  background: #ffffff;
  border: 1px solid #c4b5fd;
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.cssilo-ai-formulas button.cssilo-ai-copy:hover {
  color: #ffffff;
  background: #7c3aed;
  border-color: #7c3aed;
}

.cssilo-ai-formulas button.cssilo-ai-copy:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.22);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .cssilo-ai-formulas__grid {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-formula-card--wide {
    grid-column: auto;
  }
}
/* ==================================================
   PROMPT ENGINEERING — PROMPTING TECHNIQUES
   ================================================== */

.cssilo-ai-techniques__grid {
  display: grid;
  gap: 16px;
}

.cssilo-ai-technique-card {
  min-width: 0;
  padding: 22px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-technique-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.07);
  transform: translateY(-2px);
}

.cssilo-ai-technique-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.cssilo-ai-technique-card__number {
  color: #7c3aed;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}

.cssilo-ai-technique-card__badge {
  padding: 6px 9px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
}

.cssilo-ai-technique-card h3 {
  margin: 0 0 9px;
  color: #111827;
  font-size: 21px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-technique-card__definition {
  margin: 0 0 18px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cssilo-ai-technique-card__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.cssilo-ai-technique-card__meta > div {
  min-width: 0;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.cssilo-ai-technique-card__meta span {
  display: block;
  margin-bottom: 6px;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cssilo-ai-technique-card__meta p {
  margin: 0;
  color: #374151;
  font-size: 13px;
  line-height: 1.55;
}

.cssilo-ai-technique-card__meta code {
  display: block;
  overflow-wrap: anywhere;
  color: #5b21b6;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.55;
}

.cssilo-ai-technique-card__example {
  overflow: hidden;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 11px;
}

.cssilo-ai-technique-card__example-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-technique-card__example-header > span {
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cssilo-ai-techniques button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 34px;
  margin: 0;
  padding: 7px 11px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-techniques button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
  transform: translateY(-1px);
}

.cssilo-ai-techniques button.cssilo-ai-copy:focus-visible {
  outline: 3px solid rgba(196, 181, 253, 0.5);
  outline-offset: 2px;
}

.cssilo-ai-technique-card__example pre {
  margin: 0;
  padding: 16px;
  overflow: auto;
  color: #e5e7eb;
  background: transparent;
  border: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.cssilo-ai-technique-card__example code {
  color: inherit;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .cssilo-ai-technique-card {
    padding: 18px;
  }

  .cssilo-ai-technique-card__meta {
    grid-template-columns: 1fr;
  }
}
/* Prompting techniques — continuation header */

.cssilo-ai-techniques--continuation {
  margin-top: -16px;
}

.cssilo-ai-techniques__continuation-header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-techniques__continuation-header h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-techniques__continuation-header p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}
/* ==================================================
   PROMPT ENGINEERING — PROMPT FRAMEWORKS
   ================================================== */

.cssilo-ai-framework-note {
  margin: 0 0 20px;
  padding: 15px 17px;
  color: #5b21b6;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-left: 4px solid #8b5cf6;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.cssilo-ai-framework-card {
  min-width: 0;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.cssilo-ai-framework-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #faf7ff 100%);
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-framework-card__number {
  display: block;
  margin-bottom: 7px;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-framework-card__header h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 23px;
  font-weight: 750;
  line-height: 1.25;
}

.cssilo-ai-framework-card__header p {
  max-width: 620px;
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

.cssilo-ai-framework-card__badge {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
}

.cssilo-ai-framework-card__letters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 20px;
}

.cssilo-ai-framework-card__letters > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  min-width: 0;
  padding: 13px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.cssilo-ai-framework-card__letters > div > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #ffffff;
  background: #7c3aed;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-framework-card__letters p {
  margin: 3px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

.cssilo-ai-framework-card__letters strong {
  color: #111827;
}

.cssilo-ai-framework-card__bottom {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 14px;
  padding: 0 20px 20px;
}

.cssilo-ai-framework-card__best {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
}

.cssilo-ai-framework-card__best span {
  display: block;
  margin-bottom: 7px;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cssilo-ai-framework-card__best p {
  margin: 0;
  color: #374151;
  font-size: 13px;
  line-height: 1.6;
}

.cssilo-ai-framework-card__template {
  min-width: 0;
  overflow: hidden;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 11px;
}

.cssilo-ai-framework-card__template-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-framework-card__template-header span {
  display: block;
  margin-bottom: 4px;
  color: #c4b5fd;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-framework-card__template-header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.cssilo-ai-frameworks button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 34px;
  margin: 0;
  padding: 7px 11px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-frameworks button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
  transform: translateY(-1px);
}

.cssilo-ai-frameworks button.cssilo-ai-copy:focus-visible {
  outline: 3px solid rgba(196, 181, 253, 0.5);
  outline-offset: 2px;
}

.cssilo-ai-framework-card__template pre {
  margin: 0;
  padding: 17px;
  overflow: auto;
  color: #e5e7eb;
  background: transparent;
  border: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.cssilo-ai-framework-card__template code {
  color: inherit;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .cssilo-ai-framework-card__header {
    flex-direction: column;
  }

  .cssilo-ai-framework-card__letters,
  .cssilo-ai-framework-card__bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cssilo-ai-framework-card__header,
  .cssilo-ai-framework-card__letters {
    padding: 18px;
  }

  .cssilo-ai-framework-card__bottom {
    padding: 0 18px 18px;
  }

  .cssilo-ai-framework-card__template-header {
    flex-direction: column;
  }

  .cssilo-ai-frameworks button.cssilo-ai-copy {
    width: 100%;
  }
}
/* Prompt frameworks — continuation cards */
.cssilo-ai-frameworks--continuation {
  margin-top: -16px;
}
/* ==================================================
   PROMPT ENGINEERING — PROMPT MODIFIERS
   ================================================== */

.cssilo-ai-modifiers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cssilo-ai-modifier-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-modifier-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.07);
  transform: translateY(-2px);
}

.cssilo-ai-modifier-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.cssilo-ai-modifier-card__number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-modifier-card h3 {
  margin: 0;
  color: #111827;
  font-size: 19px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-modifier-card > p {
  margin: 0 0 15px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.cssilo-ai-modifier-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}

.cssilo-ai-modifier-card__chips span {
  padding: 6px 9px;
  color: #5b21b6;
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
}

.cssilo-ai-modifier-card__example {
  margin-top: auto;
  overflow: hidden;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 10px;
}

.cssilo-ai-modifier-card__example > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-modifier-card__example > div > span {
  color: #c4b5fd;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cssilo-ai-modifiers button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 32px;
  margin: 0;
  padding: 7px 10px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 7px;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-modifiers button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
  transform: translateY(-1px);
}

.cssilo-ai-modifiers button.cssilo-ai-copy:focus-visible {
  outline: 3px solid rgba(196, 181, 253, 0.5);
  outline-offset: 2px;
}

.cssilo-ai-modifier-card__example code {
  display: block;
  overflow-wrap: anywhere;
  padding: 14px;
  color: #e5e7eb;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .cssilo-ai-modifiers__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .cssilo-ai-modifier-card {
    padding: 17px;
  }
}
/* Prompt modifiers — continuation section */

.cssilo-ai-modifiers--continuation {
  margin-top: -16px;
}

.cssilo-ai-modifiers__continuation-header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-modifiers__continuation-header h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-modifiers__continuation-header p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}
/* ==================================================
   PROMPT ENGINEERING — MODIFIER BUILDER
   ================================================== */

.cssilo-ai-modifier-builder {
  margin: -16px 0 32px;
  padding: 32px;
  color: #111827;
  background: linear-gradient(135deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cssilo-ai-modifier-builder,
.cssilo-ai-modifier-builder * {
  box-sizing: border-box;
}

.cssilo-ai-modifier-builder[hidden] {
  display: none;
}

.cssilo-ai-modifier-builder__header {
  margin-bottom: 22px;
}

.cssilo-ai-modifier-builder__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-modifier-builder__header h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(23px, 3vw, 29px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-modifier-builder__header p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cssilo-ai-modifier-builder__layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: 16px;
}

.cssilo-ai-modifier-builder__controls {
  display: grid;
  gap: 13px;
  padding: 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.cssilo-ai-modifier-builder__field label {
  display: block;
  margin-bottom: 7px;
  color: #374151;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.cssilo-ai-modifier-builder__field select {
  width: 100%;
  min-height: 44px;
  margin: 0;
  padding: 9px 36px 9px 11px;
  color: #111827;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 9px;
  outline: none;
  font: inherit;
  font-size: 13px;
  line-height: 1.4;
}

.cssilo-ai-modifier-builder__field select:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
}

.cssilo-ai-modifier-builder button.cssilo-ai-modifier-builder__reset {
  min-height: 42px;
  margin: 2px 0 0;
  padding: 9px 12px;
  color: #6d28d9;
  background: #ffffff;
  border: 1px solid #c4b5fd;
  border-radius: 9px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
}

.cssilo-ai-modifier-builder button.cssilo-ai-modifier-builder__reset:hover {
  color: #ffffff;
  background: #7c3aed;
  border-color: #7c3aed;
}

.cssilo-ai-modifier-builder__result {
  min-width: 0;
  overflow: hidden;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 12px;
}

.cssilo-ai-modifier-builder__result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-modifier-builder__result-header span {
  display: block;
  margin-bottom: 5px;
  color: #c4b5fd;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-modifier-builder__result-header h4 {
  margin: 0;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}

.cssilo-ai-modifier-builder button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 34px;
  margin: 0;
  padding: 7px 11px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 8px;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}
/* ==================================================
   PROMPT ENGINEERING — OUTPUT FORMATS
   ================================================== */

.cssilo-ai-output-formats__grid {
  display: grid;
  gap: 16px;
}

.cssilo-ai-output-card {
  min-width: 0;
  padding: 20px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-output-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.07);
  transform: translateY(-2px);
}

.cssilo-ai-output-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.cssilo-ai-output-card__number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-output-card__header h3 {
  margin: 0 0 5px;
  color: #111827;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-output-card__header p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.cssilo-ai-output-card__instruction {
  margin-bottom: 12px;
  overflow: hidden;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 10px;
}

.cssilo-ai-output-card__instruction > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-bottom: 1px solid #e9d5ff;
}

.cssilo-ai-output-card__instruction > div > span,
.cssilo-ai-output-card__preview > span {
  color: #7c3aed;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cssilo-ai-output-formats button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 32px;
  margin: 0;
  padding: 7px 10px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 7px;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}

.cssilo-ai-output-formats button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
}

.cssilo-ai-output-card__instruction code {
  display: block;
  overflow-wrap: anywhere;
  padding: 14px;
  color: #5b21b6;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.65;
}

.cssilo-ai-output-card__preview {
  overflow: hidden;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 10px;
}

.cssilo-ai-output-card__preview > span {
  display: block;
  padding: 12px 14px;
  color: #c4b5fd;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-output-card__preview pre {
  margin: 0;
  padding: 15px;
  overflow-x: auto;
  color: #e5e7eb;
  background: transparent;
  border: 0;
  white-space: pre;
}

.cssilo-ai-output-card__preview code {
  color: inherit;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 480px) {
  .cssilo-ai-output-card {
    padding: 17px;
  }
}
/* Output formats — continuation section */

.cssilo-ai-output-formats--continuation {
  margin-top: -16px;
}

.cssilo-ai-output-formats__continuation-header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-output-formats__continuation-header h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-output-formats__continuation-header p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}
/* ==================================================
   PROMPT ENGINEERING — READY-TO-USE TEMPLATES
   ================================================== */

.cssilo-ai-templates__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cssilo-ai-template-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-template-card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.07);
  transform: translateY(-2px);
}

.cssilo-ai-template-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
}

.cssilo-ai-template-card__category {
  display: block;
  margin-bottom: 7px;
  color: #7c3aed;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-template-card__header h3 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-template-card__header p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
}

.cssilo-ai-template-card__number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-template-card__prompt {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  margin: 0 14px 14px;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 10px;
}

.cssilo-ai-template-card__prompt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-template-card__prompt-header > span {
  color: #c4b5fd;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cssilo-ai-templates button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 32px;
  margin: 0;
  padding: 7px 10px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 7px;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}

.cssilo-ai-templates button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
}

.cssilo-ai-template-card__prompt pre {
  flex: 1;
  min-height: 430px;
  margin: 0;
  padding: 16px;
  overflow: auto;
  color: #e5e7eb;
  background: transparent;
  border: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.cssilo-ai-template-card__prompt code {
  color: inherit;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.68;
}

@media (max-width: 760px) {
  .cssilo-ai-templates__grid {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-template-card__prompt pre {
    min-height: auto;
  }
}
/* Prompt templates — continuation section */

.cssilo-ai-templates--continuation {
  margin-top: -16px;
}

.cssilo-ai-templates__continuation-header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-templates__continuation-header h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-templates__continuation-header p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}
.cssilo-ai-modifier-builder button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
}

.cssilo-ai-modifier-builder__result pre {
  min-height: 240px;
  margin: 0;
  padding: 20px;
  overflow: auto;
  color: #e5e7eb;
  background: transparent;
  border: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.cssilo-ai-modifier-builder__result code {
  color: inherit;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.75;
}

.cssilo-ai-modifier-builder__hint {
  margin: 0;
  padding: 0 20px 18px;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .cssilo-ai-modifier-builder {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .cssilo-ai-modifier-builder__layout {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-modifier-builder__result pre {
    min-height: 180px;
  }
}

@media (max-width: 420px) {
  .cssilo-ai-modifier-builder__result-header {
    flex-direction: column;
  }

  .cssilo-ai-modifier-builder button.cssilo-ai-copy {
    width: 100%;
  }
}
/* ==================================================
   PROMPT ENGINEERING — PROMPT IMPROVEMENT
   ================================================== */

.cssilo-ai-improvement__comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 16px;
  margin-bottom: 20px;
}

.cssilo-ai-improvement__panel {
  min-width: 0;
  overflow: hidden;
  border-radius: 13px;
}

.cssilo-ai-improvement__panel--weak {
  background: #fff7f7;
  border: 1px solid #fecaca;
}

.cssilo-ai-improvement__panel--strong {
  background: #111827;
  border: 1px solid #1f2937;
}

.cssilo-ai-improvement__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
}

.cssilo-ai-improvement__panel--weak .cssilo-ai-improvement__panel-header {
  border-bottom: 1px solid #fecaca;
}

.cssilo-ai-improvement__panel--strong .cssilo-ai-improvement__panel-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-improvement__status {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-improvement__panel--weak .cssilo-ai-improvement__status {
  color: #b91c1c;
}

.cssilo-ai-improvement__panel--strong .cssilo-ai-improvement__status {
  color: #c4b5fd;
}

.cssilo-ai-improvement__score {
  padding: 6px 9px;
  color: #991b1b;
  background: #fee2e2;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
}

.cssilo-ai-improvement button.cssilo-ai-copy {
  flex: 0 0 auto;
  min-height: 32px;
  margin: 0;
  padding: 7px 10px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 7px;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
}

.cssilo-ai-improvement button.cssilo-ai-copy:hover {
  background: #6d28d9;
  border-color: #7c3aed;
}

.cssilo-ai-improvement__panel pre {
  margin: 0;
  padding: 17px;
  overflow: auto;
  border: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.cssilo-ai-improvement__panel--weak pre {
  color: #7f1d1d;
  background: #ffffff;
  border-bottom: 1px solid #fecaca;
}

.cssilo-ai-improvement__panel--strong pre {
  color: #e5e7eb;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-ai-improvement__panel code {
  color: inherit;
  background: transparent;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.68;
}

.cssilo-ai-improvement__issues,
.cssilo-ai-improvement__benefits {
  padding: 17px;
}

.cssilo-ai-improvement__issues h3,
.cssilo-ai-improvement__benefits h3 {
  margin: 0 0 11px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-improvement__issues h3 {
  color: #991b1b;
}

.cssilo-ai-improvement__benefits h3 {
  color: #ffffff;
}

.cssilo-ai-improvement__issues ul,
.cssilo-ai-improvement__benefits ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cssilo-ai-improvement__issues li,
.cssilo-ai-improvement__benefits li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.5;
}

.cssilo-ai-improvement__issues li {
  color: #7f1d1d;
}

.cssilo-ai-improvement__benefits li {
  color: #d1d5db;
}

.cssilo-ai-improvement__issues li::before,
.cssilo-ai-improvement__benefits li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 800;
}

.cssilo-ai-improvement__issues li::before {
  color: #dc2626;
  content: "×";
}

.cssilo-ai-improvement__benefits li::before {
  color: #34d399;
  content: "✓";
}

/* Improvement process */

.cssilo-ai-improvement__process {
  padding: 22px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
}

.cssilo-ai-improvement__process-header {
  margin-bottom: 17px;
}

.cssilo-ai-improvement__process-header h3 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-improvement__process-header p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.cssilo-ai-improvement__steps {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cssilo-ai-improvement__steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 13px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.cssilo-ai-improvement__steps li > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-improvement__steps h4 {
  margin: 0 0 4px;
  color: #111827;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-improvement__steps p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .cssilo-ai-improvement__comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cssilo-ai-improvement__process {
    padding: 17px;
  }
}
/* Keep before-and-after panels at their natural height */
.cssilo-ai-improvement__comparison {
  align-items: start;
}
/* ==================================================
   PROMPT ENGINEERING — COMMON MISTAKES
   ================================================== */

.cssilo-ai-mistakes__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cssilo-ai-mistake-card {
  min-width: 0;
  padding: 19px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
}

.cssilo-ai-mistake-card__header {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 15px;
}

.cssilo-ai-mistake-card__number {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 31px;
  height: 31px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-mistake-card__header h3 {
  margin: 0 0 5px;
  color: #111827;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-mistake-card__header p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}

.cssilo-ai-mistake-card__example {
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid;
  border-radius: 9px;
}

.cssilo-ai-mistake-card__example span {
  display: block;
  padding: 8px 11px;
  border-bottom: 1px solid;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-mistake-card__example code {
  display: block;
  overflow-wrap: anywhere;
  padding: 12px;
  background: #ffffff;
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 1.6;
}

.cssilo-ai-mistake-card__example--bad {
  border-color: #fecaca;
}

.cssilo-ai-mistake-card__example--bad span {
  color: #b91c1c;
  background: #fee2e2;
  border-bottom-color: #fecaca;
}

.cssilo-ai-mistake-card__example--bad code {
  color: #7f1d1d;
}

.cssilo-ai-mistake-card__example--good {
  border-color: #a7f3d0;
}

.cssilo-ai-mistake-card__example--good span {
  color: #047857;
  background: #d1fae5;
  border-bottom-color: #a7f3d0;
}

.cssilo-ai-mistake-card__example--good code {
  color: #065f46;
}

.cssilo-ai-mistake-card__fix {
  margin: 14px 0 0;
  padding-top: 13px;
  color: #4b5563;
  border-top: 1px solid #e5e7eb;
  font-size: 13px;
  line-height: 1.6;
}

.cssilo-ai-mistake-card__fix strong {
  color: #111827;
}

@media (max-width: 700px) {
  .cssilo-ai-mistakes__grid {
    grid-template-columns: 1fr;
  }
}
/* Common mistakes — continuation section */

.cssilo-ai-mistakes--continuation {
  margin-top: -16px;
}

.cssilo-ai-mistakes__continuation-header {
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-mistakes__continuation-header h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(22px, 3vw, 27px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-mistakes__continuation-header p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}
/* ==================================================
   PROMPT ENGINEERING — TESTING AND EVALUATION
   ================================================== */

.cssilo-ai-evaluation__scale {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 18px;
}

.cssilo-ai-evaluation__scale span {
  padding: 11px 12px;
  color: #4b5563;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  font-size: 12px;
  line-height: 1.45;
}

.cssilo-ai-evaluation__scale strong {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: 6px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 6px;
  font-size: 10px;
}

.cssilo-ai-evaluation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cssilo-ai-evaluation-card {
  position: relative;
  min-width: 0;
  padding: 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.cssilo-ai-evaluation-card__number {
  display: block;
  margin-bottom: 9px;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}

.cssilo-ai-evaluation-card h3 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-evaluation-card p {
  margin: 0 0 13px;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.6;
}

.cssilo-ai-evaluation-card__check {
  display: block;
  padding: 9px 10px;
  color: #5b21b6;
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.cssilo-ai-evaluation__result {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 15px;
  color: #e5e7eb;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 11px;
}

.cssilo-ai-evaluation__result strong {
  margin-right: auto;
  color: #ffffff;
  font-size: 13px;
}

.cssilo-ai-evaluation__result span {
  padding: 6px 9px;
  color: #ddd6fe;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(196, 181, 253, 0.22);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 700px) {
  .cssilo-ai-evaluation__scale,
  .cssilo-ai-evaluation__grid {
    grid-template-columns: 1fr;
  }

  .cssilo-ai-evaluation__result {
    align-items: flex-start;
    flex-direction: column;
  }

  .cssilo-ai-evaluation__result strong {
    margin-right: 0;
  }
}
/* ==================================================
   PROMPT ENGINEERING — BEST PRACTICES
   ================================================== */

.cssilo-ai-best-practices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.cssilo-ai-best-practice-card {
  min-width: 0;
  padding: 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.cssilo-ai-best-practice-card__header {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-best-practice-card__header > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: #7c3aed;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-best-practice-card__header small {
  display: block;
  margin-bottom: 3px;
  color: #7c3aed;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cssilo-ai-best-practice-card__header h3 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-best-practice-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cssilo-ai-best-practice-card li {
  position: relative;
  margin: 0;
  padding-left: 22px;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.6;
}

.cssilo-ai-best-practice-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #ffffff;
  background: #10b981;
  border-radius: 50%;
  content: "✓";
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-best-practice-card li strong {
  display: block;
  margin-bottom: 2px;
  color: #111827;
  font-size: 12px;
}

.cssilo-ai-best-practices__rule {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 18px;
  padding: 17px;
  color: #e5e7eb;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 11px;
}

.cssilo-ai-best-practices__rule span {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: #ddd6fe;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(196, 181, 253, 0.25);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cssilo-ai-best-practices__rule p {
  margin: 1px 0 0;
  color: #e5e7eb;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .cssilo-ai-best-practices__rule {
    flex-direction: column;
  }
}
/* ==================================================
   PROMPT ENGINEERING — FAQ
   ================================================== */

.cssilo-ai-faq__list {
  display: grid;
  gap: 10px;
}

.cssilo-ai-faq__item {
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cssilo-ai-faq__item[open] {
  background: #ffffff;
  border-color: #c4b5fd;
  box-shadow: 0 6px 16px rgba(76, 29, 149, 0.06);
}

.cssilo-ai-faq__item summary {
  position: relative;
  padding: 17px 50px 17px 18px;
  color: #111827;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

.cssilo-ai-faq__item summary::-webkit-details-marker {
  display: none;
}

.cssilo-ai-faq__item summary::after {
  position: absolute;
  top: 50%;
  right: 17px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  color: #6d28d9;
  background: #ede9fe;
  border-radius: 8px;
  content: "+";
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(-50%);
}

.cssilo-ai-faq__item[open] summary::after {
  content: "−";
}

.cssilo-ai-faq__item summary:hover {
  color: #6d28d9;
}

.cssilo-ai-faq__item summary:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.2);
  outline-offset: -3px;
}

.cssilo-ai-faq__item > div {
  padding: 0 18px 18px;
  border-top: 1px solid #e5e7eb;
}

.cssilo-ai-faq__item p {
  margin: 15px 0 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.7;
}
/* ==================================================
   PROMPT ENGINEERING — RELATED CHEAT SHEETS
   ================================================== */

.cssilo-ai-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.cssilo-ai-related-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 17px;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-related-card:hover {
  color: #111827;
  background: #faf7ff;
  border-color: #c4b5fd;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.07);
  transform: translateY(-2px);
}

.cssilo-ai-related-card:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.22);
  outline-offset: 2px;
}

.cssilo-ai-related-card__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-related-card__content {
  display: block;
  min-width: 0;
}

.cssilo-ai-related-card__content small {
  display: block;
  margin-bottom: 4px;
  color: #7c3aed;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-related-card__content strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-related-card__content > span {
  display: block;
  color: #4b5563;
  font-size: 12px;
  line-height: 1.5;
}

.cssilo-ai-related-card__arrow {
  flex: 0 0 auto;
  margin-left: auto;
  color: #9ca3af;
  font-size: 20px;
  line-height: 1;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-related-card:hover .cssilo-ai-related-card__arrow {
  color: #7c3aed;
  transform: translateX(3px);
}

.cssilo-ai-related__coming {
  margin-top: 17px;
  padding: 16px;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 11px;
}

.cssilo-ai-related__coming > span {
  display: block;
  margin-bottom: 10px;
  color: #c4b5fd;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-related__coming ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cssilo-ai-related__coming li {
  margin: 0;
  padding: 7px 10px;
  color: #e5e7eb;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(196, 181, 253, 0.2);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
}

@media (max-width: 700px) {
  .cssilo-ai-related__grid {
    grid-template-columns: 1fr;
  }
}
/* Prompt Engineering post — hide default post metadata */
body.postid-456 .entry-meta,
body.postid-456 .post-navigation,
body.postid-456 .comments-area {
  display: none;
}
/* ==================================================
   PROMPT ENGINEERING — OFFICIAL RESOURCES
   ================================================== */

.cssilo-ai-resources {
  margin: 0 0 32px;
  padding: 32px;
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.cssilo-ai-resources,
.cssilo-ai-resources * {
  box-sizing: border-box;
}

.cssilo-ai-resources[hidden] {
  display: none;
}

.cssilo-ai-resources__header {
  margin-bottom: 21px;
  padding-bottom: 19px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-ai-resources__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-resources__header h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(23px, 3vw, 29px);
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.cssilo-ai-resources__header p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cssilo-ai-resources__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cssilo-ai-resource-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  color: #111827;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-resource-card:hover {
  color: #111827;
  background: #faf7ff;
  border-color: #c4b5fd;
  box-shadow: 0 7px 18px rgba(76, 29, 149, 0.07);
  transform: translateY(-2px);
}

.cssilo-ai-resource-card:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.22);
  outline-offset: 2px;
}

.cssilo-ai-resource-card__brand {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: #111827;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.cssilo-ai-resource-card > span:nth-child(2) {
  display: block;
  min-width: 0;
}

.cssilo-ai-resource-card small {
  display: block;
  margin-bottom: 3px;
  color: #7c3aed;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-ai-resource-card strong {
  display: block;
  margin-bottom: 4px;
  color: #111827;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}

.cssilo-ai-resource-card > span:nth-child(2) > span {
  display: block;
  color: #4b5563;
  font-size: 11px;
  line-height: 1.45;
}

.cssilo-ai-resource-card__external {
  flex: 0 0 auto;
  margin-left: auto;
  color: #9ca3af;
  font-size: 17px;
  line-height: 1;
}

.cssilo-ai-resource-card:hover .cssilo-ai-resource-card__external {
  color: #7c3aed;
}

@media (max-width: 700px) {
  .cssilo-ai-resources {
    padding: 24px 20px;
    border-radius: 14px;
  }

  .cssilo-ai-resources__grid {
    grid-template-columns: 1fr;
  }
}
/* ==================================================
   HOMEPAGE — PREMIUM HERO
   ================================================== */

.cssilo-home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  margin: 0 0 48px;
  padding: 56px;
  overflow: hidden;
  color: #111827;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(124, 58, 237, 0.16),
      transparent 34%
    ),
    linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.cssilo-home-hero,
.cssilo-home-hero * {
  box-sizing: border-box;
}

.cssilo-home-hero::before {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 330px;
  height: 330px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.cssilo-home-hero__content {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.cssilo-home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 7px 12px;
  color: #6d28d9;
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cssilo-home-hero__title {
  max-width: 720px;
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.cssilo-home-hero__description {
  max-width: 680px;
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.7;
}

.cssilo-home-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 670px;
  margin: 0 0 20px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cssilo-home-search:focus-within {
  border-color: #7c3aed;
  box-shadow:
    0 0 0 4px rgba(124, 58, 237, 0.12),
    0 8px 24px rgba(15, 23, 42, 0.07);
}

.cssilo-home-search__icon {
  position: absolute;
  left: 20px;
  color: #6b7280;
  pointer-events: none;
}

.cssilo-home-search__input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  margin: 0;
  padding: 11px 16px 11px 48px;
  color: #111827;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 15px;
}

.cssilo-home-search__input::placeholder {
  color: #6b7280;
  opacity: 1;
}

.cssilo-home-search__button {
  flex: 0 0 auto;
  min-height: 46px;
  margin: 0;
  padding: 11px 22px;
  color: #ffffff;
  background: #7c3aed;
  border: 1px solid #7c3aed;
  border-radius: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-home-search__button:hover {
  background: #6d28d9;
  border-color: #6d28d9;
  transform: translateY(-1px);
}

.cssilo-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.cssilo-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-home-button:hover {
  transform: translateY(-2px);
}

.cssilo-home-button--primary {
  color: #ffffff;
  background: #111827;
  border-color: #111827;
}

.cssilo-home-button--primary:hover {
  color: #ffffff;
  background: #1f2937;
  border-color: #1f2937;
}

.cssilo-home-button--secondary {
  color: #6d28d9;
  background: #ffffff;
  border-color: #ddd6fe;
}

.cssilo-home-button--secondary:hover {
  color: #5b21b6;
  background: #faf5ff;
  border-color: #c4b5fd;
}

.cssilo-home-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  color: #4b5563;
  list-style: none;
  font-size: 13px;
  font-weight: 650;
}

.cssilo-home-hero__features li {
  position: relative;
  margin: 0;
  padding-left: 20px;
}

.cssilo-home-hero__features li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  color: #ffffff;
  background: #7c3aed;
  border-radius: 50%;
  content: "✓";
  font-size: 9px;
  font-weight: 800;
  line-height: 14px;
  text-align: center;
  transform: translateY(-50%);
}

.cssilo-home-hero__visual {
  position: relative;
  z-index: 1;
  min-height: 390px;
}

.cssilo-home-visual-card {
  position: absolute;
  width: min(100%, 300px);
  padding: 22px;
  background: #111827;
  border: 1px solid rgba(167, 139, 250, 0.4);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.cssilo-home-visual-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
}

.cssilo-home-visual-card div {
  height: 8px;
  margin-top: 10px;
  background: #374151;
  border-radius: 999px;
}

.cssilo-home-visual-card div:nth-of-type(1) {
  width: 88%;
  background: #a78bfa;
}

.cssilo-home-visual-card div:nth-of-type(2) {
  width: 68%;
}

.cssilo-home-visual-card div:nth-of-type(3) {
  width: 78%;
}

.cssilo-home-visual-card--one {
  top: 8px;
  left: 0;
  transform: rotate(-3deg);
}

.cssilo-home-visual-card--two {
  top: 125px;
  right: 0;
  z-index: 2;
  transform: rotate(3deg);
}

.cssilo-home-visual-card--three {
  bottom: 5px;
  left: 18px;
  transform: rotate(-1deg);
}

@media (max-width: 900px) {
  .cssilo-home-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 36px;
  }

  .cssilo-home-hero__visual {
    min-height: 330px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .cssilo-home-hero {
    gap: 30px;
    margin-bottom: 36px;
    padding: 32px 22px;
    border-radius: 16px;
  }

  .cssilo-home-hero__title {
    font-size: clamp(33px, 10vw, 42px);
  }

  .cssilo-home-hero__description {
    font-size: 15px;
    line-height: 1.65;
  }

  .cssilo-home-search {
    display: grid;
    grid-template-columns: 1fr;
    padding: 5px;
  }

  .cssilo-home-search__input {
    padding-right: 15px;
  }

  .cssilo-home-search__button {
    width: 100%;
  }

  .cssilo-home-hero__actions {
    display: grid;
  }

  .cssilo-home-button {
    width: 100%;
  }

  .cssilo-home-hero__visual {
    min-height: 290px;
  }

  .cssilo-home-visual-card {
    width: 82%;
    padding: 17px;
  }

  .cssilo-home-visual-card--two {
    top: 100px;
  }
}
/* Homepage search alignment fix */
form.cssilo-home-search input.cssilo-home-search__input {
  min-height: 48px;
  margin: 0;
  padding: 11px 16px 11px 52px !important;
  background: transparent;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
  outline: 0;
  appearance: none;
}

form.cssilo-home-search .cssilo-home-search__icon {
  left: 19px;
  z-index: 2;
}

form.cssilo-home-search .cssilo-home-search__button {
  margin: 0;
  white-space: nowrap;
}
/* Remove homepage search icon */
.cssilo-home-search .cssilo-home-search__icon {
  display: none !important;
}

form.cssilo-home-search input.cssilo-home-search__input {
  padding-left: 16px !important;
}
/* ==================================================
   HOMEPAGE — FEATURED CHEAT SHEET LIBRARY
   ================================================== */

.cssilo-home-library {
  margin: 0 0 56px;
  padding: 48px;
  color: #111827;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  scroll-margin-top: 28px;
}

.cssilo-home-library,
.cssilo-home-library * {
  box-sizing: border-box;
}

.cssilo-home-library__header {
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-home-library__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cssilo-home-library__title {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.cssilo-home-library__description {
  max-width: 720px;
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

.cssilo-home-library__count {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: #6d28d9;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.cssilo-home-library__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cssilo-home-card {
  --cssilo-card-accent: #7c3aed;
  --cssilo-card-soft: #f5f3ff;

  position: relative;
  display: flex;
  min-width: 0;
  min-height: 380px;
  padding: 24px;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      var(--cssilo-card-soft) 0,
      #ffffff 112px
    );
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.cssilo-home-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--cssilo-card-accent);
  content: "";
}

.cssilo-home-card:hover {
  border-color: color-mix(
    in srgb,
    var(--cssilo-card-accent) 40%,
    #e5e7eb
  );
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-5px);
}

.cssilo-home-card--sql {
  --cssilo-card-accent: #2563eb;
  --cssilo-card-soft: #eff6ff;
}

.cssilo-home-card--python {
  --cssilo-card-accent: #0f766e;
  --cssilo-card-soft: #f0fdfa;
}

.cssilo-home-card--javascript {
  --cssilo-card-accent: #ca8a04;
  --cssilo-card-soft: #fefce8;
}

.cssilo-home-card--excel {
  --cssilo-card-accent: #15803d;
  --cssilo-card-soft: #f0fdf4;
}

.cssilo-home-card--chatgpt,
.cssilo-home-card--prompts {
  --cssilo-card-accent: #7c3aed;
  --cssilo-card-soft: #faf5ff;
}

.cssilo-home-card__top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.cssilo-home-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: var(--cssilo-card-accent);
  border-radius: 13px;
  box-shadow: 0 8px 18px color-mix(
    in srgb,
    var(--cssilo-card-accent) 25%,
    transparent
  );
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.cssilo-home-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--cssilo-card-accent);
  background: #ffffff;
  border: 1px solid color-mix(
    in srgb,
    var(--cssilo-card-accent) 24%,
    #e5e7eb
  );
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
}

.cssilo-home-card__badge--new {
  color: #ffffff;
  background: #7c3aed;
  border-color: #7c3aed;
}

.cssilo-home-card__content {
  margin-bottom: 20px;
}

.cssilo-home-card__category {
  display: block;
  margin-bottom: 7px;
  color: var(--cssilo-card-accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.cssilo-home-card__title {
  margin: 0 0 11px;
  color: #111827;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.cssilo-home-card__description {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

.cssilo-home-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  margin-bottom: 22px;
}

.cssilo-home-card__topics span {
  padding: 5px 8px;
  color: #4b5563;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
}

.cssilo-home-card__link {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  padding: 11px 14px;
  color: #ffffff;
  background: #111827;
  border: 1px solid #111827;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.cssilo-home-card__link span {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.cssilo-home-card__link:hover {
  color: #ffffff;
  background: var(--cssilo-card-accent);
  border-color: var(--cssilo-card-accent);
}

.cssilo-home-card__link:hover span {
  transform: translateX(3px);
}

.cssilo-home-card__link:focus-visible {
  outline: 3px solid color-mix(
    in srgb,
    var(--cssilo-card-accent) 28%,
    transparent
  );
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .cssilo-home-library__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .cssilo-home-library {
    margin-bottom: 40px;
    padding: 30px 20px;
    border-radius: 16px;
  }

  .cssilo-home-library__header {
    display: block;
    margin-bottom: 24px;
    padding-bottom: 22px;
  }

  .cssilo-home-library__count {
    display: inline-flex;
    margin-top: 17px;
  }

  .cssilo-home-library__grid {
    grid-template-columns: 1fr;
  }

  .cssilo-home-card {
    min-height: 350px;
    padding: 22px;
  }
}
/* ==================================================
   HOMEPAGE — BROWSE BY CATEGORY
   ================================================== */

.cssilo-home-categories {
  margin: 0 0 56px;
  padding: 48px;
  color: #111827;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
}

.cssilo-home-categories,
.cssilo-home-categories * {
  box-sizing: border-box;
}

.cssilo-home-categories__header {
  max-width: 760px;
  margin-bottom: 30px;
}

.cssilo-home-categories__eyebrow {
  display: block;
  margin-bottom: 9px;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cssilo-home-categories__title {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.cssilo-home-categories__description {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.65;
}

.cssilo-home-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cssilo-home-category {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.cssilo-home-category:hover {
  border-color: #c4b5fd;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-3px);
}

.cssilo-home-category__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: #111827;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.cssilo-home-category--ai .cssilo-home-category__icon {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.cssilo-home-category__content {
  min-width: 0;
}

.cssilo-home-category__label {
  display: block;
  margin-bottom: 6px;
  color: #7c3aed;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.cssilo-home-category__title {
  margin: 0 0 9px;
  color: #111827;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.cssilo-home-category__description {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.cssilo-home-category__links {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid #e5e7eb;
  list-style: none;
}

.cssilo-home-category__links li {
  margin: 0;
}

.cssilo-home-category__links a,
.cssilo-home-category__coming {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.cssilo-home-category__links a {
  color: #374151;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.cssilo-home-category__links a:hover {
  color: #6d28d9;
  background: #f5f3ff;
}

.cssilo-home-category__links a span {
  color: #7c3aed;
  font-size: 17px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.cssilo-home-category__links a:hover span {
  transform: translateX(3px);
}

.cssilo-home-category__coming {
  justify-content: flex-start;
  color: #9ca3af;
  background: #f9fafb;
  font-weight: 650;
}

@media (max-width: 850px) {
  .cssilo-home-categories__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cssilo-home-categories {
    margin-bottom: 40px;
    padding: 30px 20px;
    border-radius: 16px;
  }

  .cssilo-home-category {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 18px;
  }

  .cssilo-home-category__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 11px;
  }

  .cssilo-home-category__title {
    font-size: 19px;
  }
}
/* AI sections — consistent purple copy buttons */
.cssilo-ai-section button.cssilo-ai-copy {
  min-height: 36px;
  margin: 0;
  padding: 8px 13px;
  color: #ffffff !important;
  background: #7c3aed !important;
  border: 1px solid #8b5cf6 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.cssilo-ai-section button.cssilo-ai-copy:hover {
  background: #6d28d9 !important;
  border-color: #7c3aed !important;
  transform: translateY(-1px);
}

.cssilo-ai-section button.cssilo-ai-copy:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.3);
  outline-offset: 2px;
}
/* =========================================================
   AI Prompt Modifiers — Hero
   ========================================================= */

.cssilo-mod-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: center;
  margin: 0 0 32px;
  padding: 48px;
  overflow: hidden;
  color: #111827;
  background:
    radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #faf8ff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.cssilo-mod-hero::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.cssilo-mod-hero__content,
.cssilo-mod-hero__preview {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.cssilo-mod-hero__eyebrow {
  margin: 0 0 14px;
  color: #6d28d9;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cssilo-mod-hero__title {
  max-width: 760px;
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.cssilo-mod-hero__lead {
  max-width: 760px;
  margin: 0 0 14px;
  color: #374151;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.cssilo-mod-hero__description {
  max-width: 760px;
  margin: 0;
  color: #596579;
  font-size: 1rem;
  line-height: 1.75;
}

.cssilo-mod-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.cssilo-mod-hero__features li {
  position: relative;
  margin: 0;
  padding: 8px 12px 8px 30px;
  color: #4c1d95;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: 999px;
}

.cssilo-mod-hero__features li::before {
  content: "✓";
  position: absolute;
  top: 8px;
  left: 12px;
  color: #7c3aed;
  font-weight: 900;
}

.cssilo-mod-hero__preview {
  padding: 24px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.18);
}

.cssilo-mod-hero__preview-label {
  margin: 0 0 8px;
  color: #c4b5fd;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-mod-hero__prompt {
  margin: 0;
  padding: 14px 16px;
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.65;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  overflow-wrap: anywhere;
}

.cssilo-mod-hero__prompt--enhanced {
  color: #f5f3ff;
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(167, 139, 250, 0.55);
}

.cssilo-mod-hero__arrow {
  margin: 12px 0;
  color: #a78bfa;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

@media (max-width: 900px) {
  .cssilo-mod-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px;
  }

  .cssilo-mod-hero__preview {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .cssilo-mod-hero {
    gap: 26px;
    padding: 28px 22px;
    border-radius: 16px;
  }

  .cssilo-mod-hero__title {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .cssilo-mod-hero__features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cssilo-mod-hero__preview {
    padding: 18px;
  }
}
/* =========================================================
   AI Prompt Modifiers — Content Search
   ========================================================= */

.cssilo-mod-search {
  margin: 0 0 32px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.cssilo-mod-search__header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cssilo-mod-search__eyebrow {
  margin: 0 0 8px;
  color: #7c3aed;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cssilo-mod-search__title {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.cssilo-mod-search__description {
  max-width: 680px;
  margin: 0;
  color: #596579;
  line-height: 1.7;
}

.cssilo-mod-search__status {
  flex: 0 0 auto;
  min-height: 24px;
  margin: 2px 0 0;
  color: #6d28d9;
  font-size: 0.86rem;
  font-weight: 700;
}

.cssilo-mod-search__field {
  max-width: 900px;
}

.cssilo-mod-search__label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-size: 0.86rem;
  font-weight: 700;
}

.cssilo-mod-search__control {
  position: relative;
  display: flex;
  align-items: center;
}

.cssilo-mod-search__icon {
  position: absolute;
  left: 17px;
  color: #7c3aed;
  font-size: 1.25rem;
  line-height: 1;
  pointer-events: none;
}

.cssilo-mod-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 86px 13px 48px;
  color: #111827;
  font: inherit;
  line-height: 1.5;
  background: #fafafa;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.cssilo-mod-search__input::placeholder {
  color: #8791a1;
}

.cssilo-mod-search__input:hover {
  border-color: #a78bfa;
}

.cssilo-mod-search__input:focus {
  background: #ffffff;
  border-color: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.13);
}

.cssilo-mod-search__clear {
  position: absolute;
  right: 10px;
  min-height: 36px;
  padding: 7px 12px;
  color: #5b21b6;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  background: #ede9fe;
  border: 0;
  border-radius: 8px;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.cssilo-mod-search__clear:hover {
  color: #ffffff;
  background: #7c3aed;
}

.cssilo-mod-search__clear:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.28);
  outline-offset: 2px;
}

.cssilo-mod-search__hint {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .cssilo-mod-search {
    padding: 24px 20px;
  }

  .cssilo-mod-search__header {
    display: block;
  }

  .cssilo-mod-search__status {
    margin-top: 10px;
  }

  .cssilo-mod-search__input {
    min-height: 52px;
    padding-left: 44px;
  }
}
.cssilo-mod-search__input {
  padding-left: 16px;
}
/* =========================================================
   AI Prompt Modifiers — Table of Contents
   ========================================================= */

.cssilo-mod-toc {
  margin: 0 0 32px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.cssilo-mod-toc__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-mod-toc__eyebrow {
  margin: 0 0 8px;
  color: #7c3aed;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cssilo-mod-toc__title {
  margin: 0;
  color: #111827;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.cssilo-mod-toc__count {
  flex: 0 0 auto;
  padding: 7px 11px;
  color: #5b21b6;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  background: #ede9fe;
  border: 1px solid #ddd6fe;
  border-radius: 999px;
}

.cssilo-mod-toc__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
}

.cssilo-mod-toc__group {
  min-width: 0;
}

.cssilo-mod-toc__group:last-child {
  grid-column: 1 / -1;
}

.cssilo-mod-toc__group-title {
  margin: 0 0 12px;
  color: #4c1d95;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cssilo-mod-toc__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 28px;
}

.cssilo-mod-toc__list li {
  margin: 0;
  padding-left: 3px;
  color: #7c3aed;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.cssilo-mod-toc__list a {
  display: inline;
  color: #374151;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.cssilo-mod-toc__list a:hover {
  color: #6d28d9;
  text-decoration: underline;
}

.cssilo-mod-toc__list a:focus-visible {
  color: #5b21b6;
  border-radius: 3px;
  outline: 3px solid rgba(124, 58, 237, 0.22);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .cssilo-mod-toc {
    padding: 26px 22px;
  }

  .cssilo-mod-toc__header {
    display: block;
  }

  .cssilo-mod-toc__count {
    display: inline-block;
    margin-top: 14px;
  }

  .cssilo-mod-toc__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cssilo-mod-toc__group:last-child {
    grid-column: auto;
  }
}
/* =========================================================
   AI Prompt Modifiers — Sections and Quick Reference
   ========================================================= */

.cssilo-mod-section {
  scroll-margin-top: 90px;
  margin: 0 0 32px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.cssilo-mod-section__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.cssilo-mod-section__number {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(109, 40, 217, 0.2);
}

.cssilo-mod-section__eyebrow {
  margin: 0 0 7px;
  color: #7c3aed;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-mod-section__title {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.cssilo-mod-section__description {
  max-width: 850px;
  margin: 0;
  color: #596579;
  line-height: 1.75;
}

.cssilo-mod-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cssilo-mod-quick-card {
  min-width: 0;
  padding: 20px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.cssilo-mod-quick-card:hover {
  transform: translateY(-2px);
  border-color: #c4b5fd;
  box-shadow: 0 10px 22px rgba(76, 29, 149, 0.08);
}

.cssilo-mod-quick-card h3 {
  margin: 0 0 8px;
  color: #312e81;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.cssilo-mod-quick-card p {
  margin: 0 0 14px;
  color: #596579;
  font-size: 0.88rem;
  line-height: 1.65;
}

.cssilo-mod-quick-card code {
  display: block;
  padding: 9px 10px;
  color: #5b21b6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  background: #f3f0ff;
  border: 1px solid #e4ddff;
  border-radius: 8px;
}

.cssilo-mod-copy-box {
  margin-top: 24px;
  overflow: hidden;
  background: #111827;
  border: 1px solid #263244;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.13);
}

.cssilo-mod-copy-box__header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #374151;
}

.cssilo-mod-copy-box__label {
  margin: 0 0 4px;
  color: #c4b5fd;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cssilo-mod-copy-box h3 {
  margin: 0;
  color: #f9fafb;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.4;
}

.cssilo-mod-copy {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  color: #ffffff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  background: #7c3aed;
  border: 1px solid #8b5cf6;
  border-radius: 8px;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.cssilo-mod-copy:hover {
  background: #6d28d9;
  transform: translateY(-1px);
}

.cssilo-mod-copy:focus-visible {
  outline: 3px solid rgba(196, 181, 253, 0.55);
  outline-offset: 3px;
}

.cssilo-mod-copy-box pre {
  max-width: 100%;
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #e5e7eb;
  background: #111827;
  border: 0;
  border-radius: 0;
  white-space: pre;
}

.cssilo-mod-copy-box pre code {
  color: inherit;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.7;
  background: transparent;
}

.cssilo-mod-tip {
  margin-top: 22px;
  padding: 16px 18px;
  color: #4c1d95;
  line-height: 1.7;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-left: 4px solid #7c3aed;
  border-radius: 10px;
}

.cssilo-mod-tip strong {
  color: #5b21b6;
}

@media (max-width: 900px) {
  .cssilo-mod-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .cssilo-mod-section {
    padding: 26px 20px;
  }

  .cssilo-mod-section__header {
    display: block;
  }

  .cssilo-mod-section__number {
    margin-bottom: 16px;
  }

  .cssilo-mod-quick-grid {
    grid-template-columns: 1fr;
  }

  .cssilo-mod-copy-box__header {
    align-items: flex-start;
  }

  .cssilo-mod-copy-box pre {
    padding: 18px;
  }
}
/* =========================================================
   AI Prompt Modifiers — Modifier Tables
   ========================================================= */

.cssilo-mod-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  -webkit-overflow-scrolling: touch;
}

.cssilo-mod-table {
  width: 100%;
  min-width: 850px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  color: #374151;
  font-size: 0.88rem;
  line-height: 1.6;
  background: #ffffff;
}

.cssilo-mod-table th,
.cssilo-mod-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-mod-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #312e81;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #f5f3ff;
}

.cssilo-mod-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.cssilo-mod-table tbody tr {
  transition: background-color 150ms ease;
}

.cssilo-mod-table tbody tr:hover {
  background: #f7f5ff;
}

.cssilo-mod-table tbody tr:last-child td {
  border-bottom: 0;
}

.cssilo-mod-table th:first-child {
  width: 105px;
}

.cssilo-mod-table th:nth-child(2) {
  width: 38%;
}

.cssilo-mod-table th:last-child,
.cssilo-mod-table td:last-child {
  width: 76px;
  text-align: center;
}

.cssilo-mod-table code {
  color: #4c1d95;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
  white-space: normal;
  background: transparent;
}

.cssilo-mod-tag {
  display: inline-block;
  padding: 5px 9px;
  color: #5b21b6;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  background: #ede9fe;
  border: 1px solid #ddd6fe;
  border-radius: 999px;
}

.cssilo-mod-copy--small {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.74rem;
}

.cssilo-mod-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .cssilo-mod-table {
    min-width: 760px;
  }

  .cssilo-mod-table th,
  .cssilo-mod-table td {
    padding: 13px 14px;
  }
}
/* =========================================================
   AI Prompt Modifiers — Before and After Examples
   ========================================================= */

.cssilo-mod-example-grid {
  display: grid;
  gap: 20px;
}

.cssilo-mod-example {
  padding: 22px;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.cssilo-mod-example__header {
  margin-bottom: 16px;
}

.cssilo-mod-example__category {
  margin: 0 0 5px;
  color: #7c3aed;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cssilo-mod-example__header h3 {
  margin: 0;
  color: #111827;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
}

.cssilo-mod-example__comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 14px;
}

.cssilo-mod-example__panel {
  min-width: 0;
  padding: 17px;
  color: #596579;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 11px;
}

.cssilo-mod-example__panel--enhanced {
  color: #312e81;
  background: #f5f3ff;
  border-color: #c4b5fd;
}

.cssilo-mod-example__panel-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 9px;
}

.cssilo-mod-example__label {
  margin: 0 0 9px;
  color: #6b7280;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cssilo-mod-example__panel--enhanced .cssilo-mod-example__label {
  color: #6d28d9;
}

.cssilo-mod-example__panel-header .cssilo-mod-example__label {
  margin-bottom: 0;
}

.cssilo-mod-example__panel > p:last-child,
.cssilo-mod-example__panel-header + p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.cssilo-mod-example__result {
  margin: 15px 0 0;
  color: #596579;
  font-size: 0.86rem;
  line-height: 1.65;
}

.cssilo-mod-example__result strong {
  color: #4c1d95;
}

@media (max-width: 700px) {
  .cssilo-mod-example {
    padding: 18px;
  }

  .cssilo-mod-example__comparison {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   AI Prompt Modifiers — FAQ
   ========================================================= */

.cssilo-mod-faq {
  display: grid;
  gap: 12px;
}

.cssilo-mod-faq__item {
  overflow: hidden;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.cssilo-mod-faq__item[open] {
  background: #ffffff;
  border-color: #c4b5fd;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.06);
}

.cssilo-mod-faq__item summary {
  position: relative;
  padding: 18px 52px 18px 18px;
  color: #1f2937;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.cssilo-mod-faq__item summary::-webkit-details-marker {
  display: none;
}

.cssilo-mod-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #6d28d9;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  background: #ede9fe;
  border-radius: 50%;
  transform: translateY(-50%);
}

.cssilo-mod-faq__item[open] summary::after {
  content: "−";
  color: #ffffff;
  background: #7c3aed;
}

.cssilo-mod-faq__item summary:hover {
  color: #5b21b6;
}

.cssilo-mod-faq__item summary:focus-visible {
  border-radius: 10px;
  outline: 3px solid rgba(124, 58, 237, 0.24);
  outline-offset: -3px;
}

.cssilo-mod-faq__answer {
  padding: 0 18px 18px;
  border-top: 1px solid #ede9fe;
}

.cssilo-mod-faq__answer p {
  margin: 16px 0 0;
  color: #596579;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .cssilo-mod-faq__item summary {
    padding: 16px 48px 16px 16px;
  }

  .cssilo-mod-faq__answer {
    padding: 0 16px 16px;
  }
}
/* =========================================================
   AI Prompt Modifiers — Related Cheat Sheets
   ========================================================= */

.cssilo-mod-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cssilo-mod-related__card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 22px;
  flex-direction: column;
  background: linear-gradient(145deg, #ffffff, #faf8ff);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.cssilo-mod-related__card:hover {
  transform: translateY(-3px);
  border-color: #c4b5fd;
  box-shadow: 0 14px 28px rgba(76, 29, 149, 0.09);
}

.cssilo-mod-related__category {
  margin: 0 0 12px;
  color: #7c3aed;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cssilo-mod-related__card h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.4;
}

.cssilo-mod-related__card h3 a {
  color: #1f2937;
  text-decoration: none;
}

.cssilo-mod-related__card h3 a:hover {
  color: #6d28d9;
}

.cssilo-mod-related__card h3 a:focus-visible,
.cssilo-mod-related__link:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(124, 58, 237, 0.24);
  outline-offset: 3px;
}

.cssilo-mod-related__card > p:not(.cssilo-mod-related__category) {
  margin: 0 0 20px;
  color: #596579;
  font-size: 0.88rem;
  line-height: 1.7;
}

.cssilo-mod-related__link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: auto;
  color: #6d28d9;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.cssilo-mod-related__link:hover {
  color: #4c1d95;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .cssilo-mod-related {
    grid-template-columns: 1fr;
  }

  .cssilo-mod-related__card {
    min-height: 0;
  }
}
/* =========================================================
   AI Prompt Frameworks — Hero
   ========================================================= */

.cssilo-fw-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  gap: 40px;
  align-items: center;
  margin: 0 0 32px;
  padding: 48px;
  overflow: hidden;
  color: #111827;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.13), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.cssilo-fw-hero::before {
  content: "";
  position: absolute;
  top: -95px;
  right: -80px;
  width: 230px;
  height: 230px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.cssilo-fw-hero__content,
.cssilo-fw-hero__selector {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.cssilo-fw-hero__eyebrow {
  margin: 0 0 14px;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cssilo-fw-hero__title {
  max-width: 760px;
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(2.15rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.cssilo-fw-hero__lead {
  max-width: 760px;
  margin: 0 0 14px;
  color: #374151;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.75;
}

.cssilo-fw-hero__description {
  max-width: 760px;
  margin: 0;
  color: #596579;
  font-size: 1rem;
  line-height: 1.75;
}

.cssilo-fw-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.cssilo-fw-hero__features li {
  position: relative;
  margin: 0;
  padding: 8px 12px 8px 30px;
  color: #1e40af;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
}

.cssilo-fw-hero__features li::before {
  content: "✓";
  position: absolute;
  top: 8px;
  left: 12px;
  color: #2563eb;
  font-weight: 900;
}

.cssilo-fw-hero__selector {
  padding: 24px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.2);
}

.cssilo-fw-hero__selector-label {
  margin: 0 0 14px;
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-fw-hero__choice {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  color: #dbeafe;
  background: rgba(30, 64, 175, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 10px;
}

.cssilo-fw-hero__choice + .cssilo-fw-hero__choice {
  margin-top: 10px;
}

.cssilo-fw-hero__choice-name {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.cssilo-fw-hero__choice-use {
  color: #bfdbfe;
  font-size: 0.82rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .cssilo-fw-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px;
  }

  .cssilo-fw-hero__selector {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .cssilo-fw-hero {
    gap: 26px;
    padding: 28px 22px;
    border-radius: 16px;
  }

  .cssilo-fw-hero__title {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .cssilo-fw-hero__features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cssilo-fw-hero__selector {
    padding: 18px;
  }

  .cssilo-fw-hero__choice {
    grid-template-columns: 66px minmax(0, 1fr);
  }
}
/* =========================================================
   AI Prompt Frameworks — Content Search
   ========================================================= */

.cssilo-fw-search {
  margin: 0 0 32px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.cssilo-fw-search__header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cssilo-fw-search__eyebrow {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cssilo-fw-search__title {
  margin: 0 0 8px;
  color: #111827;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.cssilo-fw-search__description {
  max-width: 680px;
  margin: 0;
  color: #596579;
  line-height: 1.7;
}

.cssilo-fw-search__status {
  flex: 0 0 auto;
  min-height: 24px;
  margin: 2px 0 0;
  color: #1d4ed8;
  font-size: 0.86rem;
  font-weight: 700;
}

.cssilo-fw-search__field {
  max-width: 900px;
}

.cssilo-fw-search__label {
  display: block;
  margin-bottom: 8px;
  color: #374151;
  font-size: 0.86rem;
  font-weight: 700;
}

.cssilo-fw-search__control {
  position: relative;
  display: flex;
  align-items: center;
}

.cssilo-fw-search__input {
  width: 100%;
  min-height: 54px;
  padding: 13px 86px 13px 16px;
  color: #111827;
  font: inherit;
  line-height: 1.5;
  background: #fafafa;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.cssilo-fw-search__input::placeholder {
  color: #8791a1;
}

.cssilo-fw-search__input:hover {
  border-color: #93c5fd;
}

.cssilo-fw-search__input:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

.cssilo-fw-search__clear {
  position: absolute;
  right: 10px;
  min-height: 36px;
  padding: 7px 12px;
  color: #1d4ed8;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  background: #dbeafe;
  border: 0;
  border-radius: 8px;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.cssilo-fw-search__clear:hover {
  color: #ffffff;
  background: #2563eb;
}

.cssilo-fw-search__clear:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.28);
  outline-offset: 2px;
}

.cssilo-fw-search__hint {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .cssilo-fw-search {
    padding: 24px 20px;
  }

  .cssilo-fw-search__header {
    display: block;
  }

  .cssilo-fw-search__status {
    margin-top: 10px;
  }

  .cssilo-fw-search__input {
    min-height: 52px;
  }
}
/* =========================================================
   AI Prompt Frameworks — Table of Contents
   ========================================================= */

.cssilo-fw-toc {
  margin: 0 0 32px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.cssilo-fw-toc__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-fw-toc__eyebrow {
  margin: 0 0 8px;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cssilo-fw-toc__title {
  margin: 0;
  color: #111827;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.cssilo-fw-toc__count {
  flex: 0 0 auto;
  padding: 7px 11px;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
}

.cssilo-fw-toc__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 36px;
}

.cssilo-fw-toc__group {
  min-width: 0;
}

.cssilo-fw-toc__group:last-child {
  grid-column: 1 / -1;
}

.cssilo-fw-toc__group-title {
  margin: 0 0 12px;
  color: #1e40af;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cssilo-fw-toc__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 28px;
}

.cssilo-fw-toc__list li {
  margin: 0;
  padding-left: 3px;
  color: #2563eb;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.cssilo-fw-toc__list a {
  color: #374151;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.cssilo-fw-toc__list a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.cssilo-fw-toc__list a:focus-visible {
  color: #1e40af;
  border-radius: 3px;
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .cssilo-fw-toc {
    padding: 26px 22px;
  }

  .cssilo-fw-toc__header {
    display: block;
  }

  .cssilo-fw-toc__count {
    display: inline-block;
    margin-top: 14px;
  }

  .cssilo-fw-toc__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cssilo-fw-toc__group:last-child {
    grid-column: auto;
  }
}
/* =========================================================
   AI Prompt Frameworks — Sections and Selector
   ========================================================= */

.cssilo-fw-section {
  scroll-margin-top: 90px;
  margin: 0 0 32px;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.cssilo-fw-section__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.cssilo-fw-section__number {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

.cssilo-fw-section__eyebrow {
  margin: 0 0 7px;
  color: #2563eb;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-fw-section__title {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.cssilo-fw-section__description {
  max-width: 850px;
  margin: 0;
  color: #596579;
  line-height: 1.75;
}

.cssilo-fw-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cssilo-fw-selector-card {
  display: flex;
  min-width: 0;
  min-height: 220px;
  padding: 20px;
  flex-direction: column;
  background: #fafafa;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.cssilo-fw-selector-card:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 10px 22px rgba(30, 64, 175, 0.08);
}

.cssilo-fw-selector-card__level {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 9px;
  color: #1d4ed8;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
}

.cssilo-fw-selector-card h3 {
  margin: 0 0 9px;
  color: #1e3a8a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.cssilo-fw-selector-card p {
  margin: 0 0 18px;
  color: #596579;
  font-size: 0.88rem;
  line-height: 1.65;
}

.cssilo-fw-selector-card a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: auto;
  color: #1d4ed8;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.cssilo-fw-selector-card a:hover {
  color: #1e3a8a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cssilo-fw-selector-card a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 3px;
}

.cssilo-fw-tip {
  margin-top: 22px;
  padding: 16px 18px;
  color: #1e3a8a;
  line-height: 1.7;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-left: 4px solid #2563eb;
  border-radius: 10px;
}

.cssilo-fw-tip strong {
  color: #1d4ed8;
}

@media (max-width: 900px) {
  .cssilo-fw-selector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .cssilo-fw-section {
    padding: 26px 20px;
  }

  .cssilo-fw-section__header {
    display: block;
  }

  .cssilo-fw-section__number {
    margin-bottom: 16px;
  }

  .cssilo-fw-selector-grid {
    grid-template-columns: 1fr;
  }

  .cssilo-fw-selector-card {
    min-height: 0;
  }
}
/* =========================================================
   AI Prompt Frameworks — Comparison Tables
   ========================================================= */

.cssilo-fw-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 13px;
  -webkit-overflow-scrolling: touch;
}

.cssilo-fw-table {
  width: 100%;
  min-width: 920px;
  margin: 0;
  color: #374151;
  font-size: 0.88rem;
  line-height: 1.6;
  background: #ffffff;
  border-collapse: separate;
  border-spacing: 0;
}

.cssilo-fw-table th,
.cssilo-fw-table td {
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  border: 0;
  border-bottom: 1px solid #e5e7eb;
}

.cssilo-fw-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #eff6ff;
}

.cssilo-fw-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.cssilo-fw-table tbody tr {
  transition: background-color 150ms ease;
}

.cssilo-fw-table tbody tr:hover {
  background: #f4f8ff;
}

.cssilo-fw-table tbody tr:last-child td {
  border-bottom: 0;
}

.cssilo-fw-table th:first-child {
  width: 95px;
}

.cssilo-fw-table th:nth-child(2) {
  width: 24%;
}

.cssilo-fw-table th:nth-child(3) {
  width: 22%;
}

.cssilo-fw-table a {
  color: #1d4ed8;
  text-decoration: none;
}

.cssilo-fw-table a:hover {
  color: #1e3a8a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cssilo-fw-table a:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 3px;
}

.cssilo-fw-level {
  display: inline-block;
  min-width: 62px;
  padding: 5px 9px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  border-radius: 999px;
}

.cssilo-fw-level--low {
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
}

.cssilo-fw-level--medium {
  color: #92400e;
  background: #fef3c7;
  border: 1px solid #fde68a;
}

.cssilo-fw-level--high {
  color: #1d4ed8;
  background: #dbeafe;
  border: 1px solid #bfdbfe;
}

.cssilo-fw-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 600px) {
  .cssilo-fw-table {
    min-width: 840px;
  }

  .cssilo-fw-table th,
  .cssilo-fw-table td {
    padding: 13px 14px;
  }
}
/* =========================================================
   AI Prompt Frameworks — Framework Components
   ========================================================= */

.cssilo-fw-acronym-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.cssilo-fw-acronym {
  display: flex;
  min-width: 0;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.cssilo-fw-acronym__letter {
  display: inline-flex;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  background: #2563eb;
  border-radius: 9px;
}

.cssilo-fw-acronym h3 {
  margin: 1px 0 5px;
  color: #1e3a8a;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.4;
}

.cssilo-fw-acronym p {
  margin: 0;
  color: #596579;
  font-size: 0.84rem;
  line-height: 1.6;
}

.cssilo-fw-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.cssilo-fw-detail {
  min-width: 0;
  padding: 18px;
  color: #374151;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
}

.cssilo-fw-detail--limit {
  background: #fff7ed;
  border-color: #fed7aa;
}

.cssilo-fw-detail__label {
  margin: 0 0 9px;
  color: #166534;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cssilo-fw-detail--limit .cssilo-fw-detail__label {
  color: #9a3412;
}

.cssilo-fw-detail ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 20px;
}

.cssilo-fw-detail li,
.cssilo-fw-detail > p:not(.cssilo-fw-detail__label) {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.cssilo-fw-copy-box {
  margin-top: 20px;
  overflow: hidden;
  background: #0f172a;
  border: 1px solid #263244;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.13);
}

.cssilo-fw-copy-box__header {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #334155;
}

.cssilo-fw-copy-box__label {
  margin: 0 0 4px;
  color: #93c5fd;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cssilo-fw-copy-box h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.4;
}

.cssilo-fw-copy {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 14px;
  color: #ffffff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  background: #2563eb;
  border: 1px solid #3b82f6;
  border-radius: 8px;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.cssilo-fw-copy:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.cssilo-fw-copy:focus-visible {
  outline: 3px solid rgba(147, 197, 253, 0.55);
  outline-offset: 3px;
}

.cssilo-fw-copy-box pre {
  max-width: 100%;
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #e2e8f0;
  background: #0f172a;
  border: 0;
  border-radius: 0;
  white-space: pre;
}

.cssilo-fw-copy-box pre code {
  color: inherit;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.7;
  background: transparent;
}

.cssilo-fw-example {
  margin-top: 20px;
  padding: 20px;
  color: #1e3a8a;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 13px;
}

.cssilo-fw-example__header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}

.cssilo-fw-example__label {
  margin: 0 0 4px;
  color: #2563eb;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cssilo-fw-example h3 {
  margin: 0;
  color: #1e3a8a;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.cssilo-fw-copy--light {
  color: #1d4ed8;
  background: #ffffff;
  border-color: #93c5fd;
}

.cssilo-fw-copy--light:hover {
  color: #ffffff;
  background: #1d4ed8;
}

.cssilo-fw-example__prompt {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 10px;
}

.cssilo-fw-example__prompt p {
  margin: 0;
  color: #374151;
  font-size: 0.88rem;
  line-height: 1.7;
}

.cssilo-fw-example__prompt p + p {
  margin-top: 8px;
}

.cssilo-fw-example__prompt strong {
  color: #1e40af;
}

@media (max-width: 800px) {
  .cssilo-fw-acronym-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .cssilo-fw-acronym-grid,
  .cssilo-fw-detail-grid {
    grid-template-columns: 1fr;
  }

  .cssilo-fw-copy-box__header,
  .cssilo-fw-example__header {
    align-items: flex-start;
  }

  .cssilo-fw-copy-box pre {
    padding: 18px;
  }
}
/* FAQ */
.cssilo-fw-faq {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.cssilo-fw-faq details {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cssilo-fw-faq details:hover,
.cssilo-fw-faq details[open] {
  border-color: #c4b5fd;
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.08);
}

.cssilo-fw-faq summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.cssilo-fw-faq summary::-webkit-details-marker {
  display: none;
}

.cssilo-fw-faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #6d28d9;
  background: #f3e8ff;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.cssilo-fw-faq details[open] summary::after {
  content: "−";
}

.cssilo-fw-faq__answer {
  padding: 0 20px 20px;
  color: #4b5563;
  line-height: 1.75;
}

.cssilo-fw-faq__answer p {
  margin: 0;
}

.cssilo-fw-faq__answer p + p {
  margin-top: 12px;
}

.cssilo-fw-faq__answer a {
  color: #6d28d9;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .cssilo-fw-faq summary {
    padding: 18px 50px 18px 18px;
  }

  .cssilo-fw-faq summary::after {
    right: 16px;
  }

  .cssilo-fw-faq__answer {
    padding: 0 18px 18px;
  }
}
/* Related AI cheat sheets */
.cssilo-fw-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.cssilo-fw-related__card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cssilo-fw-related__card:hover {
  border-color: #c4b5fd;
  box-shadow: 0 14px 30px rgba(76, 29, 149, 0.1);
  transform: translateY(-3px);
}

.cssilo-fw-related__category {
  margin: 0 0 10px;
  color: #7c3aed;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cssilo-fw-related__card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 1.15rem;
  line-height: 1.35;
}

.cssilo-fw-related__card h3 a {
  color: inherit;
  text-decoration: none;
}

.cssilo-fw-related__card h3 a:hover {
  color: #6d28d9;
}

.cssilo-fw-related__card > p:not(.cssilo-fw-related__category) {
  margin: 0 0 20px;
  color: #4b5563;
  line-height: 1.7;
}

.cssilo-fw-related__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #6d28d9;
  font-weight: 700;
  text-decoration: none;
}

.cssilo-fw-related__link:hover {
  color: #4c1d95;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cssilo-fw-related__link span {
  transition: transform 0.2s ease;
}

.cssilo-fw-related__link:hover span {
  transform: translateX(4px);
}

.cssilo-fw-related__source {
  margin: 24px 0 0;
  padding: 16px 18px;
  color: #4b5563;
  background: #f9fafb;
  border-left: 4px solid #8b5cf6;
  border-radius: 0 10px 10px 0;
  line-height: 1.7;
}

.cssilo-fw-related__source a {
  color: #6d28d9;
  font-weight: 700;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .cssilo-fw-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cssilo-fw-related__card {
    padding: 20px;
  }
}
/* =========================================================
   Docker Cheat Sheet – Page Foundation and Hero
   ========================================================= */

.cssilo-docker-page,
.cssilo-docker-page *,
.cssilo-docker-page *::before,
.cssilo-docker-page *::after {
  box-sizing: border-box;
}

.cssilo-docker-page {
  --cssilo-docker-primary: #2496ed;
  --cssilo-docker-primary-dark: #0b70c9;
  --cssilo-docker-primary-soft: #eaf6ff;
  --cssilo-docker-navy: #0f172a;
  --cssilo-docker-text: #334155;
  --cssilo-docker-muted: #64748b;
  --cssilo-docker-border: #e2e8f0;
  --cssilo-docker-surface: #ffffff;

  width: min(1280px, calc(100vw - 40px)) !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 50% !important;
  color: var(--cssilo-docker-text);
  font-family: inherit;
  transform: translateX(-50%);
}

.cssilo-docker-page a {
  color: inherit;
}

.cssilo-docker-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 6vw, 64px);
  color: #ffffff;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(36, 150, 237, 0.34),
      transparent 30%
    ),
    linear-gradient(135deg, #0f172a 0%, #0c2950 55%, #0b3b68 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.cssilo-docker-hero::before,
.cssilo-docker-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.cssilo-docker-hero::before {
  top: -110px;
  right: -70px;
  width: 280px;
  height: 280px;
  background: rgba(36, 150, 237, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cssilo-docker-hero::after {
  right: 160px;
  bottom: -160px;
  width: 280px;
  height: 280px;
  background: rgba(56, 189, 248, 0.08);
}

.cssilo-docker-hero__content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.cssilo-docker-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #bae6fd;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cssilo-docker-hero__eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #38bdf8;
  border-radius: 999px;
}

.cssilo-docker-hero__title {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.cssilo-docker-hero__description {
  max-width: 760px;
  margin: 24px 0 0;
  color: #dbeafe;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.cssilo-docker-hero__description strong {
  color: #ffffff;
}

.cssilo-docker-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.cssilo-docker-hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 650;
}

.cssilo-docker-hero__features li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.18);
}

.cssilo-docker-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: #94a3b8;
  font-size: 0.86rem;
}

.cssilo-docker-hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

@media (max-width: 600px) {
  .cssilo-docker-page {
    width: calc(100vw - 24px) !important;
  }

  .cssilo-docker-hero {
    padding: 32px 22px;
    border-radius: 18px;
  }

  .cssilo-docker-hero__title {
    font-size: clamp(2.15rem, 13vw, 3.15rem);
    line-height: 1.02;
  }

  .cssilo-docker-hero__features {
    align-items: stretch;
    flex-direction: column;
  }

  .cssilo-docker-hero__features li {
    width: 100%;
    border-radius: 10px;
  }

  .cssilo-docker-hero__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
/* =========================================================
   Docker Cheat Sheet – Search
   ========================================================= */

.cssilo-docker-search {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.cssilo-docker-search__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cssilo-docker-search__eyebrow {
  margin: 0 0 8px;
  color: #0b70c9;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-docker-search__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.cssilo-docker-search__description {
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.cssilo-docker-search__status {
  flex: 0 0 auto;
  margin: 4px 0 0;
  color: #0b70c9;
  font-size: 0.85rem;
  font-weight: 750;
}

.cssilo-docker-search__field {
  margin-top: 24px;
}

.cssilo-docker-search__label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 750;
}

.cssilo-docker-search__control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cssilo-docker-search__control:focus-within {
  border-color: #2496ed;
  box-shadow: 0 0 0 4px rgba(36, 150, 237, 0.13);
}

.cssilo-docker-search__input {
  min-width: 0;
  flex: 1;
  padding: 10px 8px;
  color: #0f172a;
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-weight: 600;
}

.cssilo-docker-search__input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.cssilo-docker-search__input::-webkit-search-cancel-button {
  display: none;
}

.cssilo-docker-search__clear {
  flex: 0 0 auto;
  padding: 9px 14px;
  color: #0b70c9;
  background: #eaf6ff;
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 750;
  cursor: pointer;
}

.cssilo-docker-search__clear:hover {
  color: #ffffff;
  background: #2496ed;
}

.cssilo-docker-search__hint {
  margin: 12px 0 0;
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
}

@media (max-width: 650px) {
  .cssilo-docker-search__header {
    flex-direction: column;
    gap: 8px;
  }

  .cssilo-docker-search__status {
    margin: 0;
  }
}
/* =========================================================
   Docker Cheat Sheet – Table of Contents
   ========================================================= */

.cssilo-docker-toc {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.cssilo-docker-toc__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e2e8f0;
}

.cssilo-docker-toc__eyebrow {
  margin: 0 0 8px;
  color: #0b70c9;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-docker-toc__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.cssilo-docker-toc__count {
  flex: 0 0 auto;
  margin: 2px 0 0;
  padding: 8px 12px;
  color: #0b70c9;
  background: #eaf6ff;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.cssilo-docker-toc__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 48px;
  margin-top: 26px;
}

.cssilo-docker-toc__group-title {
  margin: 0 0 12px;
  color: #075985;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cssilo-docker-toc__list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: docker-toc;
}

.cssilo-docker-toc__list--start-7 {
  counter-reset: docker-toc 6;
}

.cssilo-docker-toc__list--start-13 {
  counter-reset: docker-toc 12;
}

.cssilo-docker-toc__list--start-18 {
  counter-reset: docker-toc 17;
}

.cssilo-docker-toc__list li {
  counter-increment: docker-toc;
}

.cssilo-docker-toc__list a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 4px;
  align-items: start;
  padding: 8px 9px;
  color: #334155;
  border-radius: 9px;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.cssilo-docker-toc__list a::before {
  content: counter(docker-toc) ".";
  color: #2496ed;
  font-weight: 850;
}

.cssilo-docker-toc__list a:hover {
  color: #075985;
  background: #f0f9ff;
  transform: translateX(3px);
}

.cssilo-docker-toc__list a:focus-visible {
  outline: 3px solid rgba(36, 150, 237, 0.25);
  outline-offset: 2px;
}

@media (max-width: 760px) {
  .cssilo-docker-toc__header {
    flex-direction: column;
    gap: 12px;
  }

  .cssilo-docker-toc__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .cssilo-docker-toc__list a {
    grid-template-columns: 25px minmax(0, 1fr);
    padding-right: 4px;
    padding-left: 4px;
  }
}
/* =========================================================
   Docker Cheat Sheet – Sections and Tables
   ========================================================= */

.cssilo-docker-section {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  scroll-margin-top: 28px;
}

.cssilo-docker-section[hidden] {
  display: none !important;
}

.cssilo-docker-section__header {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.cssilo-docker-section__number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2496ed, #0b70c9);
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(36, 150, 237, 0.22);
  font-size: 0.88rem;
  font-weight: 850;
}

.cssilo-docker-section__eyebrow {
  margin: 1px 0 6px;
  color: #0b70c9;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cssilo-docker-section__title {
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.cssilo-docker-section__description {
  max-width: 800px;
  margin: 10px 0 0;
  color: #64748b;
  line-height: 1.7;
}

.cssilo-docker-section__description code {
  padding: 2px 5px;
  color: #075985;
  background: #eaf6ff;
  border: 1px solid #bae6fd;
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 0.88em;
}

.cssilo-docker-subtitle {
  margin: 30px 0 14px;
  color: #0f172a;
  font-size: 1.15rem;
  line-height: 1.35;
}

.cssilo-docker-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  -webkit-overflow-scrolling: touch;
}

.cssilo-docker-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #334155;
  font-size: 0.92rem;
}

.cssilo-docker-table caption {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cssilo-docker-table th,
.cssilo-docker-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

.cssilo-docker-table th {
  color: #ffffff;
  background: #0f172a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cssilo-docker-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.cssilo-docker-table tbody tr:hover {
  background: #f0f9ff;
}

.cssilo-docker-table tbody tr:last-child td {
  border-bottom: 0;
}

.cssilo-docker-table code {
  color: #075985;
  background: #eaf6ff;
  border: 1px solid #bae6fd;
  border-radius: 6px;
  padding: 3px 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 0.87em;
  white-space: nowrap;
}

.cssilo-docker-tag {
  display: inline-flex;
  padding: 5px 9px;
  color: #075985;
  background: #eaf6ff;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
}

.cssilo-docker-tip,
.cssilo-docker-warning {
  margin-top: 22px;
  padding: 17px 18px;
  border-radius: 12px;
  line-height: 1.7;
}

.cssilo-docker-tip {
  color: #334155;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-left: 4px solid #22c55e;
}

.cssilo-docker-warning {
  color: #7c2d12;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid #f97316;
}

.cssilo-docker-tip strong,
.cssilo-docker-warning strong {
  color: #0f172a;
}

.cssilo-docker-tip code,
.cssilo-docker-warning code {
  padding: 2px 5px;
  color: #075985;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 0.88em;
}

@media (max-width: 600px) {
  .cssilo-docker-section__header {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  .cssilo-docker-section__number {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    font-size: 0.8rem;
  }

  .cssilo-docker-table {
    min-width: 650px;
  }

  .cssilo-docker-table th,
  .cssilo-docker-table td {
    padding: 13px;
  }
}
/* =========================================================
   Docker Cheat Sheet – Commands and Copy Buttons
   ========================================================= */

.cssilo-docker-command-list {
  display: grid;
  gap: 14px;
}

.cssilo-docker-command {
  overflow: hidden;
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.cssilo-docker-command__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 16px;
  background: #1e293b;
  border-bottom: 1px solid #334155;
}

.cssilo-docker-command__label {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.cssilo-docker-command__code {
  display: block;
  overflow-x: auto;
  margin: 0;
  padding: 18px;
  color: #f8fafc;
  background: #0f172a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 0.91rem;
  line-height: 1.65;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
}

.cssilo-docker-copy {
  flex: 0 0 auto;
  padding: 7px 11px;
  color: #ffffff;
  background: #2496ed;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.cssilo-docker-copy:hover {
  background: #0b70c9;
  transform: translateY(-1px);
}

.cssilo-docker-copy:focus-visible {
  outline: 3px solid rgba(186, 230, 253, 0.7);
  outline-offset: 2px;
}

.cssilo-docker-copy.is-copied {
  color: #052e16;
  background: #86efac;
}

.cssilo-docker-copy--small {
  padding: 7px 10px;
  font-size: 0.74rem;
}

.cssilo-docker-command-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cssilo-docker-command-card {
  min-width: 0;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 13px;
}

.cssilo-docker-command-card h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 1rem;
}

.cssilo-docker-command-card p {
  margin: 0 0 14px;
  color: #64748b;
  line-height: 1.65;
}

.cssilo-docker-command-card code {
  display: block;
  overflow-x: auto;
  padding: 13px;
  color: #f8fafc;
  background: #0f172a;
  border-radius: 9px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
  font-size: 0.84rem;
  line-height: 1.55;
  white-space: pre;
}

.cssilo-docker-sr-only {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 760px) {
  .cssilo-docker-command-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cssilo-docker-command__code {
    padding: 16px;
    font-size: 0.84rem;
  }
}
/* =========================================================
   Microsoft Outlook Cheat Sheet
   Foundation and hero
   ========================================================= */

.cssilo-outlook-page,
.cssilo-outlook-page *,
.cssilo-outlook-page *::before,
.cssilo-outlook-page *::after {
  box-sizing: border-box;
}

.cssilo-outlook-page {
  --cssilo-outlook-navy: #0b1f3a;
  --cssilo-outlook-blue: #1264d6;
  --cssilo-outlook-blue-dark: #084ba8;
  --cssilo-outlook-cyan: #38bdf8;
  --cssilo-outlook-purple: #7c3aed;
  --cssilo-outlook-ink: #101828;
  --cssilo-outlook-muted: #52627a;
  --cssilo-outlook-line: #dbe4f0;
  --cssilo-outlook-soft: #f4f8fd;
  --cssilo-outlook-white: #ffffff;

  width: min(1280px, calc(100vw - 40px));
  margin: 0 0 30px 50%;
  transform: translateX(-50%);
  color: var(--cssilo-outlook-ink);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.cssilo-outlook-page a {
  color: var(--cssilo-outlook-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cssilo-outlook-page a:hover {
  color: var(--cssilo-outlook-blue-dark);
}

.cssilo-outlook-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 88% 18%,
      rgba(56, 189, 248, 0.24) 0,
      rgba(56, 189, 248, 0) 26%
    ),
    radial-gradient(
      circle at 73% 110%,
      rgba(124, 58, 237, 0.3) 0,
      rgba(124, 58, 237, 0) 34%
    ),
    linear-gradient(135deg, #071a33 0%, #0c3268 58%, #1259b5 100%);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.18);
  color: var(--cssilo-outlook-white);
}

.cssilo-outlook-hero::before,
.cssilo-outlook-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.cssilo-outlook-hero::before {
  top: -85px;
  right: -75px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.cssilo-outlook-hero::after {
  right: 10%;
  bottom: -145px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.09);
}

.cssilo-outlook-hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.cssilo-outlook-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #8edcff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-outlook-hero__eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--cssilo-outlook-cyan);
  content: "";
}

.cssilo-outlook-hero__title {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.cssilo-outlook-hero__description {
  max-width: 780px;
  margin: 26px 0 0;
  color: #e7f1ff;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.cssilo-outlook-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.cssilo-outlook-hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.cssilo-outlook-hero__features li::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cssilo-outlook-cyan);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
  content: "";
}

.cssilo-outlook-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0 0;
  color: #bcd5f4;
  font-size: 14px;
}

@media (max-width: 700px) {
  .cssilo-outlook-page {
    width: calc(100vw - 24px);
    margin-bottom: 22px;
  }

  .cssilo-outlook-hero {
    padding: 34px 24px;
    border-radius: 18px;
  }

  .cssilo-outlook-hero__title {
    font-size: clamp(38px, 13vw, 56px);
  }

  .cssilo-outlook-hero__description {
    font-size: 17px;
  }

  .cssilo-outlook-hero__meta {
    gap: 10px 16px;
  }
}
/* Hide WordPress post meta and previous/next navigation on Outlook page */
body:has(.cssilo-outlook-page) .entry-header,
body:has(.cssilo-outlook-page) .entry-footer,
body:has(.cssilo-outlook-page) .post-navigation {
  display: none;
}
/* =========================================================
   Outlook search
   ========================================================= */

.cssilo-outlook-search {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--cssilo-outlook-line);
  border-radius: 20px;
  background: var(--cssilo-outlook-white);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.07);
}

.cssilo-outlook-search__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.cssilo-outlook-search__eyebrow {
  margin: 0 0 8px;
  color: var(--cssilo-outlook-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-outlook-search__title {
  margin: 0;
  color: var(--cssilo-outlook-ink);
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.cssilo-outlook-search__description {
  margin: 10px 0 0;
  color: var(--cssilo-outlook-muted);
  font-size: 17px;
  line-height: 1.65;
}

.cssilo-outlook-search__status {
  flex: 0 0 auto;
  margin: 4px 0 0;
  color: var(--cssilo-outlook-blue);
  font-size: 14px;
  font-weight: 800;
}

.cssilo-outlook-search__field {
  margin-top: 24px;
}

.cssilo-outlook-search__label {
  display: block;
  margin-bottom: 8px;
  color: var(--cssilo-outlook-ink);
  font-size: 14px;
  font-weight: 750;
}

.cssilo-outlook-search__control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--cssilo-outlook-line);
  border-radius: 14px;
  background: var(--cssilo-outlook-soft);
}

.cssilo-outlook-search__input {
  min-width: 0;
  width: 100%;
  height: 48px;
  padding: 0 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cssilo-outlook-ink);
  font: inherit;
  font-size: 16px;
}

.cssilo-outlook-search__input::placeholder {
  color: #7b8aa0;
  opacity: 1;
}

.cssilo-outlook-search__clear {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 10px;
  background: #e8f1ff;
  color: var(--cssilo-outlook-blue-dark);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cssilo-outlook-search__clear:hover {
  background: #dceaff;
}

.cssilo-outlook-search__hint {
  margin: 12px 0 0;
  color: var(--cssilo-outlook-muted);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .cssilo-outlook-search__header {
    display: block;
  }

  .cssilo-outlook-search__status {
    margin-top: 12px;
  }
}
/* =========================================================
   Outlook table of contents
   ========================================================= */

.cssilo-outlook-toc {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--cssilo-outlook-line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.07);
}

.cssilo-outlook-toc__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--cssilo-outlook-line);
}

.cssilo-outlook-toc__eyebrow {
  margin: 0 0 8px;
  color: var(--cssilo-outlook-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cssilo-outlook-toc__title {
  margin: 0;
  color: var(--cssilo-outlook-ink);
  font-size: clamp(27px, 3vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.cssilo-outlook-toc__count {
  flex: 0 0 auto;
  margin: 2px 0 0;
  padding: 8px 13px;
  border: 1px solid #c9dcfa;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--cssilo-outlook-blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.cssilo-outlook-toc__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 54px;
  margin-top: 28px;
}

.cssilo-outlook-toc__group-title {
  margin: 0 0 11px;
  color: var(--cssilo-outlook-blue-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.cssilo-outlook-toc__list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: outlook-toc;
}

.cssilo-outlook-toc__list li {
  counter-increment: outlook-toc;
  margin: 0;
}

.cssilo-outlook-toc__list a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 6px;
  padding: 7px 8px;
  border-radius: 9px;
  color: var(--cssilo-outlook-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.cssilo-outlook-toc__list a::before {
  color: var(--cssilo-outlook-blue);
  font-weight: 850;
  content: counter(outlook-toc) ".";
}

.cssilo-outlook-toc__list a:hover {
  background: #eaf2ff;
  color: var(--cssilo-outlook-blue-dark);
}

.cssilo-outlook-toc__list--06 {
  counter-reset: outlook-toc 5;
}

.cssilo-outlook-toc__list--11 {
  counter-reset: outlook-toc 10;
}

.cssilo-outlook-toc__list--16 {
  counter-reset: outlook-toc 15;
}

@media (max-width: 760px) {
  .cssilo-outlook-toc__header {
    display: block;
  }

  .cssilo-outlook-toc__count {
    display: inline-block;
    margin-top: 14px;
  }

  .cssilo-outlook-toc__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
/* =========================================================
   Outlook content sections
   ========================================================= */

.cssilo-outlook-section {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--cssilo-outlook-line);
  border-radius: 20px;
  background: var(--cssilo-outlook-white);
  box-shadow: 0 16px 40px rgba(11, 31, 58, 0.07);
  scroll-margin-top: 28px;
}

.cssilo-outlook-section[hidden] {
  display: none;
}

.cssilo-outlook-section__header {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  margin-bottom: 30px;
}

.cssilo-outlook-section__number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    var(--cssilo-outlook-blue) 0%,
    var(--cssilo-outlook-blue-dark) 100%
  );
  box-shadow: 0 10px 22px rgba(18, 100, 214, 0.22);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
}

.cssilo-outlook-section__eyebrow {
  margin: 1px 0 6px;
  color: var(--cssilo-outlook-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cssilo-outlook-section__title {
  margin: 0;
  color: var(--cssilo-outlook-ink);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.cssilo-outlook-section__description {
  max-width: 850px;
  margin: 10px 0 0;
  color: var(--cssilo-outlook-muted);
  font-size: 17px;
  line-height: 1.7;
}

.cssilo-outlook-subtitle {
  margin: 34px 0 14px;
  color: var(--cssilo-outlook-ink);
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.cssilo-outlook-table-wrap {
  overflow-x: auto;
  margin-top: 16px;
  border: 1px solid var(--cssilo-outlook-line);
  border-radius: 16px;
  background: #ffffff;
}

.cssilo-outlook-table {
  width: 100%;
  min-width: 760px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.cssilo-outlook-table th,
.cssilo-outlook-table td {
  padding: 15px 16px;
  border: 0;
  border-right: 1px solid var(--cssilo-outlook-line);
  border-bottom: 1px solid var(--cssilo-outlook-line);
  text-align: left;
  vertical-align: top;
}

.cssilo-outlook-table th:last-child,
.cssilo-outlook-table td:last-child {
  border-right: 0;
}

.cssilo-outlook-table tbody tr:last-child td {
  border-bottom: 0;
}

.cssilo-outlook-table thead th {
  background: var(--cssilo-outlook-navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.cssilo-outlook-table tbody tr:nth-child(even) {
  background: #f7faff;
}

.cssilo-outlook-table tbody tr:hover {
  background: #edf5ff;
}

.cssilo-outlook-table td {
  color: var(--cssilo-outlook-ink);
  font-size: 15px;
  line-height: 1.55;
}

.cssilo-outlook-table code,
.cssilo-outlook-page code {
  padding: 2px 6px;
  border: 1px solid #c9dcfa;
  border-radius: 6px;
  background: #eef5ff;
  color: #074b9e;
  font-size: 0.9em;
  white-space: nowrap;
}

.cssilo-outlook-key {
  display: inline-block;
  min-width: 28px;
  padding: 4px 8px;
  border: 1px solid #bac8db;
  border-bottom-width: 3px;
  border-radius: 7px;
  background: #ffffff;
  color: var(--cssilo-outlook-ink);
  font-family:
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    monospace;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.cssilo-outlook-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid #b9d6fa;
  border-radius: 999px;
  background: #edf6ff;
  color: var(--cssilo-outlook-blue-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.cssilo-outlook-tip,
.cssilo-outlook-warning,
.cssilo-outlook-note {
  padding: 17px 19px;
  margin-top: 20px;
  border: 1px solid;
  border-left-width: 4px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.65;
}

.cssilo-outlook-tip {
  border-color: #79d6a2;
  background: #effcf4;
  color: #12452a;
}

.cssilo-outlook-warning {
  border-color: #f5a766;
  background: #fff7ed;
  color: #71310b;
}

.cssilo-outlook-note {
  border-color: #87b9f5;
  background: #eff6ff;
  color: #123d73;
}

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

@media (max-width: 700px) {
  .cssilo-outlook-section {
    padding: 26px 20px;
    border-radius: 17px;
  }

  .cssilo-outlook-section__header {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
  }

  .cssilo-outlook-section__number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .cssilo-outlook-table th,
  .cssilo-outlook-table td {
    padding: 13px;
  }
}
/* =========================================================
   Outlook copy buttons
   ========================================================= */

.cssilo-outlook-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 0;
  border-radius: 9px;
  background: var(--cssilo-outlook-blue);
  color: #ffffff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.cssilo-outlook-copy:hover {
  background: var(--cssilo-outlook-blue-dark);
  transform: translateY(-1px);
}

.cssilo-outlook-copy:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.35);
  outline-offset: 2px;
}

.cssilo-outlook-copy--small {
  min-height: 32px;
  padding: 7px 11px;
  font-size: 12px;
}

.cssilo-outlook-copy.is-copied {
  background: #16844a;
}
/* Outlook related cheat sheets */
.cssilo-outlook-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.cssilo-outlook-related__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid #d8e2ee;
  border-radius: 16px;
  background: #f8fbff;
}

.cssilo-outlook-related__category {
  margin: 0 0 10px;
  color: #1769aa;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.cssilo-outlook-related__card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.3;
}

.cssilo-outlook-related__card h3 a {
  color: #0b1f3a;
  text-decoration: none;
}

.cssilo-outlook-related__card h3 a:hover,
.cssilo-outlook-related__card h3 a:focus-visible {
  color: #1769aa;
  text-decoration: underline;
}

.cssilo-outlook-related__card > p:not(.cssilo-outlook-related__category) {
  margin: 0 0 20px;
  color: #4b6078;
  line-height: 1.65;
}

.cssilo-outlook-related__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #1769aa;
  font-weight: 800;
  text-decoration: none;
}

.cssilo-outlook-related__link:hover,
.cssilo-outlook-related__link:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .cssilo-outlook-related {
    grid-template-columns: 1fr;
  }
}