@charset "UTF-8";
.lp-auto {
  margin: 12px auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .lp-auto {
    margin: 10px auto;
  }
}
@media (max-width: 600px) {
  .lp-auto {
    margin: 6px auto;
  }
}

/* ===== LAYOUT CONTAINER (aus categories.scss kopiert) ===== */
.lp-auto {
  margin: 0 auto;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
  max-width: 1200px;
}

.lp-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.lp-quarter {
  grid-column: span 1;
}

.lp-threequarter {
  grid-column: span 3;
}

.lp-third {
  grid-column: span 1;
}

.lp-half {
  grid-column: span 2;
}

.lp-full {
  grid-column: span 4;
}

.lp-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CONTAINER STYLES ===== */
.lp-white {
  background: var(--color-bg-body);
  color: var(--color-text-primary);
}
@media (prefers-color-scheme: light) {
  .lp-white {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .lp-white {
    background: #1a2332;
  }
}
html[data-theme="light"] .lp-white {
  background: #ffffff;
}
html[data-theme="dark"] .lp-white {
  background: #1a2332;
}

.lp-border {
  border: 1px solid var(--color-border);
}

.lp-border-grey {
  border-color: var(--color-border);
}

.lp-round {
  border-radius: 4px;
}

.lp-padding {
  padding: 12px;
}

.lp-container {
  padding: 10px;
  box-sizing: border-box;
}

.lp-margin-top {
  margin-top: 12px;
}

.lp-margin-bottom {
  margin-bottom: 12px;
}

.lp-margin-right {
  margin-right: 12px;
}

.lp-margin-top-0 {
  margin-top: 0;
}

.lp-margin-bottom-small {
  margin-bottom: 6px;
}

.lp-center {
  text-align: center;
}

.lp-small {
  font-size: 13px;
}

.lp-text-grey {
  color: var(--color-text-muted);
}

.lp-text-green3 {
  color: #5ba831;
}

.lp-bold {
  font-weight: 700;
}

.lp-right {
  text-align: right;
}

.lp-left {
  float: left;
}

.lp-hover-shadow {
  transition: box-shadow 0.2s ease;
}
.lp-hover-shadow:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== BORDER OUTER (für Kategoriebox-Container) ===== */
.lp-border-dark-color-outer {
  border: none;
  padding: 0;
}

/* ===== TAG STYLES ===== */
.lp-tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
}

.lp-tag.lp-light-grey {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
}

.lp-tag.lp-green2 {
  background: #5ba831;
  color: white;
}

.lp-tag.lp-red {
  background: #dc3545;
  color: white;
}

.lp-tag.lp-spin {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
/* ===== RESPONSIVE LAYOUT ===== */
@media (max-width: 1024px) {
  .lp-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-quarter {
    grid-column: span 1;
  }

  .lp-threequarter {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .lp-auto {
    padding: 0 10px;
  }

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

  .lp-quarter,
  .lp-threequarter,
  .lp-half,
  .lp-third,
  .lp-full {
    grid-column: span 1;
  }
}
@media (max-width: 600px) {
  .lp-auto {
    padding: 0 6px;
  }

  .lp-row {
    gap: 6px;
  }
}
/* ===== PAGE PROFILE SCOPE ===== */
.page-profile {
  /* ===== SIDEBAR PROFILE BOX ===== */
  /* ===== COMMERCIAL HEADER ===== */
  /* ===== FOLLOW BUTTON ===== */
  /* ===== CLASSIFIED ITEM BOXES ===== */
  /* LINKE SPALTE: BILD MIT NUMMER */
  /* MITTLERE SPALTE: TITEL, BESCHREIBUNG, PLZ */
  /* RECHTS OBEN: HERZ (FAVORIT) */
  /* RECHTS UNTEN: PREIS + CRYPTO */
  /* ===== DISPLAY UTILITIES ===== */
  /* ===== LINK STYLES ===== */
  /* ===== RESPONSIVE ===== */
}
.page-profile .profile-box {
  position: relative;
  background-color: var(--color-bg-secondary);
  /* ===== PROFILE BOX TEXT STYLES ===== */
}
@media (prefers-color-scheme: light) {
  .page-profile .profile-box {
    background: #ffffff;
    border-color: #e0e0e0;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .profile-box {
    background: #1a2332;
    border-color: #2d3f54;
  }
}
html[data-theme="light"] .page-profile .profile-box {
  background: #ffffff;
  border-color: #e0e0e0;
}
html[data-theme="dark"] .page-profile .profile-box {
  background: #1a2332;
  border-color: #2d3f54;
}
.page-profile .profile-box h3 {
  color: var(--color-text-primary);
}
@media (prefers-color-scheme: light) {
  .page-profile .profile-box h3 {
    color: #1a1a1a;
    font-weight: 700;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .profile-box h3 {
    color: #ffffff;
    font-weight: 700;
  }
}
html[data-theme="light"] .page-profile .profile-box h3 {
  color: #1a1a1a;
}
html[data-theme="dark"] .page-profile .profile-box h3 {
  color: #ffffff;
}
@media (prefers-color-scheme: light) {
  .page-profile .profile-box .lp-small {
    color: #555555;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .profile-box .lp-small {
    color: #b0b8c1;
  }
}
html[data-theme="light"] .page-profile .profile-box .lp-small {
  color: #555555;
}
html[data-theme="dark"] .page-profile .profile-box .lp-small {
  color: #b0b8c1;
}
@media (prefers-color-scheme: light) {
  .page-profile .profile-box .lp-text-grey {
    color: #888888;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .profile-box .lp-text-grey {
    color: #8a92a0;
  }
}
html[data-theme="light"] .page-profile .profile-box .lp-text-grey {
  color: #888888;
}
html[data-theme="dark"] .page-profile .profile-box .lp-text-grey {
  color: #8a92a0;
}
.page-profile .lp-commercial-header {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 12px;
}
.page-profile .follow-button {
  margin-top: 12px;
  text-align: center;
}
.page-profile .follow-button .lp-button {
  width: 100%;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 4px;
}
.page-profile .lp-grid-boxes-container {
  display: grid;
  grid-template-columns: 11.25rem 1fr 6.25rem;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  background: var(--color-bg-body);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
  min-height: 9.375rem;
  /* Glow Effect */
  border-color: rgba(232, 156, 10, 0.2);
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.1), 0 0 8px rgba(232, 156, 10, 0.05);
}
@media (prefers-color-scheme: light) {
  .page-profile .lp-grid-boxes-container {
    background: #ffffff;
    border-color: #e0e0e0;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-grid-boxes-container {
    background: #1a2332;
    border-color: #2d3f54;
  }
}
html[data-theme="light"] .page-profile .lp-grid-boxes-container {
  background: #ffffff;
  border-color: #e0e0e0;
}
html[data-theme="dark"] .page-profile .lp-grid-boxes-container {
  background: #1a2332;
  border-color: #2d3f54;
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-grid-boxes-container {
    border-color: rgba(232, 156, 10, 0.3);
    box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.15), 0 0 12px rgba(232, 156, 10, 0.1);
  }
}
html[data-theme="dark"] .page-profile .lp-grid-boxes-container {
  border-color: rgba(232, 156, 10, 0.3);
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.15), 0 0 12px rgba(232, 156, 10, 0.1);
}
.page-profile .lp-grid-boxes-container:hover {
  border-color: rgba(232, 156, 10, 0.4);
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.2), 0 0 16px rgba(232, 156, 10, 0.15);
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-grid-boxes-container:hover {
    box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.25), 0 0 20px rgba(232, 156, 10, 0.2);
  }
}
html[data-theme="dark"] .page-profile .lp-grid-boxes-container:hover {
  box-shadow: inset 0 0 0 1px rgba(232, 156, 10, 0.25), 0 0 20px rgba(232, 156, 10, 0.2);
}
.page-profile .lp-grid-boxes-pic {
  grid-column: 1;
  grid-row: 1 / 4;
  position: relative;
  width: 11.25rem;
  height: 9.375rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-bg-secondary);
}
@media (prefers-color-scheme: light) {
  .page-profile .lp-grid-boxes-pic {
    background: #f5f5f5;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-grid-boxes-pic {
    background: #0f1419;
  }
}
html[data-theme="light"] .page-profile .lp-grid-boxes-pic {
  background: #f5f5f5;
}
html[data-theme="dark"] .page-profile .lp-grid-boxes-pic {
  background: #0f1419;
}
.page-profile .lp-grid-boxes-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (prefers-reduced-motion: no-preference) {
  .page-profile .lp-grid-boxes-pic img {
    transition: transform 0.5s ease-in-out;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-profile .lp-grid-boxes-pic img {
    transition: none;
  }
}
.page-profile .lp-grid-boxes-pic a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.page-profile .lp-grid-boxes-pic a:focus-visible {
  outline: 3px solid #e89c0a;
  outline-offset: -3px;
}
@media (prefers-reduced-motion: no-preference) {
  .page-profile .lp-grid-boxes-pic a:hover img {
    transform: scale(1.08);
  }
}
.page-profile .lp-grid-boxes-pic-zoom {
  position: relative;
}
.page-profile .lp-grid-boxes-title {
  grid-column: 2;
  grid-row: 1;
  padding: 0 0.625rem 0.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
  line-height: 1.35;
}
@media (prefers-color-scheme: light) {
  .page-profile .lp-grid-boxes-title {
    color: #1a1a1a;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-grid-boxes-title {
    color: #ffffff;
  }
}
html[data-theme="light"] .page-profile .lp-grid-boxes-title {
  color: #1a1a1a;
}
html[data-theme="dark"] .page-profile .lp-grid-boxes-title {
  color: #ffffff;
}
.page-profile .lp-index-box-title {
  margin: 0;
}
.page-profile .lp-text-snap-index-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word;
}
.page-profile .lp-grid-boxes-subtitle {
  grid-column: 2;
  grid-row: 2;
  padding: 0 0.625rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-wrap: break-word;
  margin: 0;
  line-height: 1.4;
}
@media (prefers-color-scheme: light) {
  .page-profile .lp-grid-boxes-subtitle {
    color: #666666;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-grid-boxes-subtitle {
    color: #a8b0ba;
  }
}
html[data-theme="light"] .page-profile .lp-grid-boxes-subtitle {
  color: #666666;
}
html[data-theme="dark"] .page-profile .lp-grid-boxes-subtitle {
  color: #a8b0ba;
}
.page-profile .lp-grid-boxes-bottom {
  grid-column: 2;
  grid-row: 3;
  padding: 0 0.625rem 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: 0;
  display: flex;
  align-items: flex-end;
  line-height: 1.3;
  font-weight: 500;
}
@media (prefers-color-scheme: light) {
  .page-profile .lp-grid-boxes-bottom {
    color: #999999;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-grid-boxes-bottom {
    color: #7a8290;
  }
}
html[data-theme="light"] .page-profile .lp-grid-boxes-bottom {
  color: #999999;
}
html[data-theme="dark"] .page-profile .lp-grid-boxes-bottom {
  color: #7a8290;
}
.page-profile .lp-grid-boxes-searchsell {
  grid-column: 3;
  grid-row: 1;
  padding: 0.5rem 0.375rem 0.125rem;
  display: flex;
  gap: 0.125rem;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  margin: 0;
}
.page-profile .lp-grid-boxes-searchsell img {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-profile .lp-grid-boxes-searchsell img:hover {
  transform: scale(1.2);
}
.page-profile .lp-grid-boxes-searchsell span {
  display: inline-block;
  font-size: 0.625rem;
  padding: 0.0625rem 0.25rem;
  background: var(--color-bg-secondary);
  border-radius: 2px;
  color: var(--color-text-secondary);
  white-space: nowrap;
}
@media (prefers-color-scheme: light) {
  .page-profile .lp-grid-boxes-searchsell span {
    background: #f0f0f0;
    color: #666666;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-grid-boxes-searchsell span {
    background: #2d3f54;
    color: #a8b0ba;
  }
}
html[data-theme="light"] .page-profile .lp-grid-boxes-searchsell span {
  background: #f0f0f0;
  color: #666666;
}
html[data-theme="dark"] .page-profile .lp-grid-boxes-searchsell span {
  background: #2d3f54;
  color: #a8b0ba;
}
.page-profile .lp-grid-boxes-price {
  grid-column: 3;
  grid-row: 2 / 4;
  padding: 0.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5ba831;
  gap: 0.125rem;
  line-height: 1.2;
}
.page-profile .lp-grid-boxes-price .lp-tag {
  white-space: nowrap;
  font-size: 0.625rem;
  padding: 0.125rem 0.25rem;
  line-height: 1;
  margin: 0;
}
.page-profile .lp-grid-boxes-price .lp-text-green3 {
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #5ba831;
}
.page-profile .lp-grid-boxes-price .lp-text-dark-grey {
  font-size: 0.75rem;
}
.page-profile .lp-display-container {
  position: relative;
}
.page-profile .lp-display-bottomright {
  position: absolute;
  bottom: 0;
  right: 0;
}
.page-profile .lp-badge {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
}
.page-profile .lp-link-nodeco {
  color: var(--color-text-primary);
  text-decoration: none;
}
.page-profile .lp-link-nodeco:hover {
  text-decoration: underline;
}
@media (prefers-color-scheme: light) {
  .page-profile .lp-link-nodeco {
    color: #1a1a1a;
  }
}
@media (prefers-color-scheme: dark) {
  .page-profile .lp-link-nodeco {
    color: #ffffff;
  }
}
html[data-theme="light"] .page-profile .lp-link-nodeco {
  color: #1a1a1a;
}
html[data-theme="dark"] .page-profile .lp-link-nodeco {
  color: #ffffff;
}
@media (max-width: 768px) {
  .page-profile .lp-commercial-header {
    max-height: 200px;
  }
  .page-profile .lp-grid-boxes-container {
    height: 250px;
    grid-template-columns: 1fr 0.9fr 1.1fr;
    grid-template-rows: 2fr 0.5fr 1fr 0.5fr;
  }
  .page-profile .lp-grid-boxes-pic {
    width: 100% !important;
    grid-column: 1 / 4;
    grid-row: 1;
    height: 150px;
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .page-profile .lp-grid-boxes-pic img {
    transition: transform 0.4s ease-in-out;
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .page-profile .lp-grid-boxes-pic a:hover img {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .page-profile .lp-grid-boxes-title {
    grid-column: 1 / 3;
    grid-row: 2;
    padding: 3px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
  }
  .page-profile .lp-grid-boxes-subtitle {
    grid-column: 1 / 3;
    grid-row: 3;
    padding: 3px;
    font-size: 13px;
    -webkit-line-clamp: 2;
    line-height: 1.3;
  }
  .page-profile .lp-grid-boxes-bottom {
    grid-column: 1 / 3;
    grid-row: 4;
    padding: 3px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
  }
  .page-profile .lp-grid-boxes-price {
    grid-column: 3;
    grid-row: 3 / 5;
    line-height: normal;
    padding: 3px;
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .page-profile .lp-commercial-header {
    max-height: 150px;
  }
  .page-profile .follow-button .lp-button {
    padding: 8px 14px;
    font-size: 14px;
  }
  .page-profile .lp-grid-boxes-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
    min-height: auto;
  }
  .page-profile .lp-grid-boxes-pic {
    grid-column: 1;
    grid-row: 1;
    width: 100% !important;
    min-height: 200px;
  }
  .page-profile .lp-grid-boxes-title {
    grid-column: 1;
    grid-row: 2;
  }
  .page-profile .lp-grid-boxes-subtitle {
    grid-column: 1;
    grid-row: 3;
  }
  .page-profile .lp-grid-boxes-bottom {
    grid-column: 1;
    grid-row: 4;
  }
  .page-profile .lp-grid-boxes-searchsell {
    position: absolute;
    top: 8px;
    right: 8px;
  }
  .page-profile .lp-grid-boxes-price {
    grid-column: 1;
    grid-row: 5;
    align-items: flex-start;
    text-align: left;
    padding: 3px;
  }
}
