/* ========== 06-chat.css ========== */
/* Chat — iMessage Theme */

#screen-chat {
  background-color: #ffffff !important;
  background-image: none !important;
}

/* ============================================================
   HEADER
   ============================================================ */
.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: max(14px, env(safe-area-inset-top, 0px)) 16px 10px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  flex-shrink: 0;
  z-index: 20;
  min-height: auto;
  position: relative;
  overflow: visible;
}

.chat-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -10px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.50) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}

.chat-header .ch-back {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.chat-header .ch-back svg {
  width: 16px;
  height: 16px;
  stroke: #111;
  fill: none;
  stroke-width: 2.8;
}

.chat-header .ch-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
  cursor: pointer;
  margin-top: 0;
}

.chat-header .ch-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #e5e5ea;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
  transform: translateY(5px);
}

.chat-header .ch-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.chat-header .ch-name {
  font-size: 15px;
  font-weight: 600;
  color: #111 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  line-height: 1.2;
  padding: 5px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 5;
  margin-top: 0;
}

.chat-header .ch-name::after {
  content: ">";
  display: inline-block;
  margin-left: 4px;
  color: #8e8e93;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
}

.chat-header .ch-notes {
  font-size: 11px;
  color: #8e8e93;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
  max-width: 160px;
}

.chat-header .ch-edit {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.chat-header .ch-edit svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   MESSAGES CONTAINER
   ============================================================ */
.chat-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 0;
  display: flex;
  flex-direction: column;
  background: transparent;
}

/* ★ FIX: 增大底部间距,让最后一条消息不贴输入框 */
.chat-messages::after {
  content: "";
  display: block;
  height: 18px;
  flex-shrink: 0;
}

/* ============================================================
   TIME LABEL
   ============================================================ */
.msg-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 16px 0 6px;
  padding: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 510;
  color: #8A8A8E;
  line-height: 1.35;
  letter-spacing: 0;
}

.msg-time::before {
  content: "iMessage\4FE1\606F";
  display: block;
  font-weight: 510;
  color: #8A8A8E;
  font-size: 11px;
  text-align: center;
  width: 100%;
}

/* ============================================================
   MESSAGE ROW
   ============================================================ */
.msg-row {
  display: flex;
  gap: 8px;
  max-width: 85%;
  animation: msgIn .25s ease;
  margin-top: 3px;
  position: relative;
}

.msg-row.group-first,
.msg-row.group-solo {
  margin-top: 15px;
}

.chat-messages > .msg-row:first-child,
.msg-time + .msg-row,
.msg-system-center + .msg-row {
  margin-top: 12px;
}

.chat-messages > .msg-row.group-first:first-child,
.chat-messages > .msg-row.group-solo:first-child,
.msg-time + .msg-row.group-first,
.msg-time + .msg-row.group-solo,
.msg-system-center + .msg-row.group-first,
.msg-system-center + .msg-row.group-solo {
  margin-top: 12px;
}

.msg-row.sent {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.msg-row.received {
  align-self: flex-start;
}

/* ============================================================
   AVATAR
   ============================================================ */
.msg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e5ea;
  flex-shrink: 0;
  overflow: hidden;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
}

.msg-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.msg-row.group-first .msg-avatar,
.msg-row.group-middle .msg-avatar {
  visibility: hidden;
}

.msg-row.group-last .msg-avatar,
.msg-row.group-solo .msg-avatar {
  visibility: visible;
}

/* ============================================================
   BUBBLE BASE
   ============================================================ */
.msg-bubble {
  padding: 8px 14px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  line-height: 1.38;
  word-break: break-word;
  white-space: pre-wrap;
  cursor: pointer;
  transition: opacity .1s;
  position: relative;
  overflow: visible;
  box-shadow: none;
}

.msg-bubble:active {
  opacity: .7;
}

.msg-row.sent .msg-bubble {
  background: #A0A0A0;
  color: #ffffff;
}

.msg-row.received .msg-bubble {
  background: #E9E9EA;
  color: #000000;
}

/* ============================================================
   BUBBLE BORDER-RADIUS
   ============================================================ */
.msg-row.received.group-last .msg-bubble,
.msg-row.received.group-solo .msg-bubble,
.msg-row.received.group-first .msg-bubble,
.msg-row.received.group-middle .msg-bubble,
.msg-row.sent.group-last .msg-bubble,
.msg-row.sent.group-solo .msg-bubble,
.msg-row.sent.group-first .msg-bubble,
.msg-row.sent.group-middle .msg-bubble {
  border-radius: 20px;
}

.msg-bubble::after {
  content: none !important;
  display: none !important;
}

/* ============================================================
   VOICE BUBBLE
   ============================================================ */
.msg-bubble.voice {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-width: 120px;
  max-width: 240px;
  overflow: visible;
  padding: 10px 14px;
}

.msg-bubble.voice .voice-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.msg-bubble.voice .voice-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.msg-bubble.voice .voice-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.msg-bubble.voice .voice-wave span {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: currentColor;
  opacity: .82;
}

.voice-text {
  font-size: 13px;
  margin-top: 7px;
  padding-top: 7px;
  display: none;
  white-space: normal;
  word-break: break-word;
  line-height: 1.45;
}

.msg-row.received .voice-text {
  color: #2c2c2e;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.msg-row.sent .voice-text {
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.voice-text.show {
  display: block;
}

/* ============================================================
   STICKER BUBBLE
   ============================================================ */
.msg-bubble.sticker-msg {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible;
}

.msg-bubble.sticker-msg img {
  width: auto;
  max-width: 132px;
  max-height: 132px;
  object-fit: contain;
  display: block;
  background: transparent;
  border-radius: 0;
}

/* ============================================================
   IMAGE BUBBLE
   ============================================================ */
.msg-bubble.image-msg {
  padding: 0 !important;
  max-width: 220px;
  overflow: hidden;
  background: transparent !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px !important;
}

.msg-bubble.image-msg img {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

/* ============================================================
   SIM-IMAGE BUBBLE
   ============================================================ */
.msg-bubble.sim-image-msg {
  min-width: 160px;
  max-width: 220px;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  border-radius: 16px !important;
  overflow: hidden;
}

.sim-image-box {
  background: #f2f2f7;
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sim-image-box svg {
  width: 28px;
  height: 28px;
  stroke: #c7c7cc;
  fill: none;
  stroke-width: 1.3;
}

.sim-image-box .sim-desc {
  font-size: 12px;
  color: #8e8e93;
  line-height: 1.4;
  word-break: break-word;
}

.msg-row.sent .sim-image-box,
.msg-row.received .sim-image-box {
  background: #f2f2f7;
}

.msg-row.sent .sim-image-box svg,
.msg-row.received .sim-image-box svg {
  stroke: #c7c7cc;
}

.msg-row.sent .sim-image-box .sim-desc,
.msg-row.received .sim-image-box .sim-desc {
  color: #8e8e93;
}

/* ============================================================
   TYPING INDICATOR
   ============================================================ */
#typingInd .msg-bubble {
  background: rgba(242, 242, 247, 0.5) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 16px !important;
  padding: 6px 14px !important;
  box-shadow: none !important;
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 6px 4px;
}

.typing-indicator span {
  width: 5px;
  height: 5px;
  background: #8e8e93;
  border-radius: 50%;
  animation: typing 1.2s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: .2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: .4s;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes typing {
  0%, 60%, 100% { opacity: .3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   INPUT BAR
   ============================================================ */
.chat-input-bar {
  display: flex;
  align-items: flex-end;
  padding: 2px 10px 22px;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 22px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
  gap: 6px;
  flex-shrink: 0;
  position: relative;
  z-index: 30;
  margin-top: 0; /* ★ FIX: 从 -2px 改为 0,不再吞掉间距 */
}

.chat-input-bar::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: -1;
}

.chat-btn {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s;
  padding: 0;
  color: #111;
  font-weight: 800;
}

.chat-btn:active {
  background: rgba(255, 255, 255, 0.5);
}

.chat-btn svg {
  width: 16px;
  height: 16px;
  stroke: #111;
  fill: none;
  stroke-width: 2;
}

.chat-btn.respond-btn {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.chat-btn.respond-btn:active {
  background: rgba(255, 255, 255, 0.5);
}

.chat-btn.respond-btn.loading svg {
  display: none;
}

.chat-btn.respond-btn.loading::after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, .1);
  border-top-color: #A0A0A0;
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.chat-input-wrap {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.chat-input-wrap textarea {
  flex: 1;
  border: none;
  outline: none;
  padding: 5px 14px;
  font-size: 13.5px;
  resize: none;
  max-height: 100px;
  line-height: 1.4;
  background: transparent;
  font-family: inherit;
  color: #111;
  position: relative;
  z-index: 2;
}

.chat-input-wrap textarea::placeholder {
  color: transparent !important;
  opacity: 0 !important;
}

.chat-input-wrap::after {
  content: "iMessage\4FE1\606F";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #8A8A8E;
  font-size: 13.5px;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}

.chat-input-wrap:has(textarea:focus)::after,
.chat-input-wrap:has(textarea:not(:placeholder-shown))::after {
  display: none;
}

.chat-send-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #c7c7cc;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 0 1px 0;
  padding: 0;
  transition: background .15s;
}

.chat-send-btn:active {
  background: #a0a0a5;
}

.chat-send-btn svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.6;
  display: block;
}

/* ============================================================
   TRANSLATION INLINE
   ============================================================ */
.msg-translation {
  display: none;
  margin-top: 6px;
  padding-top: 6px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.msg-row.received .msg-translation {
  color: #8e8e93;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.msg-row.sent .msg-translation {
  color: rgba(255, 255, 255, .6);
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.msg-translation.show {
  display: block;
}

/* ============================================================
   QUOTE BUBBLE — user quoting a past message
   ============================================================ */
.msg-quote {
  display: block;
  margin: -2px -14px 8px;
  padding: 7px 12px 8px;
  border-left: 3px solid #a0a0a8;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 14px 14px 0 0;
  cursor: pointer;
  transition: background .12s;
}

.msg-quote:active {
  background: rgba(0, 0, 0, 0.08);
}

.msg-quote-sender {
  font-size: 11px;
  font-weight: 600;
  color: #6e6e73;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msg-quote-text {
  font-size: 12px;
  color: #8e8e93;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: pre-wrap;
}

.msg-quote-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.07);
  margin: 7px -14px 8px;
}

/* Sent bubble quote — slightly lighter treatment */
.msg-row.sent .msg-quote {
  border-left-color: #c7c7cc;
  background: rgba(255, 255, 255, 0.15);
}

.msg-row.sent .msg-quote:active {
  background: rgba(255, 255, 255, 0.25);
}

.msg-row.sent .msg-quote-sender {
  color: rgba(255, 255, 255, 0.7);
}

.msg-row.sent .msg-quote-text {
  color: rgba(255, 255, 255, 0.55);
}

.msg-row.sent .msg-quote-divider {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   SYSTEM CENTER MESSAGES
   ============================================================ */
.msg-system-center {
  align-self: center;
  text-align: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  font-size: 11px;
  color: #b0b0b5;
  font-weight: 500;
  line-height: 1.4;
  margin: 8px auto;
  cursor: pointer;
  max-width: 80%;
  animation: msgIn .25s ease;
}

.msg-system-center:active {
  background: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   CLEAR BUTTON STICKY
   ============================================================ */
.clear-btn-sticky {
  z-index: 10;
}

.clear-btn-sticky .form-btn.danger {
  box-shadow: 0 -2px 12px rgba(255, 59, 48, 0.15);
  transition: opacity 0.2s, transform 0.1s;
}

.clear-btn-sticky .form-btn.danger:active {
  opacity: 0.85;
  transform: scale(0.98);
}

/* ============================================================
   HEART VOICE — Affection progress bar
   ============================================================ */
.hv-affection-bar-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.hv-affection-track {
  flex: 1;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.hv-affection-fill {
  height: 100%;
  background: #a0a0a5;
  border-radius: 3px;
  transition: width .3s ease;
}

.hv-affection-num {
  font-size: 14px;
  font-weight: 700;
  color: #3a3a3c;
  min-width: 36px;
  text-align: right;
}

/* ============================================================
   CHAT MENU
   ============================================================ */
div.chat-menu-overlay,
#chatMenuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease;
}
div.chat-menu-overlay.show,
#chatMenuOverlay.show {
  opacity: 1;
  pointer-events: auto;
}

div.chat-menu,
#chatMenu {
  all: initial;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  position: fixed;
  top: max(58px, calc(env(safe-area-inset-top, 0px) + 54px));
  right: 14px;
  left: auto;
  bottom: auto;
  z-index: 910;
  width: auto;
  min-width: 140px;
  max-width: 220px;
  height: auto;
  max-height: 80vh;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12),
              0 0 0 0.5px rgba(0, 0, 0, 0.05);
  padding: 6px 0;
  margin: 0;
  border: none;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.92) translateY(-4px);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
div.chat-menu.show,
#chatMenu.show {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

#chatMenu .chat-menu-header,
#chatMenu .chat-menu-close {
  display: none;
}

div.chat-menu > .chat-menu-item,
#chatMenu > .chat-menu-item {
  all: initial;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  background: transparent;
  border: none;
  white-space: nowrap;
  line-height: 1.3;
  box-sizing: border-box;
  transition: background .1s ease;
  -webkit-tap-highlight-color: transparent;
}

div.chat-menu > .chat-menu-item:active,
#chatMenu > .chat-menu-item:active {
  background: #f2f2f7;
}

div.chat-menu > .chat-menu-item + .chat-menu-item,
#chatMenu > .chat-menu-item + .chat-menu-item {
  border-top: 0.5px solid rgba(0, 0, 0, 0.06);
}

div.chat-menu > .chat-menu-item > svg,
#chatMenu > .chat-menu-item > svg {
  width: 18px;
  height: 18px;
  stroke: #8e8e93;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: block;
}

div.chat-menu > .chat-menu-item > span,
#chatMenu > .chat-menu-item > span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1d1d1f;
  line-height: 1.3;
}
