@charset "UTF-8";
/* Pretendard Font */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
/* Global code highlighting styles */
.highlight {
  background: #f8fafc;
  color: #334155; }

/* 공통 코드 스타일 */
.post .post-content pre, .resume-page pre, .post .post-content code, .resume-page code, .post .post-content .highlight {
  font-family: "Fira Code", "SF Mono", Monaco, Inconsolata, "Roboto Mono", "Source Code Pro", monospace;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem; }

.post .post-content pre, .resume-page pre {
  padding: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #334155;
  white-space: pre;
  word-break: normal;
  word-wrap: normal; }
  .post .post-content pre code, .resume-page pre code {
    background: transparent;
    border: none;
    padding: 0;
    font-size: inherit;
    white-space: pre;
    word-break: normal;
    overflow-wrap: normal; }

.post .post-content code, .resume-page code {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  color: #db2777;
  font-weight: 600; }

/* 공통 링크 스타일 */
.post .post-content a, .resume-page a {
  color: #4b5563;
  text-decoration: none;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent; }
  .post .post-content a:hover, .resume-page a:hover {
    color: #1f2937;
    background: rgba(75, 85, 99, 0.1);
    border-bottom-color: #4b5563; }
  .post .post-content a[href^="mailto:"], .resume-page a[href^="mailto:"] {
    color: #059669; }
    .post .post-content a[href^="mailto:"]:hover, .resume-page a[href^="mailto:"]:hover {
      color: #047857;
      background: rgba(5, 150, 105, 0.1);
      border-bottom-color: #059669; }
  .post .post-content a[href^="http"], .resume-page a[href^="http"], .post .post-content a[href^="https://"], .resume-page a[href^="https://"] {
    color: #2563eb; }
    .post .post-content a[href^="http"]:hover, .resume-page a[href^="http"]:hover, .post .post-content a[href^="https://"]:hover, .resume-page a[href^="https://"]:hover {
      color: #1d4ed8;
      background: rgba(37, 99, 235, 0.1);
      border-bottom-color: #2563eb; }

/* 공통 카드 스타일 */
.post-card:hover, .post-article, .post-list > li.post-card-clickable:hover, .category-card:hover, .post-card, .post-list > li, .disqus, .paginate, .category-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }

.post-card:hover, .post-article, .post-list > li.post-card-clickable:hover, .category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/* 코드 블록 스크롤바 스타일링 */
pre::-webkit-scrollbar {
  height: 8px; }

pre::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px; }

pre::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px; }

pre::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; }

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.6;
  color: #333;
  word-break: keep-all;
  word-wrap: break-word;
  overflow-wrap: break-word; }

/* Container */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #1f2937 100%); }

/* Header */
.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px); }

.header-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center; }

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none; }

.nav {
  display: flex;
  gap: 1.5rem; }

.nav-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease; }

.nav-link:hover,
.nav-link.active {
  color: white; }

/* Main Content */
.main {
  flex: 1; }

.main-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 2rem 1rem; }

/* Posts */
.posts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; }

.post-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease; }

.post-card:hover {
  background: white;
  transform: translateY(-2px); }

.post-header {
  background: rgba(249, 250, 251, 0.5);
  padding: 1.5rem; }

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem; }

.badge {
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  background: linear-gradient(135deg, #4b5563, #6b7280); }

.post-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280; }

.post-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem; }

.post-title a {
  color: #111827;
  text-decoration: none;
  transition: color 0.3s ease; }

.post-title a:hover {
  color: #374151; }

.post-description {
  color: #4b5563;
  font-size: 1rem; }

.post-content {
  background: white;
  padding: 1.5rem; }

.read-more {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease; }

.read-more:hover {
  color: #1f2937; }

/* Back Button */
.back-button {
  display: inline-block;
  color: #d1d5db;
  text-decoration: none;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease; }

.back-button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1); }

/* Article */
.post-article {
  overflow: hidden; }

.article-header {
  background: #f9fafb;
  padding: 2rem;
  border-bottom: 1px solid #e5e7eb; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem; }

.meta-separator {
  color: #6b7280; }

.meta-text {
  color: #6b7280; }

.article-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem; }

.article-content {
  padding: 2rem;
  background: white; }

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #111827;
  margin: 2rem 0 1rem 0; }

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

.article-content p {
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.75; }

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px); }

.footer-content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #d1d5db; }

/* Legacy support for existing Jekyll classes */
.wrapper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1rem; }

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px); }
  .site-header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1rem; }

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none; }
  .site-title:visited {
    color: white; }

.site-description {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-left: 0.75rem;
  font-weight: 400; }

.site-nav {
  display: flex;
  gap: 1.5rem; }
  .site-nav .page-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease; }
    .site-nav .page-link:hover {
      color: white; }
    .site-nav .page-link.active {
      color: white;
      font-weight: 700; }

.page-content {
  flex: 1; }
  .page-content .wrapper {
    padding: 2rem 0.5rem; }
  @media (max-width: 768px) {
    .page-content .wrapper {
      padding: 1rem 0.5rem; } }

.home .intro {
  margin-bottom: 2rem;
  text-align: left; }
  .home .intro h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem; }
  .home .intro p {
    color: #d1d5db;
    font-size: 1.125rem;
    font-style: italic;
    opacity: 0.9; }

.post-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none; }
  .post-list > li {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s ease; }
    .post-list > li.post-card-clickable {
      cursor: pointer; }
      .post-list > li.post-card-clickable:hover {
        background: white;
        transform: translateY(-2px); }
      .post-list > li.post-card-clickable:active, .post-list > li.post-card-clickable.touch-feedback {
        transform: translateY(0px) scale(0.98);
        background: rgba(249, 250, 251, 0.95);
        transition: all 0.1s ease; }
    .post-list > li .post-meta {
      background: rgba(249, 250, 251, 0.5);
      padding: 1.5rem 1.5rem 0.5rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center; }
      .post-list > li .post-meta .post-date {
        font-size: 0.875rem;
        color: #6b7280; }
    .post-list > li h3 {
      padding: 0.5rem 1.5rem 0.5rem 1.5rem; }
      .post-list > li h3 .post-link {
        font-size: 1.25rem;
        font-weight: 600;
        color: #111827;
        text-decoration: none;
        transition: color 0.3s ease; }
        .post-list > li h3 .post-link:hover {
          color: #374151; }
    .post-list > li .post-description {
      padding: 0 1.5rem 1.5rem 1.5rem;
      color: #4b5563;
      font-size: 1rem;
      line-height: 1.5;
      margin: 0; }

.post .post-header {
  background: #f9fafb;
  padding: 2rem;
  border-bottom: 1px solid #e5e7eb; }
  .post .post-header .post-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem; }
  .post .post-header .post-meta {
    font-size: 0.875rem;
    color: #6b7280; }
.post .post-content {
  padding: 2rem;
  background: white; }
  .post .post-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 2rem 0 1rem 0; }
    .post .post-content h2:first-child {
      margin-top: 0; }
  .post .post-content p {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.75; }
  .post .post-content .highlight {
    overflow: hidden;
    color: #334155; }
    .post .post-content .highlight pre {
      background: transparent;
      border: none;
      margin: 0; }
      .post .post-content .highlight pre code {
        background: transparent;
        border: none;
        padding: 0; }
    .post .post-content .highlight .w {
      color: #334155; }
    .post .post-content .highlight .c, .post .post-content .highlight .ch, .post .post-content .highlight .cd, .post .post-content .highlight .cm, .post .post-content .highlight .cpf, .post .post-content .highlight .c1, .post .post-content .highlight .cs {
      color: #64748b;
      font-style: italic; }
    .post .post-content .highlight .k, .post .post-content .highlight .kc, .post .post-content .highlight .kd, .post .post-content .highlight .kn, .post .post-content .highlight .kp, .post .post-content .highlight .kr, .post .post-content .highlight .kt {
      color: #7c3aed;
      font-weight: 600; }
    .post .post-content .highlight .s, .post .post-content .highlight .sa, .post .post-content .highlight .sb, .post .post-content .highlight .sc, .post .post-content .highlight .dl, .post .post-content .highlight .sd, .post .post-content .highlight .s2, .post .post-content .highlight .se, .post .post-content .highlight .sh, .post .post-content .highlight .si, .post .post-content .highlight .sx, .post .post-content .highlight .sr, .post .post-content .highlight .s1, .post .post-content .highlight .ss {
      color: #059669; }
    .post .post-content .highlight .m, .post .post-content .highlight .mb, .post .post-content .highlight .mf, .post .post-content .highlight .mh, .post .post-content .highlight .mi, .post .post-content .highlight .mo {
      color: #dc2626; }
    .post .post-content .highlight .o, .post .post-content .highlight .ow {
      color: #0ea5e9; }
    .post .post-content .highlight .n, .post .post-content .highlight .na, .post .post-content .highlight .nb, .post .post-content .highlight .nc, .post .post-content .highlight .nd, .post .post-content .highlight .ne, .post .post-content .highlight .nf, .post .post-content .highlight .ni, .post .post-content .highlight .nl, .post .post-content .highlight .nn, .post .post-content .highlight .no, .post .post-content .highlight .nt, .post .post-content .highlight .nv, .post .post-content .highlight .nx, .post .post-content .highlight .py {
      color: #334155; }
    .post .post-content .highlight .nf {
      color: #2563eb;
      font-weight: 600; }
    .post .post-content .highlight .nc {
      color: #7c2d12;
      font-weight: 600; }
    .post .post-content .highlight .err {
      color: #dc2626;
      background: #fef2f2; }
    .post .post-content .highlight .gi {
      color: #059669;
      background: #f0fdf4; }
    .post .post-content .highlight .gd {
      color: #dc2626;
      background: #fef2f2; }
    .post .post-content .highlight .p, .post .post-content .highlight .pi {
      color: #475569; }
  .post .post-content blockquote {
    border-left: 4px solid #d1d5db;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280; }
  .post .post-content ul, .post .post-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px); }
  .site-footer .wrapper {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #d1d5db; }
  .site-footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; }
  .site-footer .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap; }
  .site-footer .social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease; }
    .site-footer .social-link:hover {
      color: white;
      background: rgba(255, 255, 255, 0.1); }
    .site-footer .social-link svg {
      flex-shrink: 0; }
  .site-footer p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.8; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  margin-top: 2rem;
  flex-wrap: wrap; }
  .pagination .page-link {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    min-width: 2.5rem;
    text-align: center; }
    .pagination .page-link:hover {
      background: rgba(255, 255, 255, 0.2);
      color: white; }
    .pagination .page-link.current {
      background: rgba(255, 255, 255, 0.9);
      color: #1f2937;
      font-weight: 600; }
      .pagination .page-link.current:hover {
        background: white;
        color: #1f2937; }
    .pagination .page-link.first-last {
      font-weight: 700;
      background: rgba(255, 255, 255, 0.15); }
      .pagination .page-link.first-last:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-1px); }
  .pagination .page-ellipsis {
    padding: 0.5rem 0.25rem;
    color: #9ca3af;
    font-size: 0.875rem; }

/* Disqus */
.disqus {
  margin-top: 2rem;
  padding: 2rem; }

/* Paginate */
.paginate {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.95); }
  .paginate .previous {
    display: block;
    margin-bottom: 0.5rem; }
    .paginate .previous a {
      color: #4b5563;
      text-decoration: none; }
      .paginate .previous a:hover {
        color: #1f2937; }

/* Post Footer */
.post-footer {
  margin-top: 2rem;
  text-align: center;
  padding: 1rem 0; }

/* Categories Page Styles */
.categories-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem; }

.category-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: all 0.3s ease; }
  .category-card:hover {
    background: white;
    transform: translateY(-2px); }

.category-header {
  background: rgba(249, 250, 251, 0.5);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between; }
  .category-header .badge {
    margin: 0; }
  .category-header .post-count {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500; }

.category-posts {
  padding: 1rem 1.5rem 1.5rem 1.5rem; }

.category-post-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6; }
  .category-post-item:last-child {
    border-bottom: none; }
  .category-post-item .category-post-link {
    flex: 1;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-right: 1rem; }
    .category-post-item .category-post-link:hover {
      color: #111827; }
  .category-post-item .category-post-date {
    font-size: 0.875rem;
    color: #9ca3af;
    white-space: nowrap; }

/* About/Resume Page Styles */
.resume-page {
  padding: 2rem 0.25rem;
  margin-bottom: 2rem; }
  .resume-page section {
    margin-bottom: 2.5rem; }
    .resume-page section:last-child {
      margin-bottom: 0; }
  .resume-page h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb; }
  .resume-page h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 1rem 0; }
    .resume-page h2:first-of-type {
      margin-top: 0; }
  .resume-page ul, .resume-page ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem; }
    .resume-page ul li, .resume-page ol li {
      margin-bottom: 0.5rem;
      line-height: 1.6;
      color: #4b5563; }
    .resume-page ul ul, .resume-page ul ol, .resume-page ol ul, .resume-page ol ol {
      margin-top: 0.5rem; }
  .resume-page .period {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    background: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem; }
  .resume-page .skill {
    margin-top: 1.5rem; }
    .resume-page .skill .skill-horizontal {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-left: 1.5rem;
      list-style: none;
      padding-left: 0; }
      .resume-page .skill .skill-horizontal li {
        margin-bottom: 0;
        position: relative; }
        .resume-page .skill .skill-horizontal li::before {
          content: "•";
          position: absolute;
          left: -0.75rem;
          color: inherit; }
        .resume-page .skill .skill-horizontal li:first-child {
          margin-left: 0.75rem; }
        .resume-page .skill .skill-horizontal li:not(:first-child) {
          margin-left: 0.75rem; }
  .resume-page q {
    display: block;
    font-style: italic;
    color: #6b7280;
    line-height: 1.7;
    padding: 1rem;
    background: #f9fafb;
    border-left: 4px solid #d1d5db;
    border-radius: 0 0.375rem 0.375rem 0;
    margin: 1rem 0; }
    .resume-page q:before, .resume-page q:after {
      content: none; }

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem; }

  .nav {
    gap: 1rem; }

  .intro-title {
    font-size: 1.5rem; }

  .article-title {
    font-size: 1.875rem; }

  .main-content {
    padding: 1rem 0.5rem; }

  .post-header,
  .post-content,
  .article-header,
  .article-content {
    padding: 1rem 0.5rem; }

  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem; }

  .article-meta {
    flex-wrap: wrap; }

  .meta-separator {
    display: none; }

  .site-header .wrapper {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0.5rem; }

  .site-nav {
    gap: 1rem; }

  .post .post-header .post-title {
    font-size: 1.875rem; }

  .home .intro h1 {
    font-size: 1.5rem; }

  .site-footer .wrapper {
    padding: 1.5rem 0.5rem; }
  .site-footer .social-links {
    gap: 1rem; }
  .site-footer .social-link {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem; }

  .pagination {
    gap: 0.125rem; }
    .pagination .page-link {
      padding: 0.375rem 0.5rem;
      font-size: 0.75rem;
      min-width: 2rem; }
    .pagination .page-ellipsis {
      padding: 0.375rem 0.125rem;
      font-size: 0.75rem; }

  .resume-page {
    padding: 1rem 0.25rem;
    margin-bottom: 1rem; }
    .resume-page h1 {
      font-size: 1.5rem; }
    .resume-page h2 {
      font-size: 1.125rem; }
    .resume-page .skill {
      margin-top: 1rem; }
      .resume-page .skill .skill-horizontal {
        flex-direction: column;
        gap: 0.5rem; }
        .resume-page .skill .skill-horizontal li {
          margin-left: 0; }
          .resume-page .skill .skill-horizontal li::before {
            left: -1rem; }
          .resume-page .skill .skill-horizontal li:first-child {
            margin-left: 1rem; }
          .resume-page .skill .skill-horizontal li:not(:first-child) {
            margin-left: 1rem; }
    .resume-page q {
      padding: 0.75rem;
      font-size: 0.875rem; }

  .categories-grid {
    gap: 1rem; }

  .category-header {
    padding: 1rem 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem; }

  .category-posts {
    padding: 0.75rem 0.5rem 1rem 0.5rem; }

  .category-post-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem; }
    .category-post-item .category-post-link {
      margin-right: 0; }
    .category-post-item .category-post-date {
      font-size: 0.75rem; }

  .category-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem; }
    .category-intro .intro-title {
      font-size: 1.5rem; } }
