.pv-news-card-button {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.pv-news-card-button:focus-visible {
  outline: 4px solid rgba(249, 115, 22, 0.45);
  outline-offset: -4px;
}

.pv-news-image-contain {
  object-fit: contain !important;
  background: #f7f2ed;
}

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

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

.pv-news-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(17, 24, 39, 0.74);
  backdrop-filter: blur(5px);
  cursor: pointer;
}

.pv-news-modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(920px, 100%);
  max-height: min(860px, calc(100vh - 48px));
  overflow: hidden auto;
  border: 3px solid #fed7aa;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.38);
}

.pv-news-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #ea580c;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.2);
  cursor: pointer;
}

.pv-news-modal-close:hover,
.pv-news-modal-close:focus-visible {
  background: #f97316;
  color: #fff;
  outline: none;
}

.pv-news-modal-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  background: #f7f2ed;
}

.pv-news-modal-content {
  padding: 28px 32px 34px;
}

.pv-news-modal-meta {
  margin-bottom: 12px;
  color: #f97316;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pv-news-modal-content h3 {
  margin: 0 0 18px;
  color: #1f2937;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.35;
}

.pv-news-modal-content p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.9;
}

@media (max-width: 640px) {
  .pv-news-modal {
    padding: 12px;
  }

  .pv-news-modal-panel {
    max-height: calc(100vh - 24px);
    border-radius: 20px;
  }

  .pv-news-modal-content {
    padding: 22px 20px 26px;
  }

  .pv-news-modal-content p {
    font-size: 15px;
  }
}
