:root {
  --np-bg: #F9F9F7;
  --np-fg: #111111;
  --np-muted: #E5E5E0;
  --np-accent: #CC0000;
  
  --font-serif-display: 'Playfair Display', 'Times New Roman', serif;
  --font-serif-body: 'Lora', Georgia, serif;
  --font-sans: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

body {
  margin: 0;
  font-family: Arial;
  background-color: var(--np-bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23111111' fill-opacity='0.04' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: var(--np-fg);
  color: var(--np-bg);
  border-bottom: 4px solid var(--np-fg);
}

nav button {
  margin: 5px;
  padding: 8px 12px;
  background: transparent;
  color: var(--np-bg);
  border: 1px solid var(--np-bg);
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: all 0.2s;
}

nav button:hover {
  background: var(--np-bg);
  color: var(--np-fg);
}

nav input {
  padding: 8px;
  border: 1px solid var(--np-bg);
  border-radius: 0;
  background: transparent;
  color: var(--np-bg);
  font-family: var(--font-mono);
}

/* --- Newsprint Article Section Layout --- */
#news {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 16px;
  gap: 32px;
}

.article-card {
  display: flex;
  flex-direction: column;
  background-color: var(--np-bg);
  border: 1px solid var(--np-fg);
  border-radius: 0; /* Strict 90-degree corners */
  padding: 24px;
  transition: all 0.2s ease-out;
  text-decoration: none;
  position: relative;
}

.article-card:hover {
  background-color: #F5F5F5;
  box-shadow: 4px 4px 0px 0px var(--np-fg);
  transform: translate(-2px, -2px);
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border: 1px solid var(--np-fg);
  border-radius: 0;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.article-card:hover img {
  filter: grayscale(0%) sepia(30%); /* Vintage print photo effect */
}

.article-meta {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #737373;
  margin-bottom: 12px;
  display: block;
}

.article-title {
  font-family: var(--font-serif-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 12px 0;
  color: var(--np-fg);
}

.article-desc {
  font-family: var(--font-serif-body);
  font-size: 16px;
  line-height: 1.625;
  color: #525252;
  margin: 0 0 24px 0;
  flex-grow: 1;
  text-align: justify; /* Newspaper justified look */
}

.article-read-more {
  align-self: flex-start;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--np-fg);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

.article-card:hover .article-read-more {
  border-bottom: 2px solid var(--np-accent);
}

#loader {
  text-align: center;
  padding: 40px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: none;
}
