/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: visible;
}

.hero-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -1;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(15, 37, 64, 0.82) 0%,
      rgba(26, 58, 92, 0.78) 50%,
      rgba(42, 74, 108, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  color: #d4b86a;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 48px;
  color: #d4b86a;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-question {
  font-size: 16px;
  margin-bottom: 24px;
  color: #d4b86a;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.hero-access {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  color: var(--white);
}

.hero-access span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid #d4b86a;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.hero-content>* {
  animation: fadeInUp 0.6s ease forwards;
}

.hero-badge {
  animation-delay: 0.1s;
}

.hero h1 {
  animation-delay: 0.2s;
}

.hero-sub {
  animation-delay: 0.3s;
}

.hero-question {
  animation-delay: 0.4s;
}

.category-cards {
  animation-delay: 0.5s;
}

.hero-access {
  animation-delay: 0.6s;
}

/* ===== PROBLEMS SECTION ===== */
.problems {
  position: relative;
  background: linear-gradient(to bottom,
      #faf7f0 0%,
      #f7f3ea 100%);
  z-index: 1;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.problem-category {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 2px solid #d4b86a;
  position: relative;
}

.problem-category::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px solid rgba(212, 184, 106, 0.4);
  border-radius: calc(var(--radius-md) - 4px);
  pointer-events: none;
}

.problem-category[data-cat="divorce"] {
  background: var(--cat-divorce-light);
}

.problem-category[data-cat="criminal"] {
  background: var(--cat-criminal-light);
}

.problem-category[data-cat="inheritance"] {
  background: var(--cat-inheritance-light);
}

.problem-category[data-cat="school"] {
  background: var(--cat-school-light);
}

.problem-category-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-200);
}

.problem-category h3 {
  font-size: 18px;
  font-weight: 700;
}

.problem-category h3 a {
  text-decoration: none;
  color: var(--gray-900);
  transition: var(--transition);
}

.problem-category h3 a:hover {
  color: var(--accent);
}

.problem-category[data-cat="divorce"] h3 a {
  color: var(--cat-divorce);
}

.problem-category[data-cat="criminal"] h3 a {
  color: var(--cat-criminal);
}

.problem-category[data-cat="inheritance"] h3 a {
  color: var(--cat-inheritance);
}

.problem-category[data-cat="school"] h3 a {
  color: var(--cat-school);
}

.problem-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.problem-list {
  list-style: none;
}

.problem-list li {
  margin-bottom: 12px;
}

.problem-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.problem-category[data-cat="divorce"] .problem-list a {
  border-left-color: var(--cat-divorce);
}

.problem-category[data-cat="criminal"] .problem-list a {
  border-left-color: var(--cat-criminal);
}

.problem-category[data-cat="inheritance"] .problem-list a {
  border-left-color: var(--cat-inheritance);
}

.problem-category[data-cat="school"] .problem-list a {
  border-left-color: var(--cat-school);
}

.problem-list a::before {
  content: '▸';
  color: var(--gray-400);
  transition: var(--transition);
}

.problem-category[data-cat="divorce"] .problem-list a::before {
  color: var(--cat-divorce);
}

.problem-category[data-cat="criminal"] .problem-list a::before {
  color: var(--cat-criminal);
}

.problem-category[data-cat="inheritance"] .problem-list a::before {
  color: var(--cat-inheritance);
}

.problem-category[data-cat="school"] .problem-list a::before {
  color: var(--cat-school);
}

.problem-list a:hover {
  transform: translateX(4px);
  text-decoration: none;
}

.problem-category[data-cat="divorce"] .problem-list a:hover {
  background: rgba(194, 91, 110, 0.1);
  color: var(--cat-divorce);
}

.problem-category[data-cat="criminal"] .problem-list a:hover {
  background: rgba(196, 154, 42, 0.1);
  color: var(--cat-criminal);
}

.problem-category[data-cat="inheritance"] .problem-list a:hover {
  background: rgba(139, 107, 74, 0.1);
  color: var(--cat-inheritance);
}

.problem-category[data-cat="school"] .problem-list a:hover {
  background: rgba(58, 138, 92, 0.1);
  color: var(--cat-school);
}

/* ===== RESOLVED GALLERY ===== */
.resolved-gallery {
  margin-top: 48px;
  overflow: hidden;
}

.resolved-gallery-title {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.resolved-gallery-track {
  display: flex;
  gap: 24px;
  animation: scrollGallery 24s linear infinite;
  width: max-content;
}

.resolved-gallery-track:hover {
  animation-play-state: paused;
}

.resolved-gallery-slide {
  flex-shrink: 0;
  width: 260px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.resolved-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-284px * 4));
  }
}

/* ===== CASES SECTION ===== */
.cases {
  position: relative;
  overflow: hidden;
}

.cases-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cases-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: casesFade 15s infinite;
}

.cases-bg img:nth-child(1) {
  animation-delay: 0s;
}

.cases-bg img:nth-child(2) {
  animation-delay: 5s;
}

.cases-bg img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes casesFade {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.cases-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(15, 37, 64, 0.50) 0%,
      rgba(26, 58, 92, 0.45) 50%,
      rgba(45, 90, 135, 0.40) 100%);
  z-index: 1;
}

.cases>.container {
  position: relative;
  z-index: 1;
}

.cases .section-header h2,
.cases .section-header p {
  color: var(--white);
}

.cases .section-header p {
  opacity: 0.9;
}

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

.cases .btn-more a {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.cases .btn-more a:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== COLUMNS SECTION ===== */
.columns {
  background: var(--primary);
}

.columns .section-header h2,
.columns .section-header p {
  color: var(--white);
}

.columns .section-header p {
  opacity: 0.9;
}

.columns-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.columns-tabs button {
  padding: 10px 24px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition);
}

.columns-tabs button.active,
.columns-tabs button:hover {
  background: var(--white);
  color: var(--primary);
}

.columns-list {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.column-item {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--gray-900);
  transition: var(--transition);
}

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

.column-item:hover {
  background: var(--gray-50);
  text-decoration: none;
}

.column-date {
  font-size: 13px;
  color: var(--gray-500);
  min-width: 100px;
}

.column-cat {
  margin-right: 20px;
}

.column-title {
  font-size: 15px;
  font-weight: 500;
  flex: 1;
}

.column-item:hover .column-title {
  color: var(--primary);
}

.columns .btn-more a {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

.columns .btn-more a:hover {
  background: var(--white);
  color: var(--primary);
}

/* ===== LAWYERS SECTION ===== */
.lawyers {
  background: var(--white);
}

.lawyers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.lawyers-category-map {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 32px;
}

.lawyers-category-map h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

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

.category-map-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.category-map-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.category-map-item[data-cat="divorce"] .category-map-dot {
  background: var(--cat-divorce);
}

.category-map-item[data-cat="criminal"] .category-map-dot {
  background: var(--cat-criminal);
}

.category-map-item[data-cat="inheritance"] .category-map-dot {
  background: var(--cat-inheritance);
}

.category-map-item[data-cat="school"] .category-map-dot {
  background: var(--cat-school);
}

.category-map-name {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.category-map-lawyers {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

/* ===== OFFICE SECTION ===== */
.office {
  position: relative;
  background: linear-gradient(135deg, #0a1f33 0%, #1a3a5c 40%, #3d6a8a 100%);
}

.office-content {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
}

.office-image {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 184, 106, 0.6);
  font-size: 14px;
  border: 1px dashed rgba(212, 184, 106, 0.4);
  overflow: hidden;
}

.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-info h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #d4b86a;
  margin-bottom: 24px;
}

.office-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.office-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(212, 184, 106, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 184, 106, 0.3);
}

.office-feature-icon {
  width: 40px;
  height: 40px;
  background: #d4b86a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.office-feature-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-dark);
}

.office-feature span {
  font-size: 14px;
  font-weight: 500;
  color: #d4b86a;
}

.office-contact {
  margin-top: 16px;
  margin-bottom: 16px;
}

.office-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.office-contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.office-contact-item a:hover {
  text-decoration: underline;
}

.office-contact-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.office-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4b86a;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 184, 106, 0.5);
  padding-bottom: 2px;
}

.office-link a:hover {
  border-bottom-color: #d4b86a;
  text-decoration: underline;
}

/* ===== ACCESS SECTION ===== */
.access {
  background: var(--primary-dark);
  color: var(--white);
}

.access .section-header h2 {
  color: var(--white);
}

.access .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.access-map {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px;
}

.access-map-visual {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 24px;
  font-family: monospace;
  font-size: 13px;
  line-height: 2;
  text-align: center;
}

.access-map-embed {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.access-map-embed iframe {
  display: block;
  width: 100%;
}

.access-stations {
  margin-top: 8px;
}

.access-station {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.access-station:last-child {
  border-bottom: none;
}

.station-line {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.station-line.jr {
  background: #f15a22;
}

.station-line.marunouchi {
  background: #e60012;
}

.station-line.namboku {
  background: #00ada9;
}

.access-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.access-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.8;
}

.access-address svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 4px;
}

.access-contact {
  margin-bottom: 20px;
}

.access-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
}

.access-contact-item a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.access-contact-item a:hover {
  text-decoration: underline;
}

.access-contact-item svg {
  fill: var(--accent);
  flex-shrink: 0;
}

.access-areas h5 {
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.access-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.access-areas-list span {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  padding: 64px 0;
}

.cta-content {
  text-align: center;
}

.cta h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--gray-900);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.cta-btn svg {
  width: 32px;
  height: 32px;
}

.cta-btn.tel svg {
  fill: var(--primary);
}

.cta-btn.line svg {
  fill: #06c755;
}

.cta-btn.mail svg {
  fill: var(--cat-divorce);
}

.cta-btn-label {
  font-size: 13px;
  color: var(--gray-500);
}

.cta-btn-value {
  font-size: 18px;
  font-weight: 700;
}

.cta-note {
  font-size: 14px;
  color: var(--primary-dark);
  opacity: 0.8;
}

/* ===== FIXED CTA (PC) ===== */
.fixed-cta-desktop {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.fixed-cta-desktop.visible {
  opacity: 1;
  pointer-events: auto;
}

.fixed-cta-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  padding: 20px;
  width: 180px;
  border: 1px solid var(--gray-200);
}

.fixed-cta-header {
  text-align: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.fixed-cta-header-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  margin: -20px -20px 16px -20px;
  padding: 16px 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border-bottom: none;
}

.fixed-cta-header-highlight .fixed-cta-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.fixed-cta-header-highlight .fixed-cta-number .number,
.fixed-cta-header-highlight .fixed-cta-number .unit {
  color: var(--white);
}

.fixed-cta-header-highlight .fixed-cta-number .number {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fixed-cta-label {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.fixed-cta-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.fixed-cta-number .number {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.fixed-cta-number .unit {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
}

.fixed-cta-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.fixed-cta-stat {
  text-align: center;
  padding: 8px 4px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.fixed-cta-stat .stat-label {
  display: block;
  font-size: 10px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.fixed-cta-stat .stat-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
}

.fixed-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.fixed-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.fixed-cta-btn:hover {
  text-decoration: none;
}

.fixed-cta-btn svg {
  width: 16px;
  height: 16px;
}

.fixed-cta-btn.tel {
  background: var(--primary);
  color: var(--white);
}

.fixed-cta-btn.tel svg {
  fill: var(--white);
}

.fixed-cta-btn.tel:hover {
  background: var(--primary-light);
}

.fixed-cta-btn.line {
  background: #06c755;
  color: var(--white);
}

.fixed-cta-btn.line svg {
  fill: var(--white);
}

.fixed-cta-btn.line:hover {
  background: #05b04c;
}

.fixed-cta-note {
  text-align: center;
  font-size: 11px;
  color: var(--gray-500);
}

/* ===== FIXED CTA (Mobile) ===== */
.fixed-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fixed-cta-mobile.visible {
  opacity: 1;
  transform: translateY(0);
}

.fixed-cta-mobile-inner {
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 12px;
}

.fixed-cta-mobile-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  padding-right: 12px;
  border-right: 1px solid var(--gray-200);
}

.fixed-cta-mobile-info-highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  margin: -12px 0 -12px -16px;
  padding: 12px 16px;
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.fixed-cta-mobile-info-highlight .fixed-cta-mobile-label {
  color: rgba(255, 255, 255, 0.9);
}

.fixed-cta-mobile-info-highlight .fixed-cta-mobile-number {
  color: var(--white);
}

.fixed-cta-mobile-label {
  font-size: 10px;
  color: var(--gray-500);
  white-space: nowrap;
}

.fixed-cta-mobile-number {
  font-size: 14px;
  color: var(--primary);
}

.fixed-cta-mobile-number strong {
  font-size: 24px;
  font-weight: 700;
}

.fixed-cta-mobile-buttons {
  display: flex;
  flex: 1;
  gap: 8px;
}

.fixed-cta-mobile-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  transition: var(--transition);
}

.fixed-cta-mobile-btn:hover {
  text-decoration: none;
}

.fixed-cta-mobile-btn svg {
  width: 20px;
  height: 20px;
}

.fixed-cta-mobile-btn.tel {
  background: var(--primary);
  color: var(--white);
}

.fixed-cta-mobile-btn.tel svg {
  fill: var(--white);
}

.fixed-cta-mobile-btn.line {
  background: #06c755;
  color: var(--white);
}

.fixed-cta-mobile-btn.line svg {
  fill: var(--white);
}

.fixed-cta-mobile-btn.mail {
  background: var(--accent);
  color: var(--white);
}

.fixed-cta-mobile-btn.mail svg {
  fill: var(--white);
}

/* ===== ARTICLE LAYOUT ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 48px;
  padding: 40px 0 80px;
}

.article-main {
  max-width: var(--content-width);
}

/* Article Header */
.article-header {
  margin-bottom: 32px;
}

.article-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.article-meta-item svg {
  width: 14px;
  height: 14px;
  fill: var(--gray-400);
}

/* Eyecatch */
.article-eyecatch {
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.article-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.eyecatch-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Lead */
.article-lead {
  padding: 24px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-700);
}

/* ===== AUTHOR BOX ===== */
.author-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 48px 0;
}

.author-box-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.author-box-header svg {
  flex-shrink: 0;
}

.author-box-content {
  display: flex;
  gap: 24px;
}

.author-box-photo {
  flex-shrink: 0;
}

.author-box-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.author-box-info {
  flex: 1;
}

.author-box-title {
  display: inline-block;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.author-box-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.author-box-career {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 12px;
}

.author-box-link {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.author-box-link:hover {
  text-decoration: underline;
}

/* ===== RELATED POSTS ===== */
.related-posts {
  margin: 48px 0;
}

.related-posts-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.related-post-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  color: var(--gray-900);
  transition: var(--transition);
}

.related-post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}

.related-post-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.related-post-info {
  padding: 12px 16px;
}

.related-post-cat {
  display: inline-block;
  font-size: 11px;
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.related-post-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== ARTICLE TAGS ===== */
.article-tags {
  margin-top: 32px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition);
}

.tag-list a:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  text-decoration: none;
}

/* ===== SIDEBAR ===== */
.article-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  align-self: start;
}

/* B-type sidebar section */
.sidebar-section {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

/* Sidebar Profile (B-type) */
.sidebar-profile {
  text-align: center;
}

.sidebar-profile-photo {
  width: 80px;
  height: 80px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
}

.sidebar-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sidebar-profile-title {
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.sidebar-profile-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-profile-text {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sidebar-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}

.sidebar-profile-link:hover {
  text-decoration: underline;
}

.sidebar-author {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.sidebar-author-photo {
  margin-bottom: 12px;
}

.sidebar-author-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.sidebar-author-info {
  margin-bottom: 12px;
}

.sidebar-author-label {
  display: block;
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.sidebar-author-title {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.sidebar-author-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--primary);
}

.sidebar-author-link {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.sidebar-author-link:hover {
  text-decoration: underline;
}

.sidebar-cta {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.sidebar-cta-header {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}

.sidebar-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-cta-btn:hover {
  text-decoration: none;
  opacity: 0.9;
}

.sidebar-cta-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sidebar-cta-btn.tel {
  background: var(--primary);
  color: var(--white);
}

.sidebar-cta-btn.line {
  background: #06c755;
  color: var(--white);
}

.sidebar-cta-note {
  font-size: 12px;
  color: var(--gray-500);
}

/* --- Sidebar Related Posts --- */
.sidebar-related {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-related-item {
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-related-item:last-child {
  border-bottom: none;
}

.sidebar-related-item a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--gray-800);
  transition: var(--transition);
}

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

.sidebar-related-cat {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 4px;
}

.sidebar-related-title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== ARCHIVE / CATEGORY PAGES ===== */
.archive-header {
  padding: 32px;
  margin-bottom: 40px;
  border-radius: var(--radius-md);
}

.archive-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.archive-cat-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.archive-description {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

.archive-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.archive-tab {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.archive-tab.active,
.archive-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  text-decoration: none;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.no-posts {
  text-align: center;
  padding: 64px 0;
  font-size: 16px;
  color: var(--gray-500);
}

/* Pagination */
.pagination {
  margin-bottom: 64px;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--gray-700);
  text-decoration: none;
  transition: var(--transition);
}

.pagination .page-numbers:hover {
  background: var(--gray-50);
  text-decoration: none;
}

.pagination .page-numbers.current {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.pagination .prev,
.pagination .next {
  width: auto;
  padding: 0 16px;
}

/* ===== CARD: COLUMN ===== */
.card-column {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-column-link {
  display: block;
  text-decoration: none;
  color: var(--gray-900);
}

.card-column-link:hover {
  text-decoration: none;
}

.card-column-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.card-column-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.card-column-body {
  padding: 16px 20px;
}

.card-column-cat {
  display: inline-block;
  font-size: 11px;
  color: var(--white);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.card-column-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-column-excerpt {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-column-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-400);
}

/* ===== CARD: CASE ===== */
.card-case {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-case-link {
  display: block;
  text-decoration: none;
  color: var(--gray-900);
  padding: 20px;
}

.card-case-link:hover {
  text-decoration: none;
}

.card-case-header {
  border-left: 3px solid var(--primary);
  padding-left: 12px;
  margin-bottom: 16px;
}

.card-case-cat {
  display: inline-block;
  font-size: 11px;
  color: var(--white);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.card-case-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.card-case-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.card-case-problem,
.card-case-result {
  margin-bottom: 12px;
}

.card-case-problem p,
.card-case-result p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CARD: LAWYER ===== */
.card-lawyer {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-lawyer-link {
  display: flex;
  text-decoration: none;
  color: var(--gray-900);
}

.card-lawyer-link:hover {
  text-decoration: none;
}

.card-lawyer-photo img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
}

.card-lawyer-body {
  flex: 1;
  padding: 24px;
}

.card-lawyer-title {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.card-lawyer-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.card-lawyer-message {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-lawyer-stat {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.card-lawyer-stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.card-lawyer-more {
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
}

.lawyer-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

/* ===== CASE DETAIL ===== */
.case-overview {
  background: var(--gray-50);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin-bottom: 32px;
}

.case-overview-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 16px;
}

.case-overview-list {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 16px;
  font-size: 14px;
}

.case-overview-list dt {
  font-weight: 700;
  color: var(--gray-600);
}

.case-overview-list dd {
  color: var(--gray-800);
}

.case-section {
  margin-bottom: 32px;
}

.case-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.case-section-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-700);
}

.case-lawyer-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 32px 0;
}

.case-lawyer-box h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-800);
}

.case-lawyer-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.case-lawyer-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.case-lawyer-detail {
  flex: 1;
}

.case-lawyer-title {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 2px;
}

.case-lawyer-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.case-lawyer-link {
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.case-lawyer-link:hover {
  text-decoration: underline;
}

/* ===== LAWYER PROFILE ===== */
.lawyer-profile {
  margin-bottom: 48px;
}

.lawyer-profile-header {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  padding: 32px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
}

.lawyer-profile-photo img {
  width: 200px;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-md);
}

.lawyer-profile-info {
  flex: 1;
}

.lawyer-profile-title {
  display: block;
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.lawyer-profile-name {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.lawyer-profile-license {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.lawyer-profile-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.lawyer-profile-stat-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.lawyer-profile-stat-label {
  font-size: 14px;
  color: var(--gray-600);
}

.lawyer-profile-message,
.lawyer-profile-career {
  margin-bottom: 32px;
}

.lawyer-profile-message h2,
.lawyer-profile-career h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.lawyer-profile-message p,
.lawyer-profile-career p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-700);
}

.lawyer-cases,
.lawyer-articles {
  margin-top: 48px;
}

.lawyer-cases-title,
.lawyer-articles-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

/* ===== 404 PAGE ===== */
.error-404 {
  text-align: center;
  padding: 80px 0;
}

.error-404-icon {
  margin-bottom: 24px;
}

.error-404-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.error-404-text {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.error-404-actions {
  margin-bottom: 48px;
}

.error-404-actions .btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.error-404-actions .btn-more:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

.error-404-categories h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.error-404-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.error-404-cat-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
}

.error-404-cat-link:hover {
  background: var(--gray-50);
  text-decoration: none;
}

/* ===== SEARCH FORM ===== */
.search-form {
  max-width: 480px;
  margin: 24px auto 0;
}

.search-label {
  display: none;
}

.search-input-wrap {
  display: flex;
  gap: 0;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.search-field {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 15px;
  outline: none;
  background: var(--white);
}

.search-submit {
  padding: 12px 16px;
  background: var(--primary);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.search-submit:hover {
  background: var(--primary-light);
}

.search-submit svg {
  fill: var(--white);
}

.no-results {
  text-align: center;
  padding: 48px 0;
}