/* =========================================================
   鉴黄师 品牌站 — 新闻中心 NEWS 专属样式
   （由 pages.css 按页面拆分；公共样式见 style.css）
   ========================================================= */

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

.news-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--ease);
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-2);
  box-shadow: var(--shadow);
}

.news-card .pic {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.news-card:hover .pic img {
  transform: scale(1.05);
}

.news-card .body {
  padding: 18px;
}

.news-card .body h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.news-card .body p {
  color: var(--text-dim);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card .foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-mute);
}

.news-card .foot .read {
  color: var(--gold);
}

.news-page-body .site-header {
  background: #141519;
  border-bottom-color: rgba(255, 255, 255, .06);
  backdrop-filter: none;
}

.news-page {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.news-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1220px;
  pointer-events: none;
  opacity: .75;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .7) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(236, 177, 82, .7) 0 1px, transparent 1.6px);
  background-position: 0 0, 33px 57px;
  background-size: 253px 211px, 401px 307px;
}

.news-showcase {
  position: relative;
  z-index: 1;
  padding: 32px;
}

.news-container {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}

.news-title {
  font-size: 42px;
  line-height: 1.35;
  font-weight: 800;
  color: #f4f4f5;
  letter-spacing: 0;
  margin-bottom: 48px;
}

.news-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0 52px;
}

.news-tab {
  width: 100px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .02);
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1;
  transition: color var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.news-tab:hover,
.news-tab.active {
  color: #fff4d6;
  border-color: #d7a33d;
  background: linear-gradient(180deg, rgba(119, 88, 8, .08), rgba(129, 96, 12, .74));
  box-shadow: inset 0 3px 4px rgba(255, 203, 73, .16), 0 0 24px rgba(231, 169, 50, .24);
}

.brand-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px 24px;
}

.news-page-group[hidden] {
  display: none !important;
}

.news-mobile-pages {
  display: none;
}

.news-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.news-pager :is(a, button) {
  display: grid;
  min-width: 34px;
  height: 34px;
  place-items: center;
  padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text-2);
  font-size: 13px;
}

.news-pager :is(a, button).active {
  border-color: transparent;
  background: var(--gold-grad);
  color: #1a1206;
  font-weight: 700;
}

.news-pager :is(a, button):hover:not(.active):not([data-news-prev]):not([data-news-next]) {
  border: 1px solid #F7C96B;
  color: #F7C96B;
}

.news-pager :is(a, button)[data-news-prev],
.news-pager :is(a, button)[data-news-next] {
  width: 34px;
  min-width: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
}

.news-pager :is(a, button)[data-news-prev]:hover,
.news-pager :is(a, button)[data-news-next]:hover {
  border: 0;
  background: transparent;
  color: #F7C96B;
}

.brand-news-card {
  min-width: 0;
}

.brand-news-trigger {
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 12px;
  color: inherit;
}

.brand-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #74797f;
  font-size: 14px;
}

.brand-breadcrumb a { color: #d9aa4b; }

.news-detail { position: relative; z-index: 1; padding: 38px 24px 90px; }
.news-detail-container { max-width: 920px; }
.news-detail-header { margin-top: 30px; }
.news-detail-header h1 { color: #f4f4f5; font-size: clamp(30px, 5vw, 48px); line-height: 1.25; }
.news-detail-header > p { margin-top: 20px; color: #a2a4a8; font-size: 18px; line-height: 1.8; }
.news-detail-meta { display: flex; gap: 18px; margin-top: 16px; color: #74797f; font-size: 14px; }
.news-detail-cover { margin-top: 34px; overflow: hidden; border-radius: 16px; background: #0f1010; }
.news-detail-cover img { width: 100%; max-height: 560px; object-fit: cover; }
.news-detail-body { margin-top: 36px; color: #d0d2d5; font-size: 17px; line-height: 2; }
.news-detail-body p + p { margin-top: 22px; }
.news-back-link { display: inline-flex; margin-top: 38px; color: #d9aa4b; }

@media (max-width: 640px) {
  .news-detail { padding: 28px 16px 64px; }
  .news-detail-header > p, .news-detail-body { font-size: 16px; }
}

.brand-news-cover {
  display: block;
  aspect-ratio: 402 / 227;
  overflow: hidden;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #0f1010;
}

.brand-news-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.brand-news-info {
  display: block;
  padding-top: 16px;
}

.brand-news-info h2 {
  display: block;
  overflow: hidden;
  color: #e1e2e4;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.brand-news-info>h3 {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 12px;
  margin-bottom: 0;
  color: #a2a4a8;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.brand-news-info em {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #74797f;
  font-size: 15px;
  font-style: normal;
  line-height: 1;
}

.brand-news-info svg,
.mobile-news-trigger svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.brand-news-trigger:hover .brand-news-cover img {
  transform: scale(1.035);
  filter: brightness(1.08);
}

.brand-news-trigger:hover .brand-news-info h2 {
  color: #fff2d1;
}

.news-mobile-hero,
.mobile-news-stack {
  display: none;
}

.news-footer {
  position: relative;
  z-index: 1;
  background: #141519;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.news-footer-inner {
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
}

.news-footer-main {
  display: grid;
  grid-template-columns: 432px repeat(3, 216px);
  gap: 24px;
  padding: 24px 0 30px;
}

.news-footer-brand .brand {
  display: inline-flex;
}

.news-footer-brand .logo-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  border: 1px solid rgba(232, 163, 61, .78);
  border-radius: 4px;
  padding: 1px 5px;
  transform: translateY(-6px);
}

.news-age {
  display: none;
}

.news-footer-brand p {
  max-width: 360px;
  margin-top: 12px;
  color: #8d9299;
  font-size: 13px;
  line-height: 1.85;
}

.news-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.news-footer-social a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, .34);
  color: #8f949a;
}

.news-footer-social a:hover {
  color: #1a1206;
  background: var(--gold);
}

.news-footer-social svg {
  width: 16px;
  height: 16px;
}

.news-footer-col {
  padding-top: 16px;
}

.news-footer-col h2 {
  position: relative;
  margin-bottom: 22px;
  padding-left: 12px;
  color: #f4f5f6;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.news-footer-col h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  border-radius: 1px;
  background: #d8a241;
}

.news-footer-col a {
  display: block;
  color: #72777e;
  font-size: 14px;
  line-height: 1.4;
}

.news-footer-col a+a {
  margin-top: 14px;
}

.news-footer-col a:hover,
.news-footer-links a:hover {
  color: var(--gold);
}

.news-footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  color: #787e85;
  font-size: 14px;
}

.news-footer-links span {
  color: #a4a8ad;
}

.news-footer-links strong {
  margin-left: auto;
  padding: 7px 18px;
  border: 1px solid rgba(235, 69, 69, .6);
  border-radius: 999px;
  color: #ff4e4e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.news-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  color: #70757b;
  font-size: 13px;
}

.news-modal-open {
  overflow: hidden;
}

.news-modal[hidden] {
  display: none;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.news-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .76);
  backdrop-filter: blur(4px);
}

.news-modal-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(600px, calc(100vw - 42px));
  height: min(760px, calc(100vh - 48px));
  max-height: calc(100vh - 48px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  background: #111313;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .68);
}

.news-modal-body::-webkit-scrollbar {
  width: 4px;
}

.news-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
  border-radius: 10px;
}

.news-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(0, 0, 0, .38);
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.news-modal-media {
  position: relative;
  flex-shrink: 0;
  height: 383px;
  overflow: hidden;
  background: #050505;
}

.news-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-modal-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(17, 19, 19, .72) 79%, #111313 100%);
}

.news-modal-media h2 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.news-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 24px 44px;
}

.news-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #8c9095;
  font-size: 16px;
  line-height: 1.35;
}

.news-modal-content {
  padding-top: 28px;
}

.news-modal-content p {
  color: #eeeeef;
  font-size: 18px;
  line-height: 1.82;
  letter-spacing: 0;
}

.news-modal-content p+p {
  margin-top: 26px;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .news-page-body .site-header {
    background: #15161b;
  }

  .news-page {
    background: #010606;
  }

  .news-page::before {
    display: none;
  }

  .news-mobile-hero {
    display: block;
    width: 100%;
    aspect-ratio: 375 / 211;
    overflow: hidden;
    background: #080808;
  }

  .news-mobile-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .news-showcase {
    padding: 16px 0 52px;
  }

  .news-title,
  .news-desktop-pages {
    display: none;
  }

  .news-mobile-pages {
    display: block;
  }

  .news-container {
    max-width: 375px;
    padding: 0 16px;
  }

  .news-footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news-tabs {
    gap: 12px;
    margin: 0 -16px 8px;
    padding: 0 16px 2px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .news-tabs::-webkit-scrollbar {
    display: none;
  }

  .news-tab {
    width: auto;
    min-width: 52px;
    height: 28px;
    flex: 0 0 auto;
    padding: 0 14px;
    font-size: 12px;
  }

  .news-tab:not(:first-child) {
    min-width: 76px;
  }

  .mobile-news-stack {
    display: block;
  }

  .news-pager {
    margin-top: 22px;
  }

  .mobile-news-feature {
    margin-top: 8px;
  }

  .mobile-news-trigger,
  .mobile-news-row :is(a, button),
  .mobile-news-more,
  .mobile-rank-panel li button {
    width: 100%;
    text-align: left;
    color: inherit;
  }

  .mobile-news-trigger {
    display: block;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    background: #111618;
  }

  .mobile-news-trigger img {
    width: 100%;
    aspect-ratio: 320 / 180;
    object-fit: cover;
    border-radius: 8px;
    background: #272b2d;
  }

  .mobile-news-trigger strong {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 14px;
    color: #f1f2f3;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 800;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-news-trigger h3 {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 0;
    color: #9ca1a6;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-news-trigger em {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: #777c82;
    font-size: 11px;
    font-style: normal;
  }

  .mobile-news-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
  }

  .mobile-news-row :is(a, button) {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 98px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    background: #111618;
  }

  .mobile-news-row img {
    width: 132px;
    height: 74px;
    object-fit: cover;
    border-radius: 6px;
    background: #aeb1b2;
  }

  .mobile-news-row strong {
    display: -webkit-box;
    overflow: hidden;
    color: #f0f1f2;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 800;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-news-row em {
    display: block;
    margin-top: 10px;
    color: #767b81;
    font-size: 11px;
    line-height: 1;
    font-style: normal;
  }

  .mobile-news-row--more {
    display: none;
  }

  .mobile-news-stack.expanded .mobile-news-row--more {
    display: block;
  }

  .mobile-news-more {
    width: 100%;
    margin-top: 12px;
    padding: 9px 33px;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
  }

  .mobile-news-stack.expanded .mobile-news-more {
    display: none;
  }

  .mobile-rank-panel {
    margin-top: 260px;
  }

  .mobile-rank-panel h2 {
    margin-bottom: 22px;
    color: #f1f2f3;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 800;
  }

  .mobile-rank-panel ol {
    display: grid;
    gap: 12px;
    list-style: none;
  }

  .mobile-rank-panel li button {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 62px;
  }

  .mobile-rank-panel b {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #1b1d20;
    color: #d5a551;
    font-size: 16px;
    line-height: 1;
  }

  .mobile-rank-panel strong,
  .mobile-rank-panel span {
    min-width: 0;
  }

  .mobile-rank-panel span {
    display: block;
    overflow: hidden;
    color: #f0f1f2;
    font-size: 14px;
    line-height: 1.42;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .mobile-rank-panel em {
    display: block;
    margin-top: 6px;
    color: #7d8288;
    font-size: 12px;
    font-style: normal;
  }

  .mobile-rank-more {
    max-width: 308px;
    margin: 22px auto 0;
    display: block;
  }

  .news-footer-main {
    grid-template-columns: 1.4fr repeat(3, 1fr);
  }

  .news-footer-links {
    flex-wrap: wrap;
  }

  .news-footer-links strong {
    margin-left: 0;
  }

  .news-modal-dialog {
    width: min(600px, calc(100vw - 28px));
  }
}

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

  .news-footer {
    padding: 20px 0 18px;
  }

  .news-footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    padding: 0;
  }

  .news-footer-brand {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .news-footer-brand .brand {
    justify-content: center;
  }

  .news-footer-brand .brand .logo-mark {
    height: 30px;
  }

  .news-footer-brand p {
    display: none;
  }

  .news-footer-brand .logo-badge {
    display: none;
  }

  .news-age {
    display: inline-block;
    margin-top: 2px;
    padding: 3px 10px;
    border: 1px solid rgba(232, 163, 61, .48);
    border-radius: 999px;
    color: #d8aa4a;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
  }

  .news-footer-social {
    justify-content: center;
    margin-top: 12px;
  }

  .news-footer-social a {
    width: 38px;
    height: 38px;
  }

  .news-footer-col {
    padding-top: 0;
  }

  .news-footer-col h2 {
    margin: 0;
    padding: 0;
    color: #c7cbd0;
    font-size: 13px;
    font-weight: 700;
  }

  .news-footer-col h2::before {
    display: none;
  }

  .news-footer-col a {
    display: none;
  }

  .news-footer-links {
    justify-content: center;
    gap: 0;
    margin-top: 10px;
    padding: 0;
    border: 0;
  }

  .news-footer-links span,
  .news-footer-links a {
    display: none;
  }

  .news-footer-links strong {
    padding: 0;
    border: 0;
    color: #9ca0a5;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
  }

  .news-footer-links strong::before {
    content: "!";
    display: inline-grid;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 11px;
    line-height: 1;
  }

  .news-footer-bottom {
    justify-content: center;
    padding: 10px 0 0;
    border: 0;
    color: #858a90;
    font-size: 13px;
    text-align: center;
  }

  .news-footer-bottom span:last-child {
    display: none;
  }

  .news-modal {
    padding: 14px;
    align-items: start;
    padding-top: 26px;
  }

  .news-modal-dialog {
    width: min(346px, calc(100vw - 28px));
    height: min(505px, calc(100vh - 52px));
    max-height: calc(100vh - 52px);
    top: 52px;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  }

  .news-modal-body::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .news-modal-close {
    top: 17px;
    right: 17px;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(0, 0, 0, .7);
    font-size: 0;
  }

  .news-modal-close::before,
  .news-modal-close::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
  }

  .news-modal-close::before {
    transform: rotate(45deg);
  }

  .news-modal-close::after {
    transform: rotate(-45deg);
  }

  .news-modal-media {
    height: 220px;
    margin: 0;
    border-radius: 11px 11px 0 0;
  }

  .news-modal-media img {
    position: absolute;
    left: -21px;
    top: 0;
    width: 386px;
    max-width: none;
    height: 217px;
    object-fit: contain;
  }

  .news-modal-gradient {
    background: linear-gradient(180deg, rgba(20, 20, 24, 0) 0%, rgba(20, 20, 24, 0) 50%, #141418 100%);
  }

  .news-modal-media h2 {
    left: 14px;
    right: 14px;
    top: 173px;
    bottom: auto;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
  }

  .news-modal-body {
    padding: 16px 16px 17px;
    scrollbar-width: none;
  }

  .news-modal-meta {
    align-items: flex-start;
    gap: 60px;
    min-height: 29px;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .news-modal-meta span:nth-child(2) {
    font-size: 10px;
    line-height: 16px;
  }

  .news-modal-meta span:nth-child(3) {
    font-size: 14px;
    line-height: 20px;
  }

  .news-modal-content {
    padding-top: 24px;
  }

  .news-modal-content p {
    font-size: 12px;
    line-height: 18px;
  }

  .news-modal-content p+p {
    margin-top: 18px;
  }
}
