.news-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("NewsBackground.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.news-admin {
  margin: -1rem 0 3rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: left;
}

.news-admin__title {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}

.news-admin__form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.news-admin__form input,
.news-admin__form textarea {
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  color: var(--cream);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  width: 100%;
  resize: vertical;
}

.news-admin__form input:focus,
.news-admin__form textarea:focus {
  outline: none;
  border-color: var(--cream-dim);
}

.news-admin__photo-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--cream-dim);
}

.news-admin__photo-field input {
  padding: 0.5rem 0.6rem;
  font-size: 0.8rem;
}

.news-admin__photo-preview {
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-deep);
}

.news-admin__photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-admin__photo-preview span {
  font-size: 0.68rem;
  color: var(--cream-dim);
  opacity: 0.7;
}

.news-admin__form button {
  align-self: flex-start;
}

.news-feed {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-empty {
  color: var(--cream-dim);
  font-weight: 300;
  padding: 2rem 0;
}

.clipping {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 0 3.5rem;
  padding: 1.85rem 1.85rem 1.6rem;
  background: url("Newspaper.jpg") center/cover no-repeat, #ece0c5;
  border-radius: 2px 10px 3px 8px / 8px 3px 10px 2px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
  color: #201a12;
}

.clipping::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 96px;
  height: 28px;
  background: rgba(235, 222, 196, 0.5);
  border: 1px solid rgba(235, 222, 196, 0.15);
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.clipping__masthead {
  text-align: center;
  border-bottom: 3px double #2a2118;
  padding-bottom: 0.5rem;
  margin-bottom: 0.9rem;
}

.clipping__paper-name {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: #201a12;
}

.clipping__date {
  display: block;
  margin-top: 0.25rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5c5040;
}

.clipping__headline {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.clipping__photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(42, 33, 24, 0.35);
  background: repeating-linear-gradient(135deg, rgba(42, 33, 24, 0.06) 0 2px, transparent 2px 12px);
}

.clipping__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05) sepia(0.1);
}

.clipping__photo-placeholder {
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c5040;
  opacity: 0.65;
  text-align: center;
  padding: 0 1rem;
}

.clipping__body {
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #201a12;
}

.clipping__body::first-letter {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 2.3rem;
  line-height: 0.75;
  float: left;
  padding: 0.15rem 0.4rem 0 0;
}

.clipping__delete {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: "Oswald", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a2b1c;
  background: none;
  border: 1px solid rgba(138, 43, 28, 0.4);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.clipping__delete:hover {
  border-color: #8a2b1c;
}
