:root {
  color-scheme: light;
  --ink: #101828;
  --muted: #667085;
  --soft: #98a2b3;
  --line: #e7eaee;
  --paper: #f5f7fb;
  --panel: rgba(255, 255, 255, 0.92);
  --teal: #06a77d;
  --teal-dark: #04745f;
  --lime: #d9f99d;
  --yellow: #f7c948;
  --blue: #2563eb;
  --coral: #f04438;
  --shadow: 0 24px 80px rgba(16, 24, 40, 0.12);
  --shadow-soft: 0 12px 36px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(6, 167, 125, 0.14), transparent 34rem),
    linear-gradient(180deg, #fbfcff 0%, var(--paper) 48%, #eef3f7 100%);
}

body.intro-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.intro-screen {
  --rx: 0deg;
  --ry: 0deg;
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  overflow: hidden;
  color: #f8fafc;
  background:
    radial-gradient(circle at 75% 18%, rgba(217, 249, 157, 0.24), transparent 22rem),
    radial-gradient(circle at 22% 82%, rgba(6, 167, 125, 0.3), transparent 28rem),
    linear-gradient(135deg, #07111f 0%, #0f172a 56%, #10251f 100%);
  opacity: 1;
  transition: opacity 520ms ease, visibility 520ms ease, transform 520ms ease;
}

.intro-screen.absorbing {
  background: #fff;
  transition: background 720ms ease;
}

.intro-screen.hidden {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.025);
}

.intro-bg-grid {
  position: absolute;
  inset: -2px;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 62% 48%, black 0%, transparent 72%);
  transition: opacity 560ms ease;
}

.intro-screen.absorbing .intro-bg-grid {
  opacity: 0;
}

.intro-stage {
  position: relative;
  z-index: 2;
  width: min(92vw, 980px);
  height: min(92vh, 820px);
  perspective: 1200px;
}

.scene3d {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 260ms ease-out;
  animation: introFloat 9s ease-in-out infinite;
}

.intro-screen.absorbing .scene3d {
  animation: none;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 640ms ease;
}

.intro-links {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(86vmin, 820px);
  height: min(86vmin, 820px);
  overflow: visible;
  transform: translate(-50%, -50%) translateZ(-80px);
  transform-style: preserve-3d;
}

.intro-links line {
  stroke: rgba(217, 249, 157, 0.35);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 16;
  animation: linkPulse 3s linear infinite;
}

.intro-screen.absorbing .intro-links {
  animation: linksAbsorb 1.45s cubic-bezier(0.7, 0, 0.2, 1) forwards;
}

.intro-logo {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #0f172a;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 252, 231, 0.9)),
    var(--lime);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32), 0 0 0 18px rgba(217, 249, 157, 0.06);
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) translateZ(170px);
  transition: color 540ms ease, box-shadow 540ms ease, background 540ms ease;
}

.intro-logo::before,
.intro-logo::after {
  content: none;
  position: absolute;
  inset: -28px;
  border: 1px solid rgba(217, 249, 157, 0.26);
  border-radius: 28px;
  transform: rotate(45deg) translateZ(-30px);
  animation: logoHalo 4.4s linear infinite;
}

.intro-logo::after {
  inset: -52px;
  border-color: rgba(6, 167, 125, 0.25);
  animation-duration: 6s;
  animation-direction: reverse;
}

.logo-roof {
  width: 56px;
  height: 56px;
  margin-bottom: -12px;
  border-radius: 12px 4px 12px 4px;
  background: var(--lime);
  transform: rotate(45deg);
  box-shadow: 0 12px 30px rgba(6, 167, 125, 0.18);
}

.intro-logo strong {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  line-height: 1;
}

.intro-logo small {
  position: relative;
  z-index: 1;
  color: var(--teal-dark);
  font-weight: 900;
}

.intro-screen.absorbing .intro-logo {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #12b981);
  box-shadow: 0 14px 30px rgba(6, 167, 125, 0.28);
  animation: logoDock 2.05s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.intro-screen.absorbing .intro-logo small,
.intro-screen.absorbing .logo-roof {
  color: #fff;
  background: rgba(255, 255, 255, 0.94);
}

.service-node {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 150px;
  height: 150px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.28) 28%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(145deg, rgba(217, 249, 157, 0.2), rgba(6, 167, 125, 0.16));
  box-shadow:
    inset 18px 20px 34px rgba(255, 255, 255, 0.28),
    inset -18px -22px 38px rgba(7, 17, 31, 0.25),
    0 30px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) translateZ(135px);
  transform-style: preserve-3d;
  transition: transform 260ms ease-out;
  animation: bubbleDrift 7.8s ease-in-out infinite;
}

.service-node strong {
  position: absolute;
  left: 50%;
  bottom: -18px;
  min-width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.68);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-shadow:
    0 1px 0 #0f172a,
    0 2px 0 rgba(6, 167, 125, 0.45),
    0 7px 14px rgba(0, 0, 0, 0.46);
  transform: translateX(-50%) translateZ(42px) rotateX(8deg);
  transform-style: preserve-3d;
}

.bubble-figure {
  position: relative;
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 -16px 26px rgba(16, 24, 40, 0.14);
  transform: translateZ(26px);
}

.bubble-figure::after {
  content: "";
  position: absolute;
  inset: 8px 12px auto;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.bubble-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.28) translateY(6px);
}

.node-top,
.node-bottom {
  animation-delay: -0.8s;
}

.node-right,
.node-left {
  animation-delay: -1.8s;
}

.intro-screen.absorbing .service-node {
  animation: serviceAbsorb 1.55s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

.intro-screen.absorbing .service-node:nth-of-type(3n) {
  animation-delay: 140ms;
}

.intro-screen.absorbing .service-node:nth-of-type(4n) {
  animation-delay: 240ms;
}

@keyframes introFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes bubbleDrift {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -14px;
  }
}

@keyframes linkPulse {
  to {
    stroke-dashoffset: -52;
  }
}

@keyframes logoHalo {
  to {
    rotate: 360deg;
  }
}

@keyframes linksAbsorb {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) translateZ(-200px) scale(0.08);
  }
}

@keyframes serviceAbsorb {
  70% {
    opacity: 0.88;
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) translateZ(-260px) scale(0.08);
    filter: blur(5px);
  }
}

@keyframes logoDock {
  0% {
    border-radius: 18px;
    transform: translate(-50%, -50%) translateZ(170px) scale(1);
  }
  58% {
    border-radius: 18px;
    transform: translate(-50%, -50%) translateZ(260px) scale(1.12);
  }
  100% {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    transform: translate(calc(-50vw + 65px), calc(-50vh + 35px)) translateZ(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene3d,
  .intro-logo::before,
  .intro-logo::after,
  .intro-links line {
    animation: none;
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px clamp(16px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(231, 234, 238, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #12b981);
  box-shadow: 0 14px 30px rgba(6, 167, 125, 0.28);
  font-weight: 900;
}

.brand-mark.logo-image {
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.role-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
}

.tab,
.support-link,
.auth-buttons button,
.secondary,
.ghost,
.icon-btn {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.tab {
  min-width: 116px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.tab.active {
  color: #fff;
  border-color: #111827;
  background: #111827;
}

.support-link {
  justify-self: end;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 92px) 0 34px;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions,
.card-actions,
.auth-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-app {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #dfe9e6;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #111827;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
}

.search-card {
  position: relative;
  display: grid;
  gap: 12px;
  margin: -94px 24px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.primary,
.secondary,
.ghost,
.auth-buttons button,
.chat-form button,
.package-row button,
.approve,
.reject,
.banner-slot button {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 850;
}

.primary,
.chat-form button,
.approve {
  color: #fff;
  background: #111827;
}

.primary:hover,
.tab.active:hover {
  background: #0b1220;
}

.secondary {
  background: #fff;
}

.ghost {
  background: rgba(255, 255, 255, 0.6);
}

.small {
  min-height: 36px;
  padding: 8px 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(1280px, calc(100% - 36px));
  margin: 24px auto 54px;
}

.trust-strip article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(231, 234, 238, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.trust-strip article > span {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(6, 167, 125, 0.12);
  font-weight: 900;
}

.trust-strip strong {
  font-size: 1.05rem;
}

.trust-strip p,
.stats-row,
.panel-title span,
.support-panel p,
.service-body p {
  color: var(--muted);
}

.trust-strip p {
  margin: 0;
  line-height: 1.6;
}

.portal {
  display: none;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto 74px;
}

.portal.active {
  display: block;
}

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

.section-head h2,
.panel-title h3,
.application-form h3,
.support-panel h3,
.banner-manager h3 {
  margin: 0;
}

.section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.app-shell {
  border: 1px solid rgba(231, 234, 238, 0.88);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.customer-layout {
  display: grid;
  grid-template-columns: 255px minmax(0, 1fr) 320px;
  gap: 12px;
  align-items: start;
  padding: 12px;
}

.filters,
.chat-panel,
.application-form,
.dashboard-panel,
.credit-panel,
.support-panel,
.review-table,
.banner-manager {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-title button {
  margin: 0;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: #475467;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus {
  border-color: rgba(6, 167, 125, 0.7);
  box-shadow: 0 0 0 4px rgba(6, 167, 125, 0.1);
}

.filter-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}

.filter-checks input {
  width: auto;
  min-height: auto;
}

.marketplace {
  display: grid;
  gap: 12px;
}

.banner-slot,
.banner-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 108px;
  padding: 18px;
  border-radius: 20px;
  color: #111827;
  background:
    linear-gradient(135deg, rgba(217, 249, 157, 0.96), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, var(--teal), var(--blue));
}

.banner-slot span {
  display: block;
  color: #475467;
  font-weight: 850;
}

.banner-slot strong {
  display: block;
  font-size: 1.35rem;
}

.banner-slot button {
  border-color: rgba(17, 24, 39, 0.12);
  background: #fff;
}

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.06);
}

.service-photo {
  height: 175px;
  background-size: cover;
  background-position: center;
}

.kitchen {
  background-image: linear-gradient(180deg, transparent, rgba(16, 24, 40, 0.2)), url("assets/home-services-hero.png");
}

.repair {
  background:
    linear-gradient(135deg, rgba(6, 167, 125, 0.35), rgba(37, 99, 235, 0.5)),
    url("assets/home-services-hero.png");
}

.service-body {
  padding: 16px;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-top h3 {
  margin: 0;
}

.verified,
.pending,
.security-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.verified {
  color: var(--teal-dark);
  background: rgba(6, 167, 125, 0.12);
}

.pending {
  color: #92400e;
  background: #fef3c7;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
  font-size: 0.88rem;
}

.stats-row span {
  padding: 6px 8px;
  border-radius: 999px;
  background: #f2f4f7;
}

.icon-btn {
  min-width: 44px;
  border-radius: 12px;
  font-weight: 800;
}

.chat-window {
  display: grid;
  gap: 10px;
  min-height: 330px;
  max-height: 330px;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f6f8fb;
}

.system-msg,
.bubble {
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  line-height: 1.45;
}

.system-msg {
  color: var(--muted);
  background: #fff;
}

.bubble.customer {
  margin-left: 28px;
  color: #fff;
  background: #111827;
}

.bubble.contractor {
  margin-right: 28px;
  background: #fff;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-top: 10px;
}

.seller-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(0, 1.35fr);
  gap: 12px;
  padding: 12px;
}

.application-form {
  grid-row: span 3;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.metric-grid strong {
  font-size: 1.65rem;
  letter-spacing: 0;
}

.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0;
}

.package-row button {
  border-color: var(--line);
  background: #fff;
}

.package-row .selected,
.icon-btn.selected {
  border-color: rgba(6, 167, 125, 0.6);
  box-shadow: 0 0 0 4px rgba(6, 167, 125, 0.1);
}

.admin-layout {
  display: grid;
  grid-template-columns: 235px 1fr;
  gap: 12px;
  padding: 12px;
}

.admin-menu {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.admin-menu button {
  padding: 12px;
  border: 0;
  border-radius: 12px;
  text-align: left;
  background: transparent;
  font-weight: 850;
}

.admin-menu button.active {
  color: #fff;
  background: #111827;
}

.admin-main {
  display: grid;
  gap: 12px;
}

.security-pill {
  color: #111827;
  background: var(--lime);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

th,
td {
  padding: 14px 10px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.approve,
.reject {
  min-height: 34px;
  margin: 0 6px 6px 0;
  padding: 7px 10px;
  border-radius: 10px;
}

.reject {
  color: #fff;
  background: var(--coral);
}

@media (max-width: 1120px) {
  .topbar,
  .intro-screen,
  .hero,
  .customer-layout,
  .seller-grid,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .intro-screen {
    align-content: center;
  }

  .intro-stage {
    min-height: 420px;
  }

  .support-link {
    justify-self: stretch;
    text-align: center;
  }

  .role-tabs {
    justify-content: center;
    overflow: auto;
  }
}

@media (max-width: 760px) {
  .intro-screen {
    padding: 24px;
  }

  .intro-copy h1 {
    font-size: clamp(2.6rem, 17vw, 4.4rem);
  }

  .intro-stage {
    min-height: 330px;
  }

  .service-cube {
    width: 132px;
    height: 132px;
  }

  .face-front {
    transform: translateZ(66px);
  }

  .face-back {
    transform: rotateY(180deg) translateZ(66px);
  }

  .face-right {
    transform: rotateY(90deg) translateZ(66px);
  }

  .face-left {
    transform: rotateY(-90deg) translateZ(66px);
  }

  .face-top {
    transform: rotateX(90deg) translateZ(66px);
  }

  .face-bottom {
    transform: rotateX(-90deg) translateZ(66px);
  }

  .cube-face strong {
    font-size: 1.05rem;
  }

  .floating-card {
    min-width: 138px;
    padding: 10px;
  }

  .mini-house {
    right: 2%;
    bottom: 7%;
    width: 116px;
    height: 104px;
  }

  .roof {
    width: 88px;
    height: 88px;
    margin-bottom: -44px;
  }

  .house-body {
    height: 78px;
    padding: 18px;
  }

  .topbar {
    padding: 12px;
  }

  .tab {
    min-width: 104px;
    padding: 9px 10px;
    font-size: 0.88rem;
  }

  .hero {
    width: calc(100% - 24px);
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 15vw, 4rem);
  }

  .hero-image,
  .hero-image img {
    min-height: 330px;
  }

  .search-card {
    margin: -70px 12px 0;
  }

  .search-row,
  .trust-strip,
  .service-grid,
  .metric-grid,
  .package-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

  .portal,
  .trust-strip {
    width: calc(100% - 24px);
  }

  .banner-slot,
  .banner-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Precise welcome layout override */
.intro-screen {
  grid-template-rows: 112px 1fr;
  padding: 18px;
}

.intro-content {
  height: 112px;
}

.intro-showcase {
  width: min(920px, 94vw);
  min-height: calc(100vh - 148px);
}

.service-bubble {
  opacity: 0;
  transform: translateX(14%) scale(0.96);
  filter: blur(5px);
  transition:
    opacity 420ms ease,
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.service-bubble.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.service-bubble.exiting {
  opacity: 0;
  transform: translateX(-8%) scale(0.98);
  filter: blur(10px);
}

.service-bubble strong {
  top: 34%;
  left: 50%;
  width: max-content;
  max-width: 92vw;
  font-size: clamp(5rem, 9.5vw, 8.7rem);
  line-height: 0.82;
  transform: translate(-50%, -50%) translateZ(-80px) rotateX(7deg);
}

.service-bubble img {
  position: absolute;
  left: 50%;
  top: 31%;
  width: min(36vh, 300px);
  max-width: 34vw;
  transform: translate(-50%, 0) translateZ(80px);
}

@media (min-width: 761px) and (max-width: 1180px) {
  .intro-screen {
    grid-template-rows: 120px 1fr;
  }

  .intro-showcase {
    width: min(760px, 92vw);
    min-height: calc(100vh - 160px);
  }

  .service-bubble strong {
    top: 35%;
    font-size: clamp(4.9rem, 12vw, 8rem);
  }

  .service-bubble img {
    top: 32%;
    width: min(35vh, 285px);
    max-width: 40vw;
  }
}

@media (max-width: 760px) {
  .intro-screen {
    grid-template-rows: 96px 1fr;
    padding: 16px 14px 18px;
  }

  .intro-content {
    height: 96px;
  }

  .intro-content .intro-logo {
    width: 82px;
    height: 54px;
  }

  .intro-showcase {
    width: 100%;
    min-height: calc(100vh - 118px);
    overflow: hidden;
  }

  .service-bubble {
    display: block;
  }

  .service-bubble img {
    top: 24%;
    width: min(41vh, 285px);
    max-width: 78vw;
    transform: translate(-50%, 0) translateZ(80px);
  }

  .service-bubble strong {
    top: auto;
    bottom: clamp(34px, 8vh, 78px);
    left: 50%;
    width: max-content;
    max-width: 94vw;
    font-size: clamp(2.7rem, 15vw, 4.25rem);
    line-height: 0.82;
    transform: translateX(-50%) translateZ(80px) rotateX(7deg);
  }

  .service-bubble.hvac strong,
  .service-bubble.cleaning strong,
  .service-bubble.electrician strong,
  .service-bubble.locksmith strong,
  .service-bubble.tile strong {
    font-size: clamp(2.35rem, 13vw, 3.85rem);
  }
}

/* Service-swipe welcome concept */
.intro-screen {
  --rx: 0deg;
  --ry: 0deg;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  place-items: center;
  gap: clamp(18px, 4vh, 42px);
  padding: clamp(22px, 5vw, 56px);
  background:
    radial-gradient(circle at 50% 20%, rgba(217, 249, 157, 0.18), transparent 26rem),
    linear-gradient(135deg, #07111f 0%, #0c1726 52%, #09241f 100%);
  transition: background 1.2s ease, opacity 700ms ease, visibility 700ms ease, transform 700ms ease;
}

.intro-screen.absorbing {
  background: #fff;
}

.intro-content {
  position: relative;
  z-index: 5;
  display: grid;
  justify-items: center;
  max-width: 850px;
  text-align: center;
  transition: opacity 900ms ease, transform 900ms ease;
}

.intro-screen.absorbing .intro-content {
  opacity: 0;
  transform: translateY(-28px) scale(0.96);
}

.intro-screen.absorbing .intro-content .intro-logo {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  animation: none;
  transform: none;
}

.intro-content .intro-logo {
  position: relative;
  top: auto;
  left: auto;
  width: 118px;
  height: 88px;
  margin-bottom: 18px;
  border-radius: 18px;
  transform: none;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.intro-content .intro-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.intro-content .eyebrow {
  color: var(--lime);
}

.intro-content h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.65rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.intro-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(248, 250, 252, 0.72);
  font-size: 1.04rem;
  line-height: 1.75;
}

.intro-showcase {
  position: relative;
  z-index: 4;
  width: min(1180px, 96vw);
  min-height: clamp(250px, 38vh, 410px);
  overflow: hidden;
  perspective: 1200px;
  transform: translateY(0) scale(1);
  transform-origin: top center;
  transition: transform 1.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 1.1s ease, filter 1.1s ease;
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.intro-screen.absorbing .intro-showcase {
  opacity: 0.92;
  filter: saturate(0.9);
  transform: translateY(calc(-50vh + 118px)) scale(0.38);
}

.service-track {
  display: flex;
  width: max-content;
  gap: clamp(18px, 3vw, 34px);
  padding: 34px 26px 48px;
  animation: serviceSwipe 28s linear infinite;
  transform-style: preserve-3d;
}

.intro-screen.absorbing .service-track {
  animation-duration: 40s;
}

.service-bubble,
.dock-bubble {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  justify-items: center;
  align-content: end;
  overflow: visible;
  color: #fff;
  transform-style: preserve-3d;
}

.service-bubble {
  width: clamp(188px, 20vw, 258px);
  height: clamp(220px, 27vw, 320px);
  padding: 0 18px 18px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 32% 16%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.36) 30%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(145deg, rgba(217, 249, 157, 0.2), rgba(6, 167, 125, 0.16));
  box-shadow:
    inset 16px 18px 34px rgba(255, 255, 255, 0.22),
    inset -18px -26px 42px rgba(7, 17, 31, 0.35),
    0 30px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  animation: cardFloatSlow 7.5s ease-in-out infinite;
}

.service-bubble:nth-child(2n) {
  animation-delay: -1.8s;
}

.service-bubble:nth-child(3n) {
  animation-delay: -3.2s;
}

.service-bubble img {
  position: absolute;
  left: 50%;
  bottom: 52px;
  width: 118%;
  max-width: none;
  transform: translateX(-50%) translateZ(55px);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.24));
}

.service-bubble strong,
.dock-bubble strong {
  position: relative;
  z-index: 2;
  padding: 8px 14px;
  border-radius: 999px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.72);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  letter-spacing: 0;
  text-shadow:
    0 1px 0 #0f172a,
    0 2px 0 rgba(6, 167, 125, 0.5),
    0 8px 14px rgba(0, 0, 0, 0.48);
  transform: translateZ(72px) rotateX(8deg);
}

.intro-screen.absorbing .service-bubble {
  animation-name: dockFloatSlow;
}

.main-service-dock {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  width: min(1280px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(231, 234, 238, 0.88);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.dock-head {
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding-left: 8px;
}

.dock-head span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dock-head strong {
  font-size: 1rem;
}

.dock-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 4px 10px;
  scroll-snap-type: x proximity;
}

.dock-track::-webkit-scrollbar {
  height: 6px;
}

.dock-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #d0d5dd;
}

.dock-bubble {
  width: 104px;
  height: 104px;
  padding: 6px;
  border-radius: 22px;
  scroll-snap-align: start;
  background:
    radial-gradient(circle at 32% 14%, #fff, rgba(255, 255, 255, 0.45) 35%, rgba(255, 255, 255, 0.08) 74%),
    linear-gradient(145deg, rgba(217, 249, 157, 0.44), rgba(6, 167, 125, 0.16));
  box-shadow:
    inset 10px 12px 20px rgba(255, 255, 255, 0.46),
    inset -10px -14px 24px rgba(16, 24, 40, 0.12),
    0 12px 28px rgba(16, 24, 40, 0.12);
}

.dock-bubble img {
  position: absolute;
  top: 6px;
  width: 92px;
  height: 78px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
}

.dock-bubble strong {
  margin-top: auto;
  padding: 4px 8px;
  font-size: 0.72rem;
  transform: translateZ(24px);
}

@keyframes serviceSwipe {
  to {
    transform: translateX(-50%);
  }
}

@keyframes cardFloatSlow {
  0%,
  100% {
    transform: translateY(0) rotateY(-4deg);
  }
  50% {
    transform: translateY(-18px) rotateY(5deg);
  }
}

@keyframes dockFloatSlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(0.98);
  }
}

@media (max-width: 860px) {
  .intro-content h1 {
    font-size: clamp(2.4rem, 13vw, 4.8rem);
  }

  .intro-showcase {
    width: 100vw;
    min-height: 330px;
  }

  .main-service-dock {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }
}

/* Clean role-by-role welcome carousel */
.intro-screen {
  grid-template-rows: auto 1fr;
  gap: 0;
  color: var(--ink);
  background: #fff;
}

.intro-screen.absorbing {
  background: #fff;
}

.intro-bg-grid {
  opacity: 0;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 50% 48%, black 0%, transparent 78%);
}

.intro-content {
  align-self: start;
  padding-top: 4px;
  color: var(--ink);
}

.intro-content .intro-logo {
  margin-bottom: 10px;
}

.intro-content .eyebrow {
  margin-bottom: 6px;
  color: var(--teal-dark);
}

.intro-content p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.intro-showcase {
  align-self: center;
  width: min(980px, 96vw);
  min-height: min(70vh, 650px);
  overflow: visible;
  perspective: 1400px;
  mask-image: none;
}

.intro-screen.absorbing .intro-showcase {
  opacity: 0.94;
  transform: translateY(calc(-50vh + 118px)) scale(0.2);
}

.service-track {
  position: absolute;
  inset: 0;
  display: block;
  width: auto;
  padding: 0;
  animation: none;
  transform-style: preserve-3d;
}

.service-bubble {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  animation: none;
  transform: translateX(42%) scale(0.82) rotateY(-12deg);
  transition:
    opacity 850ms ease,
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 850ms ease;
  filter: blur(8px);
}

.service-bubble.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0deg);
  filter: blur(0);
}

.service-bubble.exiting {
  opacity: 0;
  transform: translateX(-18%) scale(0.92) rotateY(6deg);
  filter: blur(7px);
}

.service-bubble strong {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min-content;
  max-width: 96vw;
  padding: 0;
  border-radius: 0;
  color: var(--role-color, #d1d5db);
  background: transparent;
  box-shadow: none;
  font-size: clamp(4.2rem, 13vw, 10rem);
  font-weight: 1000;
  line-height: 0.78;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8),
    0 3px 0 var(--role-shadow, rgba(16, 24, 40, 0.16)),
    0 8px 0 var(--role-shadow, rgba(16, 24, 40, 0.12)),
    0 24px 30px rgba(16, 24, 40, 0.16);
  transform: translate(-50%, -54%) translateZ(-80px) rotateX(7deg);
}

.service-bubble img {
  position: relative;
  z-index: 2;
  left: auto;
  bottom: auto;
  width: min(42vh, 340px);
  max-width: 58vw;
  transform: translateY(34px) translateZ(80px);
  filter: drop-shadow(0 28px 34px rgba(16, 24, 40, 0.22));
}

.service-bubble.tile {
  --role-color: #b7d4ff;
  --role-shadow: #7aa7e8;
}

.service-bubble.plumber {
  --role-color: #c6a2ff;
  --role-shadow: #9d71e4;
}

.service-bubble.painter {
  --role-color: #b8d8ff;
  --role-shadow: #7ba6e4;
}

.service-bubble.hvac {
  --role-color: #f8c8cb;
  --role-shadow: #db9ba0;
}

.service-bubble.electrician {
  --role-color: #f3ff4c;
  --role-shadow: #3ed6e4;
}

.service-bubble.cleaning {
  --role-color: #176d97;
  --role-shadow: #38bdf8;
}

.service-bubble.mason {
  --role-color: #9b9696;
  --role-shadow: #6f6a6a;
}

.service-bubble.locksmith {
  --role-color: #d8d8d8;
  --role-shadow: #b8b8b8;
}

@media (max-width: 760px) {
  .intro-content {
    padding-top: 0;
  }

  .intro-showcase {
    width: 100vw;
    min-height: 70vh;
    overflow: hidden;
  }

  .service-bubble strong {
    width: min-content;
    max-width: 92vw;
    overflow-wrap: normal;
    word-break: normal;
    white-space: normal;
    font-size: clamp(3.1rem, 15vw, 5.8rem);
    line-height: 0.82;
    transform: translate(-50%, -58%) translateZ(-80px) rotateX(7deg);
  }

  .service-bubble img {
    width: min(40vh, 255px);
    max-width: 72vw;
    transform: translateY(44px) translateZ(80px);
  }

  .service-bubble.hvac strong,
  .service-bubble.cleaning strong,
  .service-bubble.electrician strong,
  .service-bubble.locksmith strong,
  .service-bubble.tile strong {
    font-size: clamp(2.85rem, 13.8vw, 5.1rem);
  }

  .service-bubble.hvac strong {
    max-width: 88vw;
  }
}

/* Final welcome alignment: desktop, tablet, mobile */
.intro-screen {
  padding: clamp(18px, 4vw, 44px);
}

.intro-content {
  height: 94px;
  align-self: start;
  display: grid;
  place-items: center;
}

.intro-content .intro-logo {
  width: clamp(92px, 9vw, 124px);
  height: clamp(64px, 7vw, 88px);
  margin: 0;
}

.intro-showcase {
  width: min(980px, 94vw);
  min-height: calc(100vh - 150px);
}

.service-bubble strong {
  top: 38%;
  max-width: 92vw;
  font-size: clamp(5.7rem, 11vw, 10.2rem);
  transform: translate(-50%, -50%) translateZ(-80px) rotateX(7deg);
}

.service-bubble img {
  width: min(34vh, 280px);
  max-width: 36vw;
  transform: translateY(58px) translateZ(80px);
}

@media (min-width: 761px) and (max-width: 1180px) {
  .intro-content {
    height: 104px;
  }

  .intro-showcase {
    width: min(760px, 92vw);
    min-height: calc(100vh - 170px);
  }

  .service-bubble strong {
    top: 39%;
    font-size: clamp(5rem, 13vw, 8.4rem);
  }

  .service-bubble img {
    width: min(34vh, 270px);
    max-width: 42vw;
    transform: translateY(58px) translateZ(80px);
  }
}

@media (max-width: 760px) {
  .intro-screen {
    padding: 18px 14px 26px;
    grid-template-rows: 92px 1fr;
  }

  .intro-content {
    height: 92px;
  }

  .intro-content .intro-logo {
    width: 86px;
    height: 58px;
  }

  .intro-showcase {
    width: 100%;
    min-height: calc(100vh - 118px);
    overflow: hidden;
  }

  .service-bubble {
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: end;
    justify-items: center;
    padding-bottom: 8vh;
  }

  .service-bubble strong {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    order: 2;
    width: auto;
    max-width: 92vw;
    font-size: clamp(2.6rem, 15vw, 4.2rem);
    line-height: 0.82;
    transform: translateY(0) translateZ(80px) rotateX(7deg);
  }

  .service-bubble img {
    position: relative;
    z-index: 2;
    order: 1;
    width: min(43vh, 285px);
    max-width: 76vw;
    transform: translateY(0) translateZ(80px);
  }

  .service-bubble.hvac strong,
  .service-bubble.cleaning strong,
  .service-bubble.electrician strong,
  .service-bubble.locksmith strong,
  .service-bubble.tile strong {
    font-size: clamp(2.25rem, 13.5vw, 3.8rem);
  }
}

/* Hard override: keep desktop/tablet worker centered over the title */
@media (min-width: 761px) {
  .service-bubble img {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 34%;
    bottom: auto;
    width: min(38vh, 315px);
    max-width: 34vw;
    transform: translate(-50%, 0) translateZ(80px);
  }

  .service-bubble strong {
    position: absolute;
    z-index: 1;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(-80px) rotateX(7deg);
  }
}

@media (min-width: 761px) and (max-width: 1180px) {
  .service-bubble img {
    top: 35%;
    width: min(36vh, 295px);
    max-width: 42vw;
  }
}

/* Final welcome logo size */
.intro-content .intro-logo {
  width: clamp(138px, 12vw, 178px);
  height: clamp(92px, 9vw, 120px);
}

@media (max-width: 760px) {
  .intro-content .intro-logo {
    width: 116px;
    height: 76px;
  }
}

/* Mobile welcome layout based on supplied reference */
@media (max-width: 760px) {
  .intro-screen {
    grid-template-rows: 142px 1fr;
    padding: 20px 18px 30px;
  }

  .intro-content {
    height: 142px;
    align-items: start;
    padding-top: 22px;
  }

  .intro-content .intro-logo {
    width: 126px;
    height: 82px;
  }

  .intro-showcase {
    min-height: calc(100vh - 172px);
  }

  .service-bubble {
    display: block;
    padding: 0;
  }

  .service-bubble img {
    position: absolute;
    left: 50%;
    top: 4%;
    width: min(39vh, 285px);
    max-width: 74vw;
    transform: translateX(-50%) translateZ(80px);
  }

  .service-bubble strong {
    position: absolute;
    left: 50%;
    right: auto;
    top: auto;
    bottom: 24%;
    width: max-content;
    max-width: 94vw;
    font-size: clamp(3rem, 16vw, 4.85rem);
    line-height: 0.82;
    transform: translateX(-50%) translateZ(80px) rotateX(7deg);
  }

  .service-bubble.hvac strong,
  .service-bubble.cleaning strong,
  .service-bubble.electrician strong,
  .service-bubble.locksmith strong,
  .service-bubble.tile strong {
    font-size: clamp(2.45rem, 13.5vw, 4rem);
  }
}

/* Marketplace search, boost posts, admin ads, normal posts */
.marketplace-search {
  margin: 6px 20px 20px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.05);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.market-search-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(150px, 0.7fr));
  gap: 12px;
}

.marketplace-search label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.marketplace-search label span {
  color: #666666;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.marketplace-search input,
.marketplace-search select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: #111111;
  background: #f6f6f6;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  font: inherit;
  font-size: 0.86rem;
  outline: none;
}

.marketplace-search input:focus,
.marketplace-search select:focus {
  border-color: #1c00bf;
  box-shadow: 0 0 0 3px rgba(28, 0, 191, 0.1);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.category-filter button {
  min-height: 34px;
  padding: 8px 14px;
  color: #222222;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.category-filter button.active {
  color: #ffffff;
  background: #050505;
}

.filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eeeeee;
}

.filter-summary strong {
  color: #050505;
  font-size: 0.95rem;
  font-weight: 1000;
}

.filter-summary span {
  color: #777777;
  font-size: 0.78rem;
  font-weight: 750;
}

.listing-toolbar div,
.normal-post-head div {
  display: grid;
  gap: 4px;
}

.listing-toolbar strong,
.normal-post-head strong {
  color: #050505;
  font-size: 0.9rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.listing-toolbar span,
.normal-post-head span {
  color: #777777;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: none;
}

.listing-toolbar button::after {
  content: " =";
}

.project-card {
  position: relative;
}

.project-card[hidden] {
  display: none;
}

.project-card.boosted {
  border: 2px solid rgba(255, 202, 74, 0.85);
}

.boost-label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 7px 10px;
  color: #050505;
  background: #ffca4a;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  font-size: 0.68rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.photo-count::before {
  content: "[] ";
}

.service-tags span::before {
  content: "# ";
  color: #9d7a17;
}

.details-btn::after {
  content: "  >";
}

.ad-banner {
  margin-bottom: 56px;
}

.ad-banner small {
  width: max-content;
  padding: 6px 10px;
  color: #050505;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.normal-post-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 20px 18px;
  padding: 0 8px;
}

.normal-post-head button {
  min-height: 34px;
  padding: 8px 14px;
  color: #050505;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .market-search-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .marketplace-search {
    margin-inline: 0;
    padding: 14px;
  }

  .market-search-row {
    grid-template-columns: 1fr;
  }

  .filter-summary,
  .normal-post-head,
  .listing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

/* Absolute final specs bar override */
.project-meta {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 14px !important;
  padding: 12px 0 !important;
  background: transparent !important;
  border-top: 1px solid #eeeeee !important;
  border-bottom: 1px solid #eeeeee !important;
}

.project-meta span {
  position: relative !important;
  min-height: 46px !important;
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr) !important;
  grid-template-rows: 1fr 1fr !important;
  column-gap: 8px !important;
  align-items: center !important;
  padding: 0 10px !important;
  color: #111111 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
}

.project-meta span + span {
  border-left: 1px solid #d8d8d8 !important;
}

.project-meta b,
.project-meta small {
  display: block !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.project-meta b {
  align-self: end !important;
  font-size: 0.84rem !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

.project-meta small {
  align-self: start !important;
  color: #555555 !important;
  font-size: 0.72rem !important;
  font-weight: 750 !important;
  white-space: nowrap !important;
}

.project-meta span::before {
  content: "" !important;
  display: block !important;
  position: relative !important;
  grid-row: 1 / span 2 !important;
  grid-column: 1 !important;
  left: auto !important;
  top: auto !important;
  width: 27px !important;
  height: 27px !important;
  margin: 0 !important;
  background: transparent !important;
  border: 2px solid #050505 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  transform: none !important;
}

.project-meta span::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  background: transparent !important;
  box-shadow: none !important;
}

.project-meta .verified::before {
  border-radius: 9px 9px 12px 12px !important;
}

.project-meta .verified::after {
  left: 20px !important;
  top: 15px !important;
  width: 7px !important;
  height: 12px !important;
  border: solid #050505 !important;
  border-width: 0 3px 3px 0 !important;
  transform: rotate(45deg) !important;
}

.project-meta .projects::before {
  border-radius: 4px !important;
}

.project-meta .projects::after {
  left: 19px !important;
  top: 17px !important;
  width: 13px !important;
  height: 12px !important;
  border-top: 2px solid #050505 !important;
  border-bottom: 2px solid #050505 !important;
  box-shadow: 0 5px 0 -3px #050505 !important;
}

.project-meta .experience::before {
  width: 12px !important;
  height: 12px !important;
  margin-left: 7px !important;
  margin-bottom: 12px !important;
  border-radius: 50% !important;
}

.project-meta .experience::after {
  left: 15px !important;
  top: 28px !important;
  width: 23px !important;
  height: 13px !important;
  border: 2px solid #050505 !important;
  border-radius: 14px 14px 4px 4px !important;
}

.project-meta .warranty::before {
  border-radius: 50% !important;
}

.project-meta .warranty::after {
  left: 20px !important;
  top: 15px !important;
  width: 7px !important;
  height: 12px !important;
  border: solid #050505 !important;
  border-width: 0 3px 3px 0 !important;
  transform: rotate(45deg) !important;
}

#normalPosts .project-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  padding: 9px 0 !important;
}

#normalPosts .project-meta span {
  min-height: 38px !important;
  grid-template-columns: 26px minmax(0, 1fr) !important;
  column-gap: 6px !important;
  padding: 0 8px !important;
}

#normalPosts .project-meta b {
  font-size: 0.66rem !important;
}

#normalPosts .project-meta small {
  font-size: 0.58rem !important;
}

/* Absolute smallest specs bar override */
.project-meta {
  margin-top: 10px !important;
  padding: 8px 0 !important;
}

.project-meta span {
  min-height: 34px !important;
  grid-template-columns: 25px minmax(0, 1fr) !important;
  column-gap: 6px !important;
  padding: 0 8px !important;
}

.project-meta b {
  font-size: 0.72rem !important;
}

.project-meta small {
  font-size: 0.62rem !important;
}

.project-meta span::before {
  width: 20px !important;
  height: 20px !important;
}

.project-meta .verified::after {
  left: 15px !important;
  top: 12px !important;
  width: 5px !important;
  height: 9px !important;
  border-width: 0 2px 2px 0 !important;
}

.project-meta .projects::after {
  left: 14px !important;
  top: 13px !important;
  width: 10px !important;
  height: 9px !important;
}

.project-meta .experience::before {
  width: 9px !important;
  height: 9px !important;
  margin-left: 5px !important;
  margin-bottom: 9px !important;
}

.project-meta .experience::after {
  left: 11px !important;
  top: 23px !important;
  width: 18px !important;
  height: 10px !important;
}

.project-meta .warranty::after {
  left: 15px !important;
  top: 12px !important;
  width: 5px !important;
  height: 9px !important;
  border-width: 0 2px 2px 0 !important;
}

#normalPosts .project-meta {
  padding: 7px 0 !important;
}

#normalPosts .project-meta span {
  min-height: 31px !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
}
/* Absolute smallest specs bar override */
.project-meta {
  margin-top: 10px !important;
  padding: 8px 0 !important;
}

.project-meta span {
  min-height: 34px !important;
  grid-template-columns: 25px minmax(0, 1fr) !important;
  column-gap: 6px !important;
  padding: 0 8px !important;
}

.project-meta b {
  font-size: 0.72rem !important;
}

.project-meta small {
  font-size: 0.62rem !important;
}

.project-meta span::before {
  width: 20px !important;
  height: 20px !important;
}

.project-meta .verified::after {
  left: 15px !important;
  top: 12px !important;
  width: 5px !important;
  height: 9px !important;
  border-width: 0 2px 2px 0 !important;
}

.project-meta .projects::after {
  left: 14px !important;
  top: 13px !important;
  width: 10px !important;
  height: 9px !important;
}

.project-meta .experience::before {
  width: 9px !important;
  height: 9px !important;
  margin-left: 5px !important;
  margin-bottom: 9px !important;
}

.project-meta .experience::after {
  left: 11px !important;
  top: 23px !important;
  width: 18px !important;
  height: 10px !important;
}

.project-meta .warranty::after {
  left: 15px !important;
  top: 12px !important;
  width: 5px !important;
  height: 9px !important;
  border-width: 0 2px 2px 0 !important;
}

#normalPosts .project-meta {
  padding: 7px 0 !important;
}

#normalPosts .project-meta span {
  min-height: 31px !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
}

/* Absolute smallest specs bar override */
.project-meta {
  margin-top: 10px !important;
  padding: 8px 0 !important;
}

.project-meta span {
  min-height: 34px !important;
  grid-template-columns: 25px minmax(0, 1fr) !important;
  column-gap: 6px !important;
  padding: 0 8px !important;
}

.project-meta b {
  font-size: 0.72rem !important;
}

.project-meta small {
  font-size: 0.62rem !important;
}

.project-meta span::before {
  width: 20px !important;
  height: 20px !important;
}

.project-meta .verified::after {
  left: 15px !important;
  top: 12px !important;
  width: 5px !important;
  height: 9px !important;
  border-width: 0 2px 2px 0 !important;
}

.project-meta .projects::after {
  left: 14px !important;
  top: 13px !important;
  width: 10px !important;
  height: 9px !important;
}

.project-meta .experience::before {
  width: 9px !important;
  height: 9px !important;
  margin-left: 5px !important;
  margin-bottom: 9px !important;
}

.project-meta .experience::after {
  left: 11px !important;
  top: 23px !important;
  width: 18px !important;
  height: 10px !important;
}

.project-meta .warranty::after {
  left: 15px !important;
  top: 12px !important;
  width: 5px !important;
  height: 9px !important;
  border-width: 0 2px 2px 0 !important;
}

#normalPosts .project-meta {
  padding: 7px 0 !important;
}

#normalPosts .project-meta span {
  min-height: 31px !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
}

/* Smaller final specs bar */
.project-meta {
  margin-top: 10px !important;
  padding: 8px 0 !important;
}

.project-meta span {
  min-height: 34px !important;
  grid-template-columns: 25px minmax(0, 1fr) !important;
  column-gap: 6px !important;
  padding: 0 8px !important;
}

.project-meta b {
  font-size: 0.72rem !important;
}

.project-meta small {
  font-size: 0.62rem !important;
}

.project-meta span::before {
  width: 20px !important;
  height: 20px !important;
  border-width: 2px !important;
}

.project-meta .verified::after {
  left: 15px !important;
  top: 12px !important;
  width: 5px !important;
  height: 9px !important;
  border-width: 0 2px 2px 0 !important;
}

.project-meta .projects::after {
  left: 14px !important;
  top: 13px !important;
  width: 10px !important;
  height: 9px !important;
}

.project-meta .experience::before {
  width: 9px !important;
  height: 9px !important;
  margin-left: 5px !important;
  margin-bottom: 9px !important;
}

.project-meta .experience::after {
  left: 11px !important;
  top: 23px !important;
  width: 18px !important;
  height: 10px !important;
}

.project-meta .warranty::after {
  left: 15px !important;
  top: 12px !important;
  width: 5px !important;
  height: 9px !important;
  border-width: 0 2px 2px 0 !important;
}

#normalPosts .project-meta {
  padding: 7px 0 !important;
}

#normalPosts .project-meta span {
  min-height: 31px !important;
  grid-template-columns: 22px minmax(0, 1fr) !important;
}

/* Reference-style specs bar for contractor cards */
.project-meta {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 14px !important;
  padding: 12px 0 !important;
  border-top: 1px solid #eeeeee !important;
  border-bottom: 1px solid #eeeeee !important;
}

.project-meta span {
  position: relative !important;
  min-height: 44px !important;
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  column-gap: 8px !important;
  align-items: center !important;
  padding: 0 12px !important;
  color: #111111 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 0.75rem !important;
  line-height: 1.05 !important;
}

.project-meta span + span {
  border-left: 1px solid #d8d8d8 !important;
}

.project-meta span::before {
  content: "" !important;
  display: block !important;
  grid-row: 1 / span 2 !important;
  width: 28px !important;
  height: 28px !important;
  background: transparent !important;
  border: 2px solid #050505 !important;
  border-radius: 6px !important;
}

.project-meta span::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
}

.project-meta b,
.project-meta small {
  display: block;
  min-width: 0;
}

.project-meta b {
  align-self: end;
  font-size: 0.84rem;
  font-weight: 950;
}

.project-meta small {
  align-self: start;
  color: #555555;
  font-size: 0.74rem;
  font-weight: 750;
}

.project-meta .verified::before {
  border-radius: 9px 9px 11px 11px !important;
}

.project-meta .verified::after {
  left: 23px !important;
  top: 17px !important;
  width: 7px !important;
  height: 12px !important;
  border: solid #050505 !important;
  border-width: 0 3px 3px 0 !important;
  transform: rotate(45deg) !important;
}

.project-meta .projects::before {
  border-radius: 4px !important;
}

.project-meta .projects::after {
  left: 20px !important;
  top: 19px !important;
  width: 14px !important;
  height: 11px !important;
  border-top: 2px solid #050505 !important;
  border-bottom: 2px solid #050505 !important;
  box-shadow: 0 5px 0 -3px #050505 !important;
}

.project-meta .experience::before {
  width: 13px !important;
  height: 13px !important;
  margin: 0 0 12px 7px !important;
  border-radius: 50% !important;
}

.project-meta .experience::after {
  left: 18px !important;
  top: 29px !important;
  width: 24px !important;
  height: 13px !important;
  border: 2px solid #050505 !important;
  border-radius: 14px 14px 4px 4px !important;
}

.project-meta .warranty::before {
  border-radius: 50% !important;
}

.project-meta .warranty::after {
  left: 22px !important;
  top: 16px !important;
  width: 8px !important;
  height: 13px !important;
  border: solid #050505 !important;
  border-width: 0 3px 3px 0 !important;
  transform: rotate(45deg) !important;
}

#normalPosts .project-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  padding: 9px 0 !important;
}

#normalPosts .project-meta span {
  min-height: 38px !important;
  grid-template-columns: 28px minmax(0, 1fr) !important;
  column-gap: 7px !important;
  padding: 0 8px !important;
}

#normalPosts .project-meta b {
  font-size: 0.66rem !important;
}

#normalPosts .project-meta small {
  font-size: 0.58rem !important;
}

/* Final clean project specs override */
.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.project-meta span {
  position: static;
  min-height: auto;
  display: block;
  padding: 10px 12px;
  color: #111111;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
}

.project-meta span::before,
.project-meta span::after {
  content: none;
  display: none;
}

#normalPosts .project-meta {
  grid-template-columns: 1fr;
}

#normalPosts .project-meta span {
  position: static;
  min-height: auto;
  padding: 8px 10px;
  font-size: 0.62rem;
}

/* Knowledge sharing area */
.knowledge-section {
  margin: 0 20px 96px;
  padding: clamp(28px, 5vw, 58px);
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}

.knowledge-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.knowledge-intro span,
.knowledge-card small {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  color: #1c00bf;
  background: rgba(28, 0, 191, 0.08);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.knowledge-intro h2 {
  margin: 14px 0 10px;
  color: #050505;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 1000;
  line-height: 1.02;
}

.knowledge-intro p,
.knowledge-card p,
.trust-guide p,
.trust-guide li {
  color: #666666;
  font-size: 0.94rem;
  line-height: 1.6;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
}

.knowledge-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 14px;
}

.knowledge-card.feature-card {
  color: #ffffff;
  background: #050505;
  border-color: #050505;
}

.knowledge-card.feature-card h3,
.knowledge-card.feature-card p {
  color: #ffffff;
}

.knowledge-card.feature-card small {
  color: #050505;
  background: #ffca4a;
}

.knowledge-card strong {
  color: #c9c9c9;
  font-size: 3.2rem;
  font-weight: 1000;
  line-height: 0.9;
}

.knowledge-card h3 {
  margin: 18px 0 8px;
  color: #050505;
  font-size: 1.12rem;
  font-weight: 1000;
  line-height: 1.08;
}

.knowledge-card p {
  margin: 0;
  font-size: 0.82rem;
}

.trust-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.85fr);
  gap: 24px;
  margin-top: 18px;
  padding: 24px;
  background: #fff4d3;
  border-radius: 14px;
}

.trust-guide h3 {
  margin: 0 0 8px;
  color: #050505;
  font-size: 1.4rem;
  font-weight: 1000;
}

.trust-guide p,
.trust-guide ul {
  margin: 0;
}

.trust-guide ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

@media (max-width: 980px) {
  .knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .knowledge-section {
    margin-inline: 0;
    padding: 22px;
  }

  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-card {
    min-height: 210px;
  }
}

/* Polished contractor card details */
.project-card {
  overflow: hidden;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.project-meta span {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 9px 8px 36px;
  color: #303030;
  background: #f6f6f6;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 850;
  line-height: 1.15;
}

.project-meta span::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 18px;
  height: 18px;
  background: #050505;
  border: 0;
  border-radius: 50%;
  transform: translateY(-50%);
}

.project-meta span::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translateY(-58%) rotate(45deg);
}

.project-footer {
  align-items: center;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #efefef;
}

.details-btn {
  box-shadow: 0 8px 16px rgba(255, 202, 74, 0.34);
}

.project-card.boosted {
  border-color: rgba(255, 202, 74, 0.95);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.boost-label {
  top: 18px;
  left: 18px;
  letter-spacing: 0;
}

#normalPosts .project-meta {
  grid-template-columns: 1fr;
}

#normalPosts .project-meta span {
  min-height: 32px;
  padding: 7px 8px 7px 32px;
  font-size: 0.6rem;
}

#normalPosts .project-meta span::before {
  left: 9px;
  width: 16px;
  height: 16px;
}

#normalPosts .project-meta span::after {
  left: 14px;
  width: 4px;
  height: 8px;
}

#normalPosts .project-footer {
  margin-top: 12px;
  padding-top: 12px;
}

@media (max-width: 560px) {
  .project-meta {
    grid-template-columns: 1fr;
  }
}

/* Clean listing specs, no heavy icons */
.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.project-meta span {
  min-height: auto;
  display: block;
  padding: 10px 12px;
  color: #111111;
  background: #f8f8f8;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.15;
}

.project-meta span::before,
.project-meta span::after {
  content: none;
  display: none;
}

.project-meta span:nth-child(1)::first-line,
.project-meta span:nth-child(2)::first-line,
.project-meta span:nth-child(3)::first-line {
  color: #777777;
}

#normalPosts .project-meta {
  grid-template-columns: 1fr;
}

#normalPosts .project-meta span {
  padding: 8px 10px;
  font-size: 0.62rem;
}

/* Normal postings are intentionally smaller than boosted postings */
#normalPosts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

#normalPosts .project-card {
  padding: 13px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

#normalPosts .project-image {
  min-height: 205px;
  border-radius: 12px;
}

#normalPosts .project-title-row {
  gap: 6px;
  margin-top: 11px;
}

#normalPosts .project-title-row h3 {
  font-size: 0.82rem;
}

#normalPosts .rating {
  font-size: 0.6rem;
  padding: 2px 4px;
}

#normalPosts .project-title-row button {
  width: 16px;
  height: 16px;
  font-size: 0.95rem;
}

#normalPosts .project-card p {
  margin: 6px 0 10px;
  font-size: 0.68rem;
}

#normalPosts .service-tags {
  gap: 5px;
  margin-bottom: 10px;
}

#normalPosts .service-tags span {
  padding: 5px 7px;
  font-size: 0.58rem;
}

#normalPosts .project-meta {
  gap: 6px;
}

#normalPosts .project-meta span {
  min-height: 25px;
  padding-left: 27px;
  font-size: 0.6rem;
}

#normalPosts .project-meta span::before {
  width: 20px;
  height: 20px;
}

#normalPosts .project-footer {
  gap: 10px;
  margin-top: 11px;
}

#normalPosts .details-btn {
  min-width: 118px;
  min-height: 36px;
  padding: 9px 14px;
  font-size: 0.72rem;
  border-radius: 7px;
}

#normalPosts .price {
  min-width: 92px;
}

#normalPosts .price small,
#normalPosts .price em {
  font-size: 0.48rem;
}

#normalPosts .price strong {
  font-size: 1.65rem;
}

@media (max-width: 900px) {
  #normalPosts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  #normalPosts {
    grid-template-columns: 1fr;
  }

  #normalPosts .project-image {
    min-height: 210px;
  }
}

.see-more-wrap {
  display: flex;
  justify-content: center;
  padding: 8px 0 86px;
}

.see-more-wrap button {
  min-width: 180px;
  min-height: 44px;
  padding: 12px 26px;
  color: #ffffff;
  background: #050505;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  font-size: 0.85rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.see-more-wrap button[hidden] {
  display: none;
}

/* Final normal-post sizing */
#normalPosts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 22px;
}

#normalPosts .project-card {
  padding: 13px;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

#normalPosts .project-image {
  min-height: 205px;
  border-radius: 12px;
}

#normalPosts .project-title-row h3 {
  font-size: 0.82rem;
}

#normalPosts .project-card p {
  font-size: 0.68rem;
}

#normalPosts .service-tags span {
  padding: 5px 7px;
  font-size: 0.58rem;
}

#normalPosts .project-meta span {
  min-height: 25px;
  padding-left: 27px;
  font-size: 0.6rem;
}

#normalPosts .details-btn {
  min-width: 118px;
  min-height: 36px;
  padding: 9px 14px;
  font-size: 0.72rem;
}

#normalPosts .price strong {
  font-size: 1.65rem;
}

@media (max-width: 900px) {
  #normalPosts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  #normalPosts {
    grid-template-columns: 1fr;
  }
}

/* MYRENO clean customer main page */
body:not(.intro-open) {
  background: #f7f7f7;
}

body:not(.intro-open) .topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 110px 1fr 56px;
  align-items: center;
  min-height: 58px;
  padding: 8px 28px;
  background: rgba(247, 247, 247, 0.96);
  border: 0;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

body:not(.intro-open) .brand {
  justify-self: start;
  gap: 0;
  text-decoration: none;
}

body:not(.intro-open) .brand-mark.logo-image {
  width: 76px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body:not(.intro-open) .brand-mark.logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body:not(.intro-open) .main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(48px, 12vw, 150px);
}

body:not(.intro-open) .main-nav a {
  color: #050505;
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

body:not(.intro-open) .portal-switcher {
  display: none;
}

body:not(.intro-open) .account-link {
  position: relative;
  justify-self: end;
  width: 26px;
  height: 26px;
  border: 2px solid #050505;
  border-radius: 50%;
  color: #050505;
  text-decoration: none;
}

body:not(.intro-open) .account-link::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

body:not(.intro-open) .account-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 13px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  transform: translateX(-50%);
}

body:not(.intro-open) main {
  background: #f7f7f7;
}

body:not(.intro-open) #customer-view {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto 72px;
}

.myreno-hero {
  min-height: 485px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: 36px;
  padding: 58px 42px 28px;
}

.hero-statement h1 {
  max-width: 760px;
  margin: 0;
  color: #050505;
  font-size: clamp(3rem, 5.45vw, 5rem);
  font-weight: 1000;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-statement h1 span {
  color: #1c00bf;
}

.account-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 235px;
  min-height: 42px;
  margin-top: 16px;
  padding: 10px 28px;
  color: #ffffff;
  background: #050505;
  border: 0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-search {
  display: block;
  width: min(560px, 100%);
  margin-top: 28px;
}

.hero-search input {
  width: 100%;
  height: 56px;
  padding: 0 64px;
  color: #111111;
  background: #ffffff;
  border: 0;
  border-radius: 999px;
  box-shadow: 18px 18px 28px rgba(0, 0, 0, 0.17), -8px -8px 20px rgba(255, 255, 255, 0.95);
  font-size: 0.9rem;
  font-style: italic;
  outline: none;
}

.hero-search input::placeholder {
  color: #a5a5a5;
}

.hero-worker {
  display: grid;
  justify-items: center;
  align-self: end;
  min-width: 0;
}

.hero-worker img {
  width: min(330px, 30vw);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.14));
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-worker strong {
  margin-top: -16px;
  color: #77706f;
  font-size: clamp(3.2rem, 4.7vw, 4.65rem);
  font-weight: 1000;
  line-height: 0.85;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #1b1717;
  text-shadow: 0 7px 0 #4f4848, 0 18px 28px rgba(0, 0, 0, 0.18);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease, text-shadow 0.35s ease;
}

.hero-worker.switching img,
.hero-worker.switching strong {
  opacity: 0;
  transform: translateY(14px) scale(0.97);
}

.hero-worker strong.mason {
  color: #7a7371;
  text-shadow: 0 7px 0 #4f4848, 0 18px 28px rgba(0, 0, 0, 0.18);
}

.hero-worker strong.plumber {
  color: #c6a4ff;
  text-shadow: 0 7px 0 #9166df, 0 18px 28px rgba(87, 54, 145, 0.2);
}

.hero-worker strong.painter,
.hero-worker strong.tile {
  color: #b8d6ff;
  text-shadow: 0 7px 0 #74a9ee, 0 18px 28px rgba(57, 113, 190, 0.2);
}

.hero-worker strong.electrician {
  color: #f6ff3f;
  text-shadow: 0 7px 0 #21c6d4, 0 18px 28px rgba(15, 133, 158, 0.22);
}

.hero-worker strong.cleaning {
  color: #188db7;
  text-shadow: 0 7px 0 #0b6280, 0 18px 28px rgba(10, 92, 126, 0.18);
}

.hero-worker strong.hvac {
  color: #ffc6cc;
  text-shadow: 0 7px 0 #d7919b, 0 18px 28px rgba(170, 84, 96, 0.2);
}

.hero-worker strong.locksmith {
  color: #d7d7d7;
  text-shadow: 0 7px 0 #a9a9a9, 0 18px 28px rgba(0, 0, 0, 0.16);
}

.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px 12px;
  color: #050505;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.listing-toolbar button,
.listing-toolbar a {
  color: inherit;
  background: transparent;
  border: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-transform: uppercase;
}

.listing-toolbar button {
  text-decoration: none;
}

.listing-toolbar button::after {
  content: " ≡";
  font-size: 0.78rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding: 0 20px 30px;
}

.project-card {
  min-width: 0;
  padding: 18px 18px 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.17);
}

.project-image {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  background-color: #dce8f2;
  background-position: center;
  background-size: cover;
  border-radius: 16px;
}

.house-one {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.08)), url("assets/home-services-hero.png");
  background-position: center 44%;
}

.house-two {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.08)), url("assets/home-services-hero.png");
  background-position: center 54%;
}

.photo-count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 4px 8px;
  color: #ffffff;
  background: rgba(20, 20, 20, 0.42);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 850;
}

.photo-count::before {
  content: "▧ ";
}

.project-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.project-title-row h3 {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: #050505;
  font-size: clamp(0.92rem, 1.35vw, 1.12rem);
  font-weight: 1000;
  line-height: 1.05;
  text-transform: uppercase;
}

.rating {
  padding: 3px 5px;
  color: #050505;
  background: #ffcf4c;
  border-radius: 3px;
  font-size: 0.68rem;
  font-weight: 950;
}

.project-title-row button {
  width: 20px;
  height: 20px;
  padding: 0;
  color: #b8b8b8;
  background: transparent;
  border: 0;
  font-size: 1.18rem;
  line-height: 1;
}

.project-card p {
  max-width: 430px;
  margin: 7px 0 13px;
  color: #6f6f6f;
  font-size: 0.76rem;
  line-height: 1.28;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 14px;
}

.service-tags span {
  padding: 6px 9px;
  color: #242424;
  background: #fff2d2;
  border-radius: 7px;
  font-size: 0.66rem;
  font-weight: 850;
}

.service-tags span::before {
  content: "▦ ";
  color: #9d7a17;
}

.project-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.project-meta span {
  position: relative;
  min-height: 32px;
  padding-left: 34px;
  color: #4f4f4f;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.12;
}

.project-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #111111;
  border-radius: 50%;
}

.project-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.details-btn {
  min-width: 155px;
  min-height: 45px;
  padding: 12px 22px;
  color: #050505;
  background: #ffca4a;
  border: 0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.details-btn::after {
  content: "  ›";
  font-size: 1.4em;
  line-height: 0;
}

.price {
  min-width: 125px;
  color: #050505;
  text-align: right;
  text-transform: uppercase;
}

.price small,
.price em {
  display: block;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.price strong {
  display: block;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 1000;
  line-height: 0.9;
}

.ad-banner {
  min-height: 148px;
  display: grid;
  align-content: center;
  gap: 6px;
  margin: 16px 20px 82px;
  padding: 26px 42px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 22%, #ffe14f 0 70px, transparent 72px),
    linear-gradient(100deg, #cf141d 0%, #ec251f 45%, #ffcc34 100%);
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.ad-banner strong {
  max-width: 760px;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  font-weight: 1000;
  line-height: 0.95;
  text-transform: uppercase;
}

.ad-banner span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 800;
}

.mid-search {
  width: min(560px, 58%);
  height: 54px;
  margin: 0 auto 84px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 12px 12px 26px rgba(0, 0, 0, 0.15), -7px -7px 18px rgba(255, 255, 255, 0.95);
}

.secondary-grid {
  padding-bottom: 84px;
}

@media (max-width: 900px) {
  body:not(.intro-open) .topbar {
    grid-template-columns: 88px 1fr 42px;
    padding: 8px 18px;
  }

  body:not(.intro-open) .brand-mark.logo-image {
    width: 66px;
  }

  body:not(.intro-open) .main-nav {
    gap: clamp(22px, 7vw, 64px);
  }

  .myreno-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 20px 26px;
  }

  .hero-statement h1 {
    font-size: clamp(2.45rem, 8vw, 4rem);
  }

  .hero-worker {
    align-self: center;
  }

  .hero-worker img {
    width: min(290px, 58vw);
  }

  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body:not(.intro-open) #customer-view {
    width: min(100% - 22px, 460px);
  }

  body:not(.intro-open) .topbar {
    grid-template-columns: 70px 1fr 32px;
    min-height: 52px;
    padding: 8px 12px;
  }

  body:not(.intro-open) .brand-mark.logo-image {
    width: 58px;
    height: 36px;
  }

  body:not(.intro-open) .main-nav {
    gap: 18px;
  }

  body:not(.intro-open) .main-nav a {
    font-size: 0.62rem;
  }

  body:not(.intro-open) .account-link {
    width: 23px;
    height: 23px;
  }

  .myreno-hero {
    padding: 34px 8px 22px;
    gap: 24px;
  }

  .hero-statement h1 {
    font-size: clamp(2.05rem, 11vw, 3.05rem);
  }

  .account-cta {
    min-width: 180px;
    min-height: 38px;
    font-size: 0.72rem;
  }

  .hero-search input {
    height: 50px;
    padding: 0 28px;
    font-size: 0.78rem;
  }

  .hero-worker img {
    width: min(245px, 68vw);
  }

  .hero-worker strong {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .listing-toolbar {
    padding-inline: 8px;
  }

  .project-grid {
    gap: 24px;
    padding-inline: 0;
  }

  .project-card {
    padding: 13px;
  }

  .project-image {
    min-height: 230px;
  }

  .project-title-row {
    flex-wrap: wrap;
  }

  .project-title-row h3 {
    flex-basis: 100%;
  }

  .project-meta {
    grid-template-columns: 1fr;
  }

  .project-footer {
    align-items: stretch;
  }

  .details-btn {
    min-width: 140px;
  }

  .price strong {
    font-size: 2rem;
  }

  .ad-banner {
    margin-inline: 0;
    padding: 22px;
  }

  .mid-search {
    width: 74%;
  }
}

/* Final marketplace override */
.marketplace-search {
  margin: 6px 20px 20px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(10, 10, 10, 0.05);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.market-search-row {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(3, minmax(150px, 0.7fr));
  gap: 12px;
}

.marketplace-search label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.marketplace-search label span {
  color: #666666;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.marketplace-search input,
.marketplace-search select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  color: #111111;
  background: #f6f6f6;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  font: inherit;
  font-size: 0.86rem;
  outline: none;
}

.marketplace-search input:focus,
.marketplace-search select:focus {
  border-color: #1c00bf;
  box-shadow: 0 0 0 3px rgba(28, 0, 191, 0.1);
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.category-filter button {
  min-height: 34px;
  padding: 8px 14px;
  color: #222222;
  background: #f5f5f5;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.category-filter button.active {
  color: #ffffff;
  background: #050505;
}

.filter-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #eeeeee;
}

.filter-summary strong {
  color: #050505;
  font-size: 0.95rem;
  font-weight: 1000;
}

.filter-summary span {
  color: #777777;
  font-size: 0.78rem;
  font-weight: 750;
}

.listing-toolbar div,
.normal-post-head div {
  display: grid;
  gap: 4px;
}

.listing-toolbar strong,
.normal-post-head strong {
  color: #050505;
  font-size: 0.9rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.listing-toolbar span,
.normal-post-head span {
  color: #777777;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: none;
}

.listing-toolbar button::after {
  content: " =";
}

.project-card {
  position: relative;
}

.project-card[hidden] {
  display: none;
}

.project-card.boosted {
  border: 2px solid rgba(255, 202, 74, 0.85);
}

.boost-label {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 7px 10px;
  color: #050505;
  background: #ffca4a;
  border-radius: 999px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  font-size: 0.68rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.photo-count::before {
  content: "[] ";
}

.service-tags span::before {
  content: "# ";
  color: #9d7a17;
}

.details-btn::after {
  content: "  >";
}

.ad-banner {
  margin-bottom: 56px;
}

.ad-banner small {
  width: max-content;
  padding: 6px 10px;
  color: #050505;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.normal-post-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 20px 18px;
  padding: 0 8px;
}

.normal-post-head button {
  min-height: 34px;
  padding: 8px 14px;
  color: #050505;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .market-search-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .marketplace-search {
    margin-inline: 0;
    padding: 14px;
  }

  .market-search-row {
    grid-template-columns: 1fr;
  }

  .filter-summary,
  .normal-post-head,
  .listing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

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

/* Absolute final specs bar override */
.project-meta {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 14px !important;
  padding: 12px 0 !important;
  background: transparent !important;
  border-top: 1px solid #eeeeee !important;
  border-bottom: 1px solid #eeeeee !important;
}

.project-meta span {
  position: relative !important;
  min-height: 46px !important;
  display: grid !important;
  grid-template-columns: 32px minmax(0, 1fr) !important;
  grid-template-rows: 1fr 1fr !important;
  column-gap: 8px !important;
  align-items: center !important;
  padding: 0 10px !important;
  color: #111111 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
}

.project-meta span + span {
  border-left: 1px solid #d8d8d8 !important;
}

.project-meta b,
.project-meta small {
  display: block !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.project-meta b {
  align-self: end !important;
  font-size: 0.84rem !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

.project-meta small {
  align-self: start !important;
  color: #555555 !important;
  font-size: 0.72rem !important;
  font-weight: 750 !important;
  white-space: nowrap !important;
}

.project-meta span::before {
  content: "" !important;
  display: block !important;
  position: relative !important;
  grid-row: 1 / span 2 !important;
  grid-column: 1 !important;
  left: auto !important;
  top: auto !important;
  width: 27px !important;
  height: 27px !important;
  margin: 0 !important;
  background: transparent !important;
  border: 2px solid #050505 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  transform: none !important;
}

.project-meta span::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  background: transparent !important;
  box-shadow: none !important;
}

.project-meta .verified::before {
  border-radius: 9px 9px 12px 12px !important;
}

.project-meta .verified::after {
  left: 20px !important;
  top: 15px !important;
  width: 7px !important;
  height: 12px !important;
  border: solid #050505 !important;
  border-width: 0 3px 3px 0 !important;
  transform: rotate(45deg) !important;
}

.project-meta .projects::before {
  border-radius: 4px !important;
}

.project-meta .projects::after {
  left: 19px !important;
  top: 17px !important;
  width: 13px !important;
  height: 12px !important;
  border-top: 2px solid #050505 !important;
  border-bottom: 2px solid #050505 !important;
  box-shadow: 0 5px 0 -3px #050505 !important;
}

.project-meta .experience::before {
  width: 12px !important;
  height: 12px !important;
  margin-left: 7px !important;
  margin-bottom: 12px !important;
  border-radius: 50% !important;
}

.project-meta .experience::after {
  left: 15px !important;
  top: 28px !important;
  width: 23px !important;
  height: 13px !important;
  border: 2px solid #050505 !important;
  border-radius: 14px 14px 4px 4px !important;
}

.project-meta .warranty::before {
  border-radius: 50% !important;
}

.project-meta .warranty::after {
  left: 20px !important;
  top: 15px !important;
  width: 7px !important;
  height: 12px !important;
  border: solid #050505 !important;
  border-width: 0 3px 3px 0 !important;
  transform: rotate(45deg) !important;
}

#normalPosts .project-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  padding: 9px 0 !important;
}

#normalPosts .project-meta span {
  min-height: 38px !important;
  grid-template-columns: 26px minmax(0, 1fr) !important;
  column-gap: 6px !important;
  padding: 0 8px !important;
}

#normalPosts .project-meta b {
  font-size: 0.66rem !important;
}

#normalPosts .project-meta small {
  font-size: 0.58rem !important;
}
