/* prelogin.css - Vor-Login-Bereich (Landing-/Login-Seite), seit 2026-08-18.
 *
 * Design-Tokens sind bewusst dieselben Literale wie in florio.css /
 * pharmacist.css (dort gibt es keine CSS-Variablen, deshalb auch hier nicht):
 *   Kopfzeile   linear-gradient(135deg, #2BBBAD 0%, #1F9D8F 100%), 60px
 *   Markenrot   #922224 (Hover #7a1b1d), Karten weiss, Radius 12px,
 *   Eingaben    Radius 6px, Rahmen #d1d5db, Fokus #2BBBAD + Ring
 *   Grautoene   #2d3748 / #374151 / #6b7280 / #9ca3af, Rahmen #e5e7eb
 *   Seite       #f5f7fa, Systemschrift
 *
 * Diese Datei wird in sm/index.cfm NUR ohne Session geladen, NACH style.css
 * und css/login_style.css. Die beiden alten Dateien bleiben bestehen, weil
 * view/login/get_login_details.cfm (Zugangsdaten vergessen) noch ihre Klassen
 * benutzt. Alle Selektoren hier tragen deshalb das Praefix "lp-" und genug
 * Spezifitaet, um die alten Element-Regeln (input[type=text], body, a) zu
 * uebersteuern; bei gleicher Spezifitaet gewinnt diese Datei durch die
 * Ladereihenfolge.
 */

html {
	min-width: 0;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-width: 0;
	background-color: #f5f7fa;
	color: #374151;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.55;
}

/* Sticky Footer: Kopf/Inhalt/Fuss als Spalte ueber die volle Fensterhoehe,
   der Inhalt waechst und schiebt die Fusszeile ans untere Ende. Wichtig auf
   der Apotheken-Liste, wenn die Suche nur wenige Treffer zeigt. */
.lp-shell {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.lp-shell > main {
	flex: 1 0 auto;
}

.lp-shell * {
	box-sizing: border-box;
}

.lp-shell a:focus-visible,
.lp-shell button:focus-visible,
.lp-shell input:focus-visible {
	outline: 2px solid #2BBBAD;
	outline-offset: 2px;
}

/* ---- Kopfzeile: drei Zonen (Logo+Badge | Sprachwahl | Weblink) ---------- */
.lp-header {
	height: 60px;
	background: linear-gradient(135deg, #2BBBAD 0%, #1F9D8F 100%);
	color: #fff;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 14px;
	padding: 0 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
	/* Immer sichtbar; gescrollt wird nur der Inhalt darunter. */
	position: sticky;
	top: 0;
	z-index: 100;
}

.lp-header-left {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.lp-header-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 14px;
}

.lp-header-sep {
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	user-select: none;
}

/* Social-Links-Zeile (smart-medication.eu | LinkedIn); auf der Apotheken-Seite
   in der Kopf-Mitte, auf der Landing-Page rechts. */
.lp-header-social {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

/* Deutlich sichtbarer "Zur Anmeldung"-Knopf im Kopf der Apotheken-Liste. */
.lp-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 20px;
	padding: 7px 16px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
}

.lp-header-cta:hover {
	background: rgba(255, 255, 255, 0.15);
}

.lp-header-cta svg {
	flex-shrink: 0;
}

.lp-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.2px;
	min-width: 0;
	color: #fff;
}

.lp-logo svg {
	flex-shrink: 0;
}

.lp-badge-test {
	background: #ffd54d;
	color: #5b3a00;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	padding: 5px 12px;
	border-radius: 12px;
	white-space: nowrap;
	flex-shrink: 0;
}

.lp-lang {
	display: inline-flex;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 20px;
	overflow: hidden;
	flex-shrink: 0;
}

.lp-lang a {
	padding: 5px 12px;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.lp-lang a.lp-lang-active {
	background: #fff;
	color: #1F9D8F;
}

.lp-weblink {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 14px;
	text-decoration: underline;
	text-underline-offset: 3px;
	white-space: nowrap;
}

.lp-weblink:hover {
	color: #fff;
}

.lp-weblink svg {
	flex-shrink: 0;
	opacity: 0.85;
}

/* ---- Seitenraster ------------------------------------------------------- */
.lp-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
	text-align: left;
}

.lp-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 48px;
	align-items: start;
	padding: 56px 0 40px;
}

/* Weisser Inhalts-Kasten wie nach dem Login (.content-container): der
   Hero-Textblock (linke Spalte - das einzige <div> direkt unter .lp-hero, die
   Login-Karte ist ein <form>) und der Aktuelles-Abschnitt stehen auf Weiss,
   damit grauer Text nicht auf grauem Grund liegt. */
.lp-hero > div {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	padding: 28px;
}

.lp-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #1F9D8F;
	margin: 0 0 14px;
}

.lp-eyebrow::before {
	content: "";
	width: 22px;
	height: 3px;
	background: #2BBBAD;
	border-radius: 2px;
}

h1.lp-title {
	/* Keine eigene max-width: gleiche Breite wie Absatz und Saeulen-Boxen
	   (Begrenzung kommt aus .lp-page mit 1100px). */
	margin: 0 0 16px;
	font-size: clamp(26px, 3.4vw, 34px);
	line-height: 1.2;
	font-weight: 700;
	color: #2d3748;
}

.lp-lede {
	/* Keine eigene max-width: der Absatz soll dieselbe Breite wie die drei
	   Saeulen-Boxen darunter nutzen (beide sind Kinder der linken Hero-Spalte,
	   die durch .lp-page auf 1100px ohnehin begrenzt ist). */
	margin: 0;
	font-size: 16px;
	color: #374151;
}

.lp-lede b {
	color: #2d3748;
}

.lp-lede a {
	color: #922224;
}

/* ---- Drei Saeulen ------------------------------------------------------- */
.lp-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 32px;
}

.lp-pillar {
	/* Zartes Tuerkis (Akzentfarbe): klar abgesetzt vom weissen Kasten UND vom
	   grauen Seitenhintergrund; besserer Kontrast fuer den Text. */
	background: #e9f6f3;
	border: 1px solid #c5e6df;
	border-radius: 12px;
	padding: 16px 18px;
}

.lp-pillar-head {
	display: flex;
	align-items: center;
	gap: 9px;
	font-weight: 600;
	color: #2d3748;
	margin-bottom: 6px;
}

.lp-pillar-head svg {
	color: #922224;
	flex-shrink: 0;
}

.lp-pillar p {
	margin: 0;
	font-size: 13.5px;
	color: #4b5563;
}

/* ---- Login-Karte -------------------------------------------------------- */
.lp-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lp-card-brand {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid #e5e7eb;
	font-size: 17px;
	font-weight: 700;
	white-space: nowrap;
}

.lp-card-brand img {
	height: 26px;
	width: auto;
	flex-shrink: 0;
}

.lp-cb-smart { color: #6B6969; }
.lp-cb-med   { color: #922224; }
.lp-cb-prod  { color: #202020; }

h2.lp-card-title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 600;
	color: #2d3748;
}

/* Kopfzeile der Login-Karte: Titel/Untertitel links, Wiedererkennungs-
   Maskottchen (Splash.png) rechts. */
.lp-login-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.lp-login-head .lp-card-title {
	margin: 0 0 4px;
}

.lp-login-head .lp-card-sub {
	margin: 0;
}

.lp-login-mascot {
	height: 68px;
	width: auto;
	flex-shrink: 0;
}

.lp-card-sub {
	margin: 0 0 18px;
	font-size: 14px;
	color: #6b7280;
}

.lp-field {
	margin-bottom: 14px;
}

.lp-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 5px;
}

.lp-field .lp-input {
	width: 100%;
	height: auto;
	padding: 9px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	color: #1f2937;
	background-color: #fff;
	margin: 0;
}

.lp-field select.lp-input {
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 40px;
	/* Eigener Pfeil rechtsbuendig. Ueberschreibt die alte select-Regel in
	   style.css (Pfeilbild fest bei 210px, background-color #EFF7FF !important) -
	   deshalb hier background-color mit !important zuruecksetzen. */
	background-color: #fff !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 14px;
}

.lp-field .lp-input:focus {
	border-color: #2BBBAD;
	box-shadow: 0 0 0 3px rgba(43, 187, 173, 0.1);
	outline: none;
}

/* Fehlermeldung des Logins; role="alert" im Markup */
.lp-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	border-radius: 6px;
	padding: 9px 12px;
	font-size: 13.5px;
	margin-bottom: 14px;
}

.lp-error a {
	color: #b91c1c;
	font-weight: 600;
}

button.lp-btn-primary {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 10px 18px;
	background: #922224;
	color: #fff;
	border: 1px solid #922224;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
}

button.lp-btn-primary:hover {
	background: #7a1b1d;
	border-color: #7a1b1d;
}

button.lp-btn-primary:active {
	transform: translateY(1px);
}

/* Sende-Knopf der Vergessen-Seite: nur inhaltsbreit und zentriert (Container
   #trButTwo), deaktiviert bis alle Pflichtfelder gueltig sind - Logik in
   get_login_details.js. */
.lp-btn-auto {
	width: auto;
}

button.lp-btn-primary:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

button.lp-btn-primary:disabled:hover {
	background: #922224;
	border-color: #922224;
}

#trButTwo {
	text-align: center;
}

.lp-field .lp-input.lp-invalid {
	border-color: #ef4444;
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.lp-links {
	margin: 14px 0 0;
	font-size: 13.5px;
	text-align: center;
}

.lp-links a {
	color: #922224;
	text-decoration: none;
}

.lp-links a:hover {
	text-decoration: underline;
}

.lp-note {
	margin: 16px 0 0;
	padding-top: 14px;
	border-top: 1px solid #e5e7eb;
	font-size: 12.5px;
	color: #9ca3af;
}

.lp-note a {
	color: inherit;
}

/* ---- Apotheken-Verzeichnis ---------------------------------------------- */
.lp-directory {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	padding: 20px 25px;
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 20px;
}

.lp-dir-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(43, 187, 173, 0.12);
	color: #1F9D8F;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.lp-dir-text {
	flex: 1;
	min-width: 240px;
}

.lp-dir-text h2 {
	margin: 0 0 2px;
	font-size: 16px;
	font-weight: 600;
	color: #2d3748;
}

.lp-dir-text p {
	margin: 0;
	font-size: 13.5px;
	color: #6b7280;
}

a.lp-btn-outline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	white-space: nowrap;
}

a.lp-btn-outline:hover {
	background: #f9fafb;
	border-color: #922224;
	color: #922224;
}

/* ---- Aktuelles & Informationen ------------------------------------------ */
.lp-section {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	padding: 28px;
	margin-bottom: 20px;
}

.lp-section-head {
	margin-bottom: 18px;
}

.lp-section-head h2 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: #2d3748;
}

.lp-section-head p {
	margin: 4px 0 0;
	font-size: 14px;
	color: #6b7280;
}

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

a.lp-news-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: #e9f6f3;
	border: 1px solid #c5e6df;
	border-radius: 12px;
	padding: 18px 20px;
	text-decoration: none;
	color: #374151;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

a.lp-news-card:hover {
	border-color: #2BBBAD;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.lp-news-kind {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1F9D8F;
}

.lp-news-kind svg {
	flex-shrink: 0;
}

.lp-news-card h3 {
	margin: 0;
	font-size: 15.5px;
	font-weight: 600;
	color: #2d3748;
}

.lp-news-card p {
	margin: 0;
	font-size: 13.5px;
	color: #4b5563;
}

.lp-news-more {
	margin-top: auto;
	padding-top: 6px;
	font-size: 13px;
	font-weight: 600;
	color: #922224;
}

/* ---- Support-Leiste ------------------------------------------------------ */
.lp-support {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	padding: 20px 25px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 36px;
	margin-bottom: 48px;
}

.lp-support-title {
	font-weight: 600;
	color: #2d3748;
}

a.lp-support-item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	color: #374151;
	text-decoration: none;
	white-space: nowrap;
}

a.lp-support-item svg {
	color: #1F9D8F;
	flex-shrink: 0;
}

a.lp-support-item:hover {
	color: #922224;
}

/* ---- Fusszeile ----------------------------------------------------------- */
.lp-footer {
	border-top: 1px solid #e5e7eb;
	background: #ffffff;
	padding: 20px 24px;
	font-size: 13px;
	color: #6b7280;
}

.lp-footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 28px;
	justify-content: space-between;
	text-align: left;
}

.lp-footer a {
	color: #6b7280;
	text-decoration: none;
}

.lp-footer a:hover {
	color: #922224;
	text-decoration: underline;
}

.lp-footer-links {
	display: flex;
	gap: 20px;
}

.lp-footer-links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* ---- Hinweis-/Ergebnisbox (Zugangsdaten vergessen) -----------------------
 * get_login_details.cfm gibt Ergebnismeldungen (gefunden / gesendet / nicht
 * gefunden) in dieser Box aus. Bewusst neutral gehalten, weil derselbe
 * Klassenname sowohl Bestaetigungen als auch Fehlhinweise traegt. */
.lp-notice {
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	color: #374151;
	border-radius: 6px;
	padding: 10px 12px;
	font-size: 13.5px;
	margin-bottom: 16px;
}

/* ---- Apotheken-Verzeichnis (oeffentliche Seite /apotheken.cfm) ------------
 * Eigenstaendige oeffentliche Seite; uebernimmt Aufbau/Layout der
 * Apothekenliste hinter dem Login (scandoc-table), aber im Vor-Login-Rahmen
 * (prelogin.css statt florio.css). Sortieren/Suchen ueber die geteilte
 * resources/js/table-filter-sort.js (TableManager + sortTable). */
.lp-dirpage {
	/* Volle Breite (nicht auf .lp-page-1100px begrenzt): die Tabelle mit
	   Kontaktdaten und Oeffnungszeiten braucht Platz, sonst laufen lange
	   Weblinks/E-Mails in die Nachbarspalte. */
	max-width: none;
	padding: 32px 24px 48px;
}

/* Weisser Inhalts-Kasten fuer die Apotheken-Liste (wie .content-container nach
   dem Login): Titel, Suche, Zaehler und Tabelle stehen darin auf Weiss. */
.lp-dir-panel {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	padding: 28px;
}

.lp-dirpage h1 {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 700;
	color: #2d3748;
}

.lp-dirpage .lp-dir-lead {
	margin: 0 0 22px;
	font-size: 14px;
	color: #6b7280;
}

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

.lp-search {
	width: 280px;
	max-width: 100%;
	padding: 9px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	color: #1f2937;
	background: #fff;
}

.lp-search:focus {
	border-color: #2BBBAD;
	box-shadow: 0 0 0 3px rgba(43, 187, 173, 0.1);
	outline: none;
}

.lp-count {
	font-size: 13px;
	color: #6b7280;
}

.lp-table-wrap {
	/* Nur horizontales Scrollen; der weisse Kasten kommt jetzt von .lp-dir-panel. */
	overflow-x: auto;
}

.lp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
}

.lp-table thead th {
	background: #f3f4f6;
	text-align: left;
	padding: 11px 14px;
	font-weight: 600;
	color: #374151;
	border-bottom: 1px solid #e5e7eb;
	white-space: nowrap;
}

.lp-table thead th.lp-th-sort {
	cursor: pointer;
}

.lp-table .sort-icon {
	color: #9ca3af;
	font-size: 11px;
}

.lp-table tbody td {
	padding: 12px 14px;
	border-bottom: 1px solid #e5e7eb;
	vertical-align: top;
	color: #374151;
}

.lp-table tbody tr:last-child td {
	border-bottom: none;
}

.lp-table tbody tr:hover {
	background: #f9fafb;
}

.lp-ph-logo {
	max-height: 46px;
	max-width: 180px;
}

.lp-ph-name {
	font-weight: 600;
	color: #922224;
	margin-bottom: 3px;
}

.lp-ph-sub {
	color: #6b7280;
	font-size: 12.5px;
}

.lp-ph-plz {
	font-weight: 600;
}

.lp-kv {
	margin-top: 4px;
	line-height: 1.5;
}

.lp-kv-label {
	display: inline-block;
	width: 72px;
	vertical-align: top;
	color: #6b7280;
}

.lp-kv-val {
	display: inline-block;
	vertical-align: top;
	max-width: 260px;
	/* Lange Weblinks/E-Mails (ein Token ohne Leerzeichen) umbrechen, damit sie
	   nicht aus der Zelle in die Oeffnungszeiten-Spalte laufen. */
	overflow-wrap: anywhere;
	word-break: break-word;
}

a.lp-inline {
	color: #922224;
	text-decoration: none;
}

a.lp-inline:hover {
	text-decoration: underline;
}

.lp-no-data {
	text-align: center;
	color: #6b7280;
	padding: 26px;
}

/* ---- Responsiv ------------------------------------------------------------ */
@media (max-width: 900px) {
	.lp-hero {
		grid-template-columns: 1fr;
		gap: 32px;
		padding-top: 36px;
	}

	.lp-hero .lp-card {
		order: -1;
		max-width: 420px;
	}

	.lp-pillars,
	.lp-news-grid {
		grid-template-columns: 1fr;
	}

	.lp-logo span {
		font-size: 15px;
	}

	.lp-directory {
		flex-wrap: wrap;
	}
}

@media (max-width: 700px) {
	/* Nur die externen Social-Links (target=_blank) ausblenden - der interne
	   "Zur Anmeldung"-Link (Apotheken-Seite, ohne target) bleibt erreichbar. */
	.lp-weblink[target="_blank"],
	.lp-header-sep {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	a.lp-news-card {
		transition: none;
	}
}

/* ============================================================
   Sendungsverfolgung (view/login/order_tracking.cfm, seit 2026-08-19).
   Tracking-Panel prominent oben; darunter die Landing-Abschnitte.
   Der Hero hat hier keine Login-Karte -> lp-hero-solo einspaltig.
   ============================================================ */
.lp-hero-solo {
	grid-template-columns: 1fr;
}

.lp-track {
	padding-top: 56px;
}

.lp-track-panel {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-top: 3px solid #2BBBAD;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	padding: 28px 32px;
}

.lp-track-title {
	margin: 0 0 20px;
	font-size: 1.35rem;
	font-weight: 700;
	color: #922224;
}

.lp-track-row {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	align-items: baseline;
	margin-bottom: 22px;
}

.lp-track-label {
	font-weight: 700;
	color: #1f2937;
}

.lp-track-value {
	color: #111827;
}

.lp-track-status {
	margin-top: 8px;
}

.lp-track-status .lp-track-label {
	display: block;
	margin-bottom: 12px;
}

.lp-track-status-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lp-track-status-item {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid #f0f2f5;
}

.lp-track-status-item:last-child {
	border-bottom: 0;
}

.lp-track-status-dot {
	flex: 0 0 auto;
	width: 9px;
	height: 9px;
	margin-top: 1px;
	border-radius: 50%;
	background: #2BBBAD;
}

.lp-track-status-name {
	flex: 1 1 auto;
	font-weight: 600;
	color: #1f2937;
}

.lp-track-status-date {
	flex: 0 0 auto;
	color: #6b7280;
	font-size: 0.92rem;
	font-variant-numeric: tabular-nums;
}

.lp-track-info {
	margin: 26px 0 4px;
	color: #4b5563;
	line-height: 1.5;
}

.lp-track-ediary {
	margin: 0 0 4px;
}

.lp-track-ediary a {
	color: #922224;
	font-weight: 700;
	text-decoration: none;
}

.lp-track-ediary a:hover {
	text-decoration: underline;
}

.lp-track-noinfo {
	margin: 0;
	padding: 8px 0;
	color: #4b5563;
	line-height: 1.5;
}

@media (max-width: 700px) {
	.lp-track {
		padding-top: 32px;
	}
	.lp-track-panel {
		padding: 22px 18px;
	}
	.lp-track-status-item {
		flex-wrap: wrap;
	}
	.lp-track-status-date {
		flex-basis: 100%;
		margin-left: 21px;
	}
}
