/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import url("/assets/mobile_tooltip-253be48a.css");
@import url("/assets/care_heatmap-83dcd6f5.css");
@import url("/assets/custom_checkbox-96932e95.css");
@import url("/assets/export_dropdown-939eee42.css");
@import url("/assets/cookierun_font-65ae9afc.css");

/* ========================================
   Design System - Typography & Spacing
   ======================================== */

:root {
  /* Typography Scale - Using modular scale (1.25 ratio) */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;

  /* Font Weights */
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing Scale - Using 4px base unit */
  --space-0: 0;
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.25rem; /* 20px */
  --space-6: 1.5rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-10: 2.5rem; /* 40px */
  --space-12: 3rem; /* 48px */
  --space-16: 4rem; /* 64px */

  /* Section Spacing */
  --section-gap-sm: var(--space-6);
  --section-gap-md: var(--space-8);
  --section-gap-lg: var(--space-10);

  /* Card Padding */
  --card-padding-sm: var(--space-3);
  --card-padding-md: var(--space-4);
  --card-padding-lg: var(--space-6);
}

/* Typography Utility Classes */
.heading-1 {
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
}

.heading-2 {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
}

.heading-3 {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
}

.heading-4 {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
}

.body-lg {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
}

.body-base {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
}

.body-sm {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
}

.caption {
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
}

/* Spacing Utility Classes */
.section-spacing {
  margin-top: var(--section-gap-md);
  margin-bottom: var(--section-gap-md);
}

.card-padding {
  padding: var(--card-padding-md);
}

/* Chrome rendering fix for gradient backgrounds */
.bg-gradient-to-br {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  :root {
    --section-gap-sm: var(--space-4);
    --section-gap-md: var(--space-6);
    --section-gap-lg: var(--space-8);

    --card-padding-sm: var(--space-2);
    --card-padding-md: var(--space-3);
    --card-padding-lg: var(--space-4);
  }
}

/* Content area link styles only - not for UI elements */
.markdown-content a,
.content-area a,
.text-content a {
  color: #ea580c; /* text-orange-600 */
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}

.markdown-content a:hover,
.content-area a:hover,
.text-content a:hover {
  color: #9a3412; /* text-orange-800 */
}

.markdown-content a:visited,
.content-area a:visited,
.text-content a:visited {
  color: #ea580c; /* Same as normal link color */
}

.markdown-content a:visited:hover,
.content-area a:visited:hover,
.text-content a:visited:hover {
  color: #9a3412; /* Same as hover color */
}

/* Dark mode content link styles */
.dark .markdown-content a,
.dark .content-area a,
.dark .text-content a {
  color: #fb923c; /* text-orange-400 */
}

.dark .markdown-content a:hover,
.dark .content-area a:hover,
.dark .text-content a:hover {
  color: #fed7aa; /* text-orange-300 */
}

.dark .markdown-content a:visited,
.dark .content-area a:visited,
.dark .text-content a:visited {
  color: #fb923c; /* Same as normal link color in dark mode */
}

.dark .markdown-content a:visited:hover,
.dark .content-area a:visited:hover,
.dark .text-content a:visited:hover {
  color: #fed7aa; /* Same as hover color in dark mode */
}

/* Drag and Drop Styles */
.sortable-ghost {
  opacity: 0.4;
  background: #f3f4f6;
  border: 2px dashed #9ca3af;
}

.sortable-chosen {
  cursor: grabbing;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sortable-drag {
  opacity: 0.8;
  transform: rotate(2deg);
}

.dark .sortable-ghost {
  background: #374151;
  border-color: #6b7280;
}

/* Resizable panels */
.resizable-panel {
  transition: width 0.2s ease-in-out;
}

.resizable-panel.resizing {
  transition: none;
}

.resizer {
  cursor: col-resize;
  user-select: none;
}

/* Custom monospace font override - 더 구체적인 선택자로 우선순위 확보 */
.font-mono,
footer .font-mono,
footer p.font-mono,
body .font-mono {
  font-family:
    "JetBrains Mono", "Fira Code", "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
}

/* White background for routine images - 더 구체적인 선택자 사용 */
body .routine-image,
body img.routine-image {
  background-color: white;
  background: white;
  opacity: 1;
  visibility: visible;
  display: block;
  z-index: 1;
}

/* Dark mode에서도 흰색 배경 유지 */
body.dark .routine-image,
html.dark body .routine-image,
.dark img.routine-image {
  background-color: white;
  background: white;
}

/* Pseudo elements 제거 */
.routine-image::before,
.routine-image::after {
  display: none;
  content: none;
  background-color: transparent;
}

/* Hide scrollbar */
.scrollbar-hide {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

/* Line clamp utilities for consistent text truncation */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  hyphens: auto;
}

/* Ensure proper text truncation in routine cards - 더 구체적인 선택자 사용 */
.routine-description-preview,
body .routine-description-preview,
.routine-card .routine-description-preview {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  text-overflow: ellipsis;
  line-height: 1.4;
  max-height: calc(1.4em * 3);
}

/* Fallback for browsers that don't support -webkit-line-clamp */
@supports not (-webkit-line-clamp: 3) {
  .routine-description-preview {
    position: relative;
    max-height: calc(1.4em * 3); /* line-height * 3 lines */
    overflow: hidden;
  }

  .routine-description-preview:after {
    content: "...";
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(to right, transparent 0%, white 70%);
    padding-left: 20px;
    color: #374151;
    font-weight: normal;
  }

  .dark .routine-description-preview:after {
    background: linear-gradient(to right, transparent 0%, #2a2a2a 70%);
    color: #a5a5a5;
  }
}

/* Additional safeguards for text overflow */
.routine-description-preview * {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Calendar click-based tooltips */
.tooltip {
  pointer-events: none; /* 툴팁 자체는 클릭 불가 */
}

/* Resizable panels */
.resizable-panel {
  flex-shrink: 0;
  overflow: hidden;
  transition: none; /* 리사이즈 중에는 애니메이션 비활성화 */
}

.resizable-panel.resizing {
  transition: none;
  pointer-events: none; /* 리사이즈 중에는 클릭 방지 */
}

/* Resizer handle improvements */
[data-resizable-target="resizer"] {
  cursor: col-resize;
  user-select: none;
  flex-shrink: 0;
  touch-action: none; /* 터치에서도 잘 동작하도록 */
}

[data-resizable-target="resizer"]:hover {
  background-color: rgba(156, 163, 175, 0.2); /* gray-400 with opacity */
}

/* Dark mode resizer handle */
.dark [data-resizable-target="resizer"]:hover {
  background-color: rgba(75, 85, 99, 0.3); /* gray-600 with opacity */
}

/* Prevent text selection during resize - body에 직접 적용으로 우선순위 확보 */
body.user-select-none,
body.user-select-none * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* reCAPTCHA 배지 숨기기 - 더 구체적인 선택자로 우선순위 확보 */
body .grecaptcha-badge,
html body .grecaptcha-badge {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  bottom: -100px;
  right: -100px;
  width: 0;
  height: 0;
  z-index: -1000;
  pointer-events: none;
  display: none;
}

/* iframe도 숨기기 - 더 구체적인 선택자 사용 */
body iframe[src*="recaptcha"],
html body iframe[src*="recaptcha"] {
  display: none;
  visibility: hidden;
  position: fixed;
  bottom: -100px;
  right: -100px;
  width: 0;
  height: 0;
  z-index: -1000;
}

/* 가로 스크롤 방지 - root 레벨에만 적용 */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
}

/* 메인 컨테이너 overflow 제한 */
#root,
.app-container,
main {
  overflow-x: hidden;
}

/* 박스 사이징 설정 */
* {
  box-sizing: border-box;
}

/* James Hoffmann Quote Styles - Google Font 제거됨 */

/* Google Fonts CDN - Open Sans & Raleway */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;1,300&family=Raleway:ital,wght@0,400;0,500;1,400&display=swap");

/* New coffee machine background hero section */
.coffee-hero-bg {
  background-image: url("/assets/tina-witherspoon-J7S0v62ZqAM-modified-828a7f22.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: auto;
  padding: 2rem 0;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
}

.coffee-hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.coffee-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Mobile (~639px): bg 안 보이고 box가 섹션 전체 차지 */
@media (max-width: 639px) {
  .coffee-hero-bg {
    min-height: auto !important;
    padding: 1rem 0 !important;
    background: #f9fafb !important; /* body와 동일한 gray-50 색상 */
    background-image: none !important; /* 배경 이미지 강제 제거 */
    border-radius: 0 !important; /* 둥근 모서리 제거 */
  }

  /* 어두운 오버레이 제거 */
  .coffee-hero-bg::before {
    display: none !important;
  }

  .coffee-hero-content {
    padding: 0; /* 패딩 완전 제거 */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch; /* 전체 높이 차지 */
    background: transparent; /* backdrop 제거 */
  }

  .coffee-hero-content > div {
    width: 100%;
    margin: 0;
    padding: 1.5rem; /* 내부 컨텐츠 패딩만 유지 */
    display: flex;
    flex-direction: column;
    justify-content: center; /* 세로 중앙 정렬 */
  }
}

/* 다크모드 박스 배경색 - 모바일에서만 어두운 배경 */
@media (max-width: 639px) {
  .dark .coffee-hero-bg {
    background: #1e1e1e !important; /* body dark 색상과 동일 */
  }
}

.dark .coffee-hero-content .quote-box-top {
  background-color: rgba(226, 213, 199, 0.9) !important; /* 베이지색 90% */
}

.dark .coffee-hero-content .quote-box-bottom {
  background-color: rgba(243, 230, 218, 0.9) !important; /* 베이지색 90% */
}

/* 박스 안 텍스트 색상 */
.coffee-hero-content .quote-box-top p,
.coffee-hero-content .quote-box-top cite,
.coffee-hero-content .quote-box-top span,
.coffee-hero-content .quote-box-bottom p {
  color: #1f2937 !important; /* 라이트모드에서 짙은 회색 */
}

/* 다크모드 모바일에서만 밝은 색상 (데스크톱은 베이지 박스라서 어두운 글씨 유지) */
@media (max-width: 639px) {
  .dark .coffee-hero-bg .coffee-hero-content .quote-box-top p,
  .dark .coffee-hero-bg .coffee-hero-content .quote-box-top cite,
  .dark .coffee-hero-bg .coffee-hero-content .quote-box-top span,
  .dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom p,
  body.dark .coffee-hero-bg .coffee-hero-content .quote-box-top p,
  body.dark .coffee-hero-bg .coffee-hero-content .quote-box-top cite,
  body.dark .coffee-hero-bg .coffee-hero-content .quote-box-top span,
  body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom p,
  html.dark .coffee-hero-bg .coffee-hero-content .quote-box-top p,
  html.dark .coffee-hero-bg .coffee-hero-content .quote-box-top cite,
  html.dark .coffee-hero-bg .coffee-hero-content .quote-box-top span,
  html.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom p,
  html body.dark .coffee-hero-bg .coffee-hero-content .quote-box-top p,
  html body.dark .coffee-hero-bg .coffee-hero-content .quote-box-top cite,
  html body.dark .coffee-hero-bg .coffee-hero-content .quote-box-top span,
  html body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom p {
    color: #e5e7eb !important; /* 다크모드 모바일에서만 밝은 회색 */
  }
}

/* 투명 배경 버튼(테두리 버튼) 텍스트 색상 */
.coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover),
.coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover) *,
body .coffee-hero-bg .coffee-hero-content .quote-box-bottom a.border-gray-300:not(:hover),
body .coffee-hero-bg .coffee-hero-content .quote-box-bottom a.border-gray-300:not(:hover) * {
  color: #1f2937 !important; /* 라이트모드에서 짙은 회색 */
}

/* 다크모드 모바일에서만 버튼 밝은 텍스트 */
@media (max-width: 639px) {
  .dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover),
  .dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover) *,
  body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover),
  body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover) *,
  html.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover),
  html.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover) *,
  html body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover),
  html body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:not(:hover) *,
  body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a.border-gray-300:not(:hover),
  body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a.border-gray-300:not(:hover) *,
  html.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a.border-gray-300:not(:hover),
  html.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a.border-gray-300:not(:hover) *,
  html body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a.border-gray-300:not(:hover),
  html body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a.border-gray-300:not(:hover) * {
    color: #e5e7eb !important; /* 다크모드 모바일에서만 밝은 회색 */
  }
}

/* 호버 시 흰색 글자 */
.coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:hover,
.coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:hover *,
body .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:hover,
body .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:hover *,
body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:hover,
body.dark .coffee-hero-bg .coffee-hero-content .quote-box-bottom a[class*="border"]:hover * {
  color: #ffffff !important; /* 흰색 */
}

/* Small (640px~767px): 작은 크기 테두리 */
@media (min-width: 640px) and (max-width: 767px) {
  .coffee-hero-bg {
    padding: 1.5rem 0;
  }

  .coffee-hero-content {
    padding: 0 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 6%;
  }

  .coffee-hero-content > div {
    max-width: 420px; /* 원래대로 복구 */
    margin: 0;
    backdrop-filter: blur(10px) brightness(1.15);
    -webkit-backdrop-filter: blur(10px) brightness(1.15);
    background: rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1rem; /* 테두리만 더 줄임 2rem → 1rem */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  /* 다크모드에서 어두운 backdrop */
  .dark .coffee-hero-content > div {
    backdrop-filter: blur(10px) brightness(0.85);
    -webkit-backdrop-filter: blur(10px) brightness(0.85);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  }
}

/* Medium+ (768px+): 작은 크기 테두리, md부터 오른쪽 중심 */
@media (min-width: 768px) {
  .coffee-hero-bg {
    padding: 2rem 0;
  }

  .coffee-hero-content {
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .coffee-hero-content > div {
    max-width: 480px; /* 원래대로 복구 */
    margin: 0;
    backdrop-filter: blur(8px) brightness(1.1);
    -webkit-backdrop-filter: blur(8px) brightness(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem; /* 테두리만 더 줄임 2rem → 1rem */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  /* 다크모드에서 어두운 backdrop */
  .dark .coffee-hero-content > div {
    backdrop-filter: blur(8px) brightness(0.8);
    -webkit-backdrop-filter: blur(8px) brightness(0.8);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  }
}

/* Medium+ (768px+): 오른쪽 중심 배치 */
@media (min-width: 768px) {
  .coffee-hero-content {
    justify-content: flex-end;
    padding-right: 8%;
  }

  .coffee-hero-content > div {
    margin-right: 0;
  }
}

/* Open Sans 폰트 스타일링 */
.opensans-light {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  letter-spacing: -0.02em; /* -2% */
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
}

.raleway-italic {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0; /* cite용 letter-spacing */
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1;
}

.raleway-medium {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  font-kerning: normal;
}

/* Quote box styling - 순수 배경색 */
.quote-box-top {
  background-color: #e2d5c7;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.quote-box-bottom {
  background-color: #f3e6da;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile: 옅은 회색 배경 */
@media (max-width: 639px) {
  .quote-box-top {
    background-color: #f3f4f6; /* gray-100 */
  }

  .quote-box-bottom {
    background-color: #f9fafb; /* gray-50 */
  }

  /* 다크모드 모바일에서 예쁜 브라운 톤 배경 */
  .dark .coffee-hero-content .quote-box-top {
    background-color: #614d42 !important; /* 따뜻한 브라운 */
  }

  .dark .coffee-hero-content .quote-box-bottom {
    background-color: #5e564c !important; /* 차분한 다크 브라운 */
  }
}

/* Single quote box (fallback) */
.quote-box {
  background-color: #e2d5c7;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* 홈페이지 아이콘들만 얇은 stroke 적용 */
/* home-page-icon 클래스가 있는 아이콘들만 타겟팅 */

/* 더 강력한 선택자 사용 */
svg.home-page-icon.w-9,
svg.home-page-icon.w-9[stroke-width] {
  stroke-width: 1.5 !important; /* 36px → 1.5px stroke (24px 기준) */
}

svg.home-page-icon.w-9 path,
svg.home-page-icon.w-9 line,
svg.home-page-icon.w-9 circle,
svg.home-page-icon.w-9 rect,
svg.home-page-icon.w-9[stroke-width] path,
svg.home-page-icon.w-9[stroke-width] line,
svg.home-page-icon.w-9[stroke-width] circle,
svg.home-page-icon.w-9[stroke-width] rect {
  stroke-width: 1.5 !important; /* 36px → 1.5px stroke (24px 기준) */
}

svg.home-page-icon.w-5,
svg.home-page-icon.w-5[stroke-width] {
  stroke-width: 0.83 !important; /* 20px → 0.83px stroke */
}

svg.home-page-icon.w-5 path,
svg.home-page-icon.w-5 line,
svg.home-page-icon.w-5 circle,
svg.home-page-icon.w-5 rect,
svg.home-page-icon.w-5[stroke-width] path,
svg.home-page-icon.w-5[stroke-width] line,
svg.home-page-icon.w-5[stroke-width] circle,
svg.home-page-icon.w-5[stroke-width] rect {
  stroke-width: 0.83 !important; /* 20px → 0.83px stroke */
}

