:root {
  --bg: #071120;
  --bg-2: #0b1930;
  --surface: #ffffff;
  --surface-soft: #f6f9fd;
  --panel: rgba(12, 28, 52, 0.78);
  --text: #eef6ff;
  --muted: #9fb0c8;
  --ink: #142033;
  --ink-soft: #64748b;
  --line: rgba(148, 163, 184, 0.2);
  --line-light: #dbe6f3;
  --primary: #11c7d5;
  --primary-dark: #08748e;
  --accent: #2f76f6;
  --success: #15a46e;
  --danger: #ef4444;
  --shadow: 0 12px 30px rgba(10, 24, 45, 0.11);
  --shadow-hover: 0 18px 42px rgba(10, 24, 45, 0.16);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% -10%, rgba(17, 199, 213, 0.22), transparent 22rem),
    radial-gradient(circle at 86% 3%, rgba(47, 118, 246, 0.18), transparent 20rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 330px, #eef4fb 331px, #eef4fb 100%);
  color: var(--text);
  font-family:
    Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 14, 28, 0.82);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(17, 199, 213, 0.16);
}

.brand span {
  color: var(--primary);
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #cbd8e8;
  font-size: 0.88rem;
  font-weight: 800;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 199, 213, 0.22);
}

.hero {
  padding: 14px 0 8px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(380px, 1.08fr);
  align-items: start;
  gap: 8px 28px;
}

.hero-copy {
  grid-row: 1 / span 2;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1.78rem, 2.85vw, 2.48rem);
  line-height: 1.12;
}

.hero h1 span {
  color: #ffffff;
}

.category-section .section-head h2 {
  color: var(--primary);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}

.category-section .section-copy {
  color: #5d6d84;
}

.category-section .result-count {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(7, 17, 32, 0.82);
  color: #dbe7f5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.tool-section .eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.search-panel {
  position: relative;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  z-index: 18;
}

.search-panel::before {
  content: "";
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 199, 213, 0.26), rgba(47, 118, 246, 0.18));
  filter: blur(7px);
}

.search-panel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 19px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border: 2px solid #6b7d96;
  border-radius: 999px;
  pointer-events: none;
}

.search-panel:focus-within::after {
  border-color: var(--primary-dark);
}

.search-panel input {
  width: 100%;
  height: 42px;
  padding: 0 46px 0 44px;
  border: 1px solid rgba(219, 230, 243, 0.95);
  border-radius: var(--radius);
  outline: none;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.search-panel input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(17, 199, 213, 0.16), 0 12px 30px rgba(0, 0, 0, 0.2);
}

.search-panel > button {
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 2;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 9px;
  background: #edf3fa;
  color: #35445c;
  font-size: 1.35rem;
  line-height: 1;
}

.search-panel > button:hover {
  background: #dce8f5;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 19;
  display: grid;
  max-height: min(390px, 58vh);
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(219, 230, 243, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(5, 13, 29, 0.24);
}

.search-suggestions[hidden] {
  display: none;
}

.suggestion-option {
  position: relative;
  top: auto;
  right: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  height: auto;
  min-height: 54px;
  padding: 8px 10px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #142033;
  text-align: left;
  transform: none;
  cursor: pointer;
}

.suggestion-option:hover,
.suggestion-option.active {
  background: rgba(17, 199, 213, 0.1);
}

.suggestion-option strong,
.suggestion-option small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-option strong {
  color: #111d31;
  font-size: 0.9rem;
  font-weight: 850;
}

.suggestion-option small {
  margin-top: 2px;
  color: #66758c;
  font-size: 0.76rem;
  font-weight: 650;
}

.suggestion-empty {
  padding: 14px 12px;
  color: #66758c;
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
}

.suggestion-more {
  position: relative;
  top: auto;
  right: auto;
  display: flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  border: 1px solid rgba(17, 199, 213, 0.28);
  border-radius: 12px;
  background: rgba(17, 199, 213, 0.08);
  color: #067b8d;
  font-size: 0.84rem;
  font-weight: 850;
  cursor: pointer;
}

.suggestion-more:hover {
  border-color: rgba(17, 199, 213, 0.45);
  background: rgba(17, 199, 213, 0.14);
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  grid-column: 2;
  width: 100%;
  max-width: 430px;
  justify-self: end;
  margin-top: -4px;
}

.search-tags button {
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #d7e4f2;
  font-size: 0.72rem;
  font-weight: 850;
}

.search-tags button:hover {
  border-color: rgba(17, 199, 213, 0.5);
  background: rgba(17, 199, 213, 0.13);
  color: #ffffff;
}

.section-copy {
  max-width: 850px;
  margin: -2px 0 16px;
  color: #5d6d84;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1.6;
}

.compact-copy {
  margin: 3px 0 0;
  font-size: 0.88rem;
}

.category-section {
  padding: 8px 0 24px;
  background: #eef4fb;
}

.category-section > .container {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-head.compact {
  margin: 0 0 13px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  position: relative;
  display: flex;
  min-height: 452px;
  flex-direction: column;
  padding: 16px 18px 17px;
  overflow: visible;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    0 10px 24px rgba(10, 24, 45, 0.07);
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.category-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 42%, #ffffff);
  outline-offset: 3px;
}

.category-card::before {
  display: none;
}

.category-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: color-mix(in srgb, var(--accent) 62%, #ffffff);
  box-shadow:
    0 18px 38px rgba(10, 24, 45, 0.13),
    0 0 0 2px color-mix(in srgb, var(--accent) 8%, transparent),
    0 0 24px color-mix(in srgb, var(--accent) 16%, transparent);
}

.category-card-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
}

.category-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, #dbe6f3);
  border-radius: 10px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, white), #ffffff 72%);
  color: color-mix(in srgb, var(--accent) 88%, #071120);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 9%, white);
}

.category-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-card h3 {
  margin: 0;
  color: #2f3948;
  font-size: 1rem;
  line-height: 1.25;
}

.category-divider {
  width: 100%;
  height: 1px;
  margin: 10px 0 7px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent) 78%, #d6e1ef),
    color-mix(in srgb, var(--accent) 22%, #d6e1ef),
    transparent
  );
}

.category-description {
  display: -webkit-box;
  min-height: 2.85em;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-total {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, #dbe6f3);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: color-mix(in srgb, var(--accent) 82%, #142033);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.category-tool-list {
  display: grid;
  max-height: 306px;
  gap: 6px;
  margin: 12px 0 13px;
  padding: 0 5px 0 0;
  overflow-x: hidden;
  overflow-y: auto;
  list-style: none;
  scrollbar-color: color-mix(in srgb, var(--accent) 34%, #9fb0c4) transparent;
  scrollbar-width: auto;
}

.category-tool-list::-webkit-scrollbar {
  width: 8px;
}

.category-tool-list::-webkit-scrollbar-track {
  background: transparent;
}

.category-tool-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background: color-mix(in srgb, var(--accent) 34%, #b5c3d4);
  background-clip: padding-box;
}

.category-tool-list:hover::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--accent) 46%, #8fa2b7);
  background-clip: padding-box;
}

.category-tool-list li {
  position: relative;
  display: grid;
  min-height: 24px;
  grid-template-columns: 22px 24px minmax(0, 1fr) 26px;
  gap: 8px;
  align-items: center;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 560;
}

.category-tool-list .rank {
  color: #7b8798;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: right;
}

.category-tool-list a {
  position: relative;
  overflow: hidden;
  color: #142033;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-tool-list a:hover {
  color: color-mix(in srgb, var(--accent) 92%, #142033);
}

.category-detail-button {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #6b7b91;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.category-detail-button:hover,
.category-detail-button:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 56%, #d6e1ef);
  background: color-mix(in srgb, var(--accent) 8%, #ffffff);
  color: color-mix(in srgb, var(--accent) 78%, #273449);
  transform: translateY(-1px);
}

.category-detail-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.category-floating-tooltip {
  position: absolute;
  z-index: 100;
  width: min(260px, calc(100vw - 28px));
  padding: 10px 12px;
  border: 1px solid color-mix(in srgb, var(--tooltip-accent, var(--accent)) 42%, #dbe6f3);
  border-radius: 10px;
  background: #ffffff;
  color: #334155;
  box-shadow: 0 16px 36px rgba(10, 24, 45, 0.18);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.45;
  pointer-events: none;
}

.category-floating-tooltip[hidden] {
  display: none;
}

.category-tool-list li:has(.category-tool-link)::before,
.category-tool-list li:has(.category-tool-link)::after {
  display: none;
}

.category-tool-list li:has(.category-tool-link)::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 10px);
  width: min(220px, calc(100% + 70px));
  padding: 10px 12px;
  overflow: visible;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, #dbe6f3);
  border-radius: 10px;
  background: #ffffff;
  color: #334155;
  box-shadow: 0 14px 32px rgba(10, 24, 45, 0.18);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  text-overflow: initial;
  white-space: normal;
}

.category-tool-list li:has(.category-tool-link)::after {
  content: "";
  bottom: calc(100% + 4px);
  width: 10px;
  height: 10px;
  border-right: 1px solid color-mix(in srgb, var(--accent) 42%, #dbe6f3);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 42%, #dbe6f3);
  background: #ffffff;
  transform: translate(-50%, 4px) rotate(45deg);
}

.category-tool-list li:has(.category-tool-link:hover)::before,
.category-tool-list li:has(.category-tool-link:hover)::after,
.category-tool-list li:has(.category-tool-link:focus-visible)::before,
.category-tool-list li:has(.category-tool-link:focus-visible)::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.category-tool-list li:has(.category-tool-link:hover)::after,
.category-tool-list li:has(.category-tool-link:focus-visible)::after {
  transform: translate(-50%, 0) rotate(45deg);
}

.category-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: auto;
  border: 1px solid color-mix(in srgb, var(--accent) 42%, #d6e1ef);
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent) 5%, #ffffff);
  color: color-mix(in srgb, var(--accent) 88%, #071120);
  font-size: 0.82rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.category-more:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--accent) 64%, #ffffff);
  background: color-mix(in srgb, var(--accent) 10%, #ffffff);
  color: color-mix(in srgb, var(--accent) 94%, #071120);
}

.tool-section {
  padding: 10px 0 26px;
  color: var(--ink);
}

.tool-section > .container > .tool-grid,
.tool-section > .container > .empty-state {
  display: none !important;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 8px 0 16px;
}

.section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.2;
}

.tool-section .section-head h2 {
  display: none;
}

.tools-overview {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-section .filter-button {
  border-color: #d7e3f0;
  background: #ffffff;
  color: #43536b;
}

.tool-section .filter-button.active,
.tool-section .filter-button:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
}

.result-count {
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #cbd8e8;
  font-size: 0.86rem;
  font-weight: 900;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
  padding: 10px;
  border: 1px solid #d9e5f2;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.filter-bar.single-action {
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.filter-button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid #d4e0ee;
  border-radius: 999px;
  background: #ffffff;
  color: #43536b;
  font-size: 0.82rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.filter-button.all-tools-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-color: color-mix(in srgb, var(--primary) 46%, #d6e1ef);
  background: #ffffff;
  color: color-mix(in srgb, var(--primary) 82%, #071120);
  box-shadow: none;
  font-size: 0.86rem;
}

.all-tools-count {
  color: #66758b;
  font-size: 0.8rem;
  font-weight: 850;
}

.filter-button.active,
.filter-button:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
}

.filter-button.all-tools-button.active,
.filter-button.all-tools-button:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--primary) 64%, #d6e1ef);
  background: color-mix(in srgb, var(--primary) 8%, #ffffff);
  color: color-mix(in srgb, var(--primary) 88%, #071120);
}

.filter-button.all-tools-button.active .all-tools-count,
.filter-button.all-tools-button:hover .all-tools-count {
  color: #52627a;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tool-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, #d7e3f0);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #fbfdff),
    var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow), 0 0 0 1px color-mix(in srgb, var(--accent) 9%, transparent);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  will-change: transform;
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 34%, #ffffff));
}

.tool-card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: color-mix(in srgb, var(--accent) 62%, #ffffff);
  box-shadow:
    0 18px 38px rgba(10, 24, 45, 0.14),
    0 0 0 2px color-mix(in srgb, var(--accent) 8%, transparent),
    0 0 24px color-mix(in srgb, var(--accent) 16%, transparent);
}

.tool-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 42%, #ffffff);
  outline-offset: 3px;
}

.tool-top {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.tool-favicon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d9e6f3;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: none;
}

.tool-favicon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%;
}

.tool-favicon.small {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tool-favicon.small img {
  width: 22px;
  height: 22px;
}

.category-tool-list .tool-favicon.small {
  place-self: center;
}

.tool-favicon.large {
  width: 58px;
  height: 58px;
  flex-basis: 58px;
  border-radius: 999px;
}

.tool-favicon.large img {
  width: 40px;
  height: 40px;
}

.favicon-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px solid #d9e6f3;
  border-radius: 999px;
  background: #ffffff;
}

.favicon-fallback::before {
  content: "";
  width: 52%;
  height: 52%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, transparent 34%, #8aa0ba 36% 58%, transparent 60%),
    linear-gradient(45deg, transparent 58%, #8aa0ba 60% 72%, transparent 74%);
}

.favicon-fallback[hidden] {
  display: none;
}

.tool-favicon.large .favicon-fallback {
  font-size: 0.9rem;
}

.tool-card h3 {
  margin: 0 0 4px;
  color: #111d31;
  font-size: 1rem;
  line-height: 1.25;
}

.tool-category {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, #dbe6f3);
  background: color-mix(in srgb, var(--accent) 11%, white);
  color: color-mix(in srgb, var(--accent) 84%, #142033);
  font-size: 0.75rem;
  font-weight: 900;
}

.tool-desc {
  display: -webkit-box;
  min-height: 72px;
  max-height: 72px;
  margin: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.badge-row,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.badge-row:empty {
  visibility: hidden;
}

.badge-row {
  min-height: 24px;
}

.badge,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.badge.popular {
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  background: color-mix(in srgb, var(--accent) 16%, white);
  color: color-mix(in srgb, var(--accent) 90%, #142033);
}

.badge.new {
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, white);
  color: color-mix(in srgb, var(--accent) 86%, #142033);
}

.badge.recommended {
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
  background: color-mix(in srgb, var(--accent) 16%, white);
  color: color-mix(in srgb, var(--accent) 90%, #142033);
}

.meta-pill {
  border: 1px solid #dbe6f3;
  background: #f4f8fd;
  color: #45556f;
}

.meta-pill.price {
  border-color: rgba(47, 118, 246, 0.2);
  background: rgba(47, 118, 246, 0.08);
  color: #1f5dca;
}

.meta-pill.lang {
  border-color: rgba(21, 164, 110, 0.2);
  background: rgba(21, 164, 110, 0.08);
  color: #087c51;
}

.tool-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(90px, 0.78fr);
  gap: 8px;
  margin-top: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 900;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #12bfb8, #0ea5c3);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(17, 199, 213, 0.18);
}

.button.secondary {
  border-color: #d6e1ef;
  background: #ffffff;
  color: #334155;
}

.empty-state {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 40px 20px;
  border: 1px dashed #c4d2e3;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
}

.empty-state[hidden] {
  display: none;
}

.empty-state strong {
  font-size: 1.05rem;
}

.empty-state span {
  color: var(--ink-soft);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 12, 25, 0.72);
  backdrop-filter: blur(10px);
}

.list-modal-backdrop {
  z-index: 42;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

#toolModal {
  z-index: 50;
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: min(680px, 100%);
  max-height: min(760px, 90vh);
  overflow: auto;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
}

.list-modal {
  width: min(1120px, calc(100% - 28px));
  max-height: min(820px, 92vh);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 22px;
  scrollbar-color: rgba(92, 116, 145, 0.72) transparent;
  scrollbar-width: auto;
}

.list-modal::-webkit-scrollbar {
  width: 9px;
}

.list-modal::-webkit-scrollbar-track {
  background: transparent;
}

.list-modal::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid transparent;
  background: rgba(92, 116, 145, 0.64);
  background-clip: padding-box;
}

.list-modal:hover::-webkit-scrollbar-thumb {
  background: rgba(17, 199, 213, 0.68);
  background-clip: padding-box;
}

.list-modal-head {
  position: sticky;
  top: -22px;
  z-index: 6;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: -22px -22px 18px;
  padding: 22px 58px 16px 22px;
  border-bottom: 1px solid rgba(215, 227, 240, 0.75);
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 100%);
}

.list-modal-head h2 {
  margin: 0 0 6px;
  color: #111d31;
  font-size: 1.6rem;
}

.list-modal-head p {
  margin: 0;
  color: #64748b;
  font-weight: 800;
}

.list-modal-head .list-modal-source {
  margin-top: 6px;
  color: #7a8798;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.45;
}

.list-tool-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: none;
  overflow: visible;
  padding: 2px 6px 6px 2px;
}

.list-load-more {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  width: min(260px, 100%);
  margin: 18px auto 4px;
  border: 1px solid rgba(17, 199, 213, 0.44);
  border-radius: 999px;
  background: #ffffff;
  color: #0f7f90;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(10, 24, 45, 0.08);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.list-load-more:hover {
  transform: translateY(-1px);
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
}

.list-load-more[hidden] {
  display: none;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #dce6f3;
  border-radius: 12px;
  background: #ffffff;
  color: #273449;
  font-size: 1.35rem;
  line-height: 1;
}

.list-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 7;
  border-color: #f2a900;
  background: #ffffff;
}

.modal-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 42px;
  margin-bottom: 14px;
}

.modal h2 {
  margin: 0 0 6px;
  font-size: 1.75rem;
}

.modal p {
  color: var(--ink-soft);
  line-height: 1.72;
}

.modal-meta {
  margin-top: 14px;
}

.detail-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.detail-item {
  padding: 15px;
  border: 1px solid #e1e9f4;
  border-radius: 16px;
  background: #ffffff;
}

.detail-item strong {
  display: block;
  margin-bottom: 7px;
}

.detail-item ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.modal-link {
  width: 100%;
}

.modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: stretch;
}

.quick-actions {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.card-quick-actions {
  justify-content: flex-end;
  margin-top: -4px;
}

.modal-quick-actions {
  height: 100%;
}

.quick-action,
.modal-icon-link {
  position: relative;
  display: grid;
  width: 34px;
  min-height: 34px;
  place-items: center;
  border: 1px solid #d8e4f2;
  border-radius: 11px;
  background: #ffffff;
  color: #43546c;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.modal-icon-link {
  width: 42px;
  min-height: 42px;
  border-radius: 13px;
}

.quick-action:hover,
.quick-action:focus-visible,
.modal-icon-link:hover {
  border-color: rgba(17, 199, 213, 0.5);
  background: rgba(17, 199, 213, 0.08);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.quick-action svg,
.modal-icon-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-icon-link svg {
  width: 19px;
  height: 19px;
}

.youtube-action {
  border-color: #d8e4f2;
  color: var(--text);
  background: transparent;
}

.youtube-action:hover,
.youtube-action:focus-visible {
  border-color: rgba(255, 0, 0, 0.28);
  background: rgba(255, 0, 0, 0.06);
  color: var(--text);
}

.youtube-action svg,
.google-action svg {
  fill: currentColor;
  stroke-width: 0;
}

.youtube-action .youtube-logo {
  width: 20px;
  height: 20px;
}

.youtube-action .youtube-logo-bg {
  fill: #ff0000;
}

.youtube-action .youtube-logo-play {
  fill: #ffffff;
}

.google-action svg path:nth-child(1) {
  fill: #4285f4;
}

.google-action svg path:nth-child(2) {
  fill: #34a853;
}

.google-action svg path:nth-child(3) {
  fill: #fbbc05;
}

.google-action svg path:nth-child(4) {
  fill: #ea4335;
}

.share-action {
  color: #52627a;
}

.has-tooltip {
  position: relative;
}

.has-tooltip::before,
.has-tooltip::after {
  position: absolute;
  left: 50%;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.has-tooltip::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 9px);
  width: max-content;
  max-width: 180px;
  padding: 7px 9px;
  border: 1px solid rgba(199, 213, 229, 0.95);
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(10, 24, 45, 0.14);
  color: #334155;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.has-tooltip::after {
  content: "";
  bottom: calc(100% + 4px);
  width: 9px;
  height: 9px;
  border-right: 1px solid rgba(199, 213, 229, 0.95);
  border-bottom: 1px solid rgba(199, 213, 229, 0.95);
  background: #ffffff;
  transform: translate(-50%, 6px) rotate(45deg);
}

.has-tooltip:hover::before,
.has-tooltip:hover::after,
.has-tooltip:focus-visible::before,
.has-tooltip:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.has-tooltip:hover::after,
.has-tooltip:focus-visible::after {
  transform: translate(-50%, 0) rotate(45deg);
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 80;
  max-width: min(320px, calc(100vw - 32px));
  padding: 12px 15px;
  transform: translateX(-50%);
  border: 1px solid rgba(17, 199, 213, 0.34);
  border-radius: 14px;
  background: rgba(7, 17, 32, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-toast[hidden] {
  display: none;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(17, 199, 213, 0.08), transparent 34%),
    #071120;
  color: #dbe7f5;
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.45fr 1.05fr;
  align-items: start;
  gap: 34px;
}

.footer-summary {
  display: grid;
  gap: 9px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
}

.footer-brand span {
  font-size: 0.98rem;
}

.site-footer p {
  margin: 0;
  color: #aebbd0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-copyright {
  color: #8090a7 !important;
  font-size: 0.8rem !important;
}

.site-footer a {
  text-decoration: none;
}

.footer-nav-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-nav-group strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #aebbd0;
  font-size: 0.84rem;
  font-weight: 720;
}

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

.footer-disclaimer {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
}

.footer-trust {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.footer-trust div {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-trust strong,
.footer-trust span {
  display: block;
}

.footer-trust strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

.footer-trust span {
  margin-top: 3px;
  color: #9eb0c7;
  font-size: 0.78rem;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .category-grid,
  .tool-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .list-tool-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body {
    background:
      radial-gradient(circle at 18% -10%, rgba(17, 199, 213, 0.2), transparent 22rem),
      linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 390px, #eef4fb 391px, #eef4fb 100%);
  }

  .main-nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-inner > * {
    min-width: 0;
  }

  .search-tags {
    grid-column: 1;
    max-width: 100%;
    justify-content: center;
    justify-self: center;
    margin-top: -5px;
  }

  .search-panel {
    max-width: 640px;
    justify-self: center;
  }

  .hero-copy {
    grid-row: auto;
    text-align: center;
  }

  .hero h1 {
    margin: 0 auto;
  }

  .category-grid,
  .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .list-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }

  .tools-overview {
    justify-content: stretch;
  }

  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 8px;
    scrollbar-width: none;
  }

  .filter-bar.single-action {
    overflow: visible;
    justify-content: stretch;
    padding: 0;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .filter-bar.single-action .filter-button {
    flex: 1 1 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav-group {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-disclaimer {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 58px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .header-action {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 12px 0 10px;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.14;
  }

  .search-panel input {
    height: 42px;
    padding-left: 42px;
    padding-right: 42px;
    font-size: 0.82rem;
  }

  .search-panel {
    width: calc(100% - 2px);
    max-width: calc(100vw - 42px);
    justify-self: stretch;
    margin: 0 auto;
  }

  .search-suggestions {
    max-height: 340px;
    border-radius: 14px;
  }

  .search-panel > button {
    right: 6px;
    width: 30px;
    height: 30px;
  }

  .search-panel::after {
    left: 16px;
    width: 17px;
    height: 17px;
  }

  .section-head {
    margin-bottom: 12px;
  }

  .section-head h2 {
    font-size: 1.32rem;
  }

  .tool-section {
    padding: 8px 0 24px;
  }

  .filter-button.all-tools-button {
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
  }

  .filter-bar {
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .filter-bar.single-action {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
  }

  .filter-button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .footer-nav-group {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-trust {
    grid-template-columns: 1fr;
  }

  .tool-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .list-tool-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .list-modal {
    width: min(100%, calc(100% - 14px));
    max-height: 94vh;
    padding: 16px 10px;
    border-radius: 18px;
  }

  .list-modal-head {
    top: -16px;
    margin: -16px -10px 13px;
    padding: 15px 52px 12px 10px;
  }

  .list-modal-head h2 {
    margin-bottom: 4px;
    font-size: 1.28rem;
    line-height: 1.25;
  }

  .list-modal-head p {
    font-size: 0.86rem;
  }

  .list-modal-head .list-modal-source {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.74rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .list-modal-close {
    top: 11px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .category-section {
    padding-top: 6px;
  }

  .category-section > .container {
    width: min(100% - 28px, 1180px);
    padding: 0;
    border-radius: 0;
  }

  .tool-card {
    min-height: 258px;
    padding: 16px;
  }

  .tool-top {
    gap: 10px;
  }

  .tool-desc {
    min-height: auto;
    max-height: none;
    -webkit-line-clamp: 3;
  }

  .category-card {
    min-height: auto;
    padding: 16px;
  }

  .category-card h3,
  .tool-card h3 {
    font-size: 0.98rem;
  }

  .category-tool-list {
    max-height: 326px;
    gap: 8px;
    grid-auto-rows: minmax(26px, auto);
    overflow-x: hidden;
    overflow-y: auto;
  }

  .category-tool-list li {
    grid-template-columns: 20px 24px minmax(0, 1fr) 24px;
    gap: 6px;
  }

  .tool-desc,
  .category-description {
    font-size: 0.86rem;
  }

  .tool-actions {
    grid-template-columns: 1fr;
  }

  .button {
    min-height: 42px;
  }

  .modal {
    width: min(100%, calc(100% - 16px));
    max-height: 92vh;
    padding: 20px 14px;
    border-radius: 18px;
  }

  .modal-heading {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-right: 42px;
  }

  .modal h2 {
    font-size: 1.34rem;
    line-height: 1.25;
  }

  .detail-item {
    padding: 13px;
  }

  .modal-meta {
    gap: 6px;
  }

  .modal-actions {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
  }

  .modal-icon-link {
    width: 40px;
    min-height: 40px;
  }
}

@media (max-width: 430px) {
  .container,
  .category-section > .container {
    width: min(100% - 22px, 1180px);
  }

  .brand {
    gap: 7px;
  }

  .brand span {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 1.36rem;
  }

  .search-panel input {
    font-size: 0.78rem;
  }

  .search-tags {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .search-tags::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    padding: 15px;
  }

  .category-card-head {
    gap: 9px;
  }

  .category-icon {
    width: 45px;
    height: 45px;
  }

  .category-total {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.78rem;
  }

  .tool-actions {
    gap: 7px;
  }

  .button {
    min-height: 40px;
    font-size: 0.84rem;
  }

  .footer-inner {
    gap: 20px;
  }
}

@media (max-width: 390px) {
  .container,
  .category-section > .container {
    width: min(100% - 18px, 1180px);
  }

  .category-tool-list li {
    grid-template-columns: 18px 22px minmax(0, 1fr) 22px;
    font-size: 0.8rem;
  }

  .category-tool-list .rank {
    font-size: 0.7rem;
  }

  .tool-favicon.small {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .tool-favicon.small img {
    width: 20px;
    height: 20px;
  }

  .category-detail-button {
    width: 22px;
    height: 22px;
  }

  .category-detail-button svg {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.26rem;
  }

  .search-panel input {
    padding-left: 39px;
    font-size: 0.73rem;
  }

  .search-panel::after {
    left: 14px;
    width: 16px;
    height: 16px;
  }

  .category-card,
  .tool-card {
    padding: 14px;
  }

  .tool-favicon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .tool-favicon img {
    width: 28px;
    height: 28px;
  }
}
