```css
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #fff;
  color: #111;
  line-height: 1.6;
  max-width: 1200px;  /* Keep like real NYT page */
  margin: auto;
}

/* Top bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 0.9rem;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.top-bar .right button {
  margin-left: 10px;
  padding: 5px 10px;
  border: none;
  cursor: pointer;
}

.subscribe {
  background: #0056b3;
  color: white;
}

.login {
  background: #333;
  color: white;
}

.down {
  color: red;
}

/* Logo */
header {
  text-align: center;
  margin: 20px 0;
}

.logo {
  font-size: 2.5rem;
  font-family: "Old English Text MT", serif;
  font-weight: bold;
}

/* Navigation */
nav {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 10px 0;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 20px;
  font-size: 1rem;
}

/* Breaking News */
.breaking-news {
  padding: 10px 20px;
  border-bottom: 2px solid #000;
  font-size: 0.95rem;
}

.breaking-news .live {
  color: red;
  font-weight: bold;
}

.breaking-news .time {
  color: gray;
  font-size: 0.85rem;
}

/* Main Content */
.content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  padding: 20px;
  align-items: flex-start;
}

/* Left news block */
.main-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.news-text h2.red {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.news-text h1 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.news-text p {
  margin-bottom: 10px;
}

.news-text a {
  display: block;
  margin-bottom: 15px;
  color: #0056b3;
  text-decoration: none;
}

.news-text a:hover {
  text-decoration: underline;
}

.sub-news {
  margin-top: 10px;
  border-top: 1px solid #ddd;
  padding-top: 8px;
}

.sub-news h3 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.sub-news .time {
  color: gray;
  font-size: 0.8rem;
}

/* Left image (smaller rectangle, under text like screenshot) */
.news-image img {
  width: 100%;
  max-height: 180px;   /* smaller size */
  object-fit: cover;   /* crop if needed */
  display: block;
  margin-top: 10px;
}

/* Side News (cake image square) */
.side-news img {
  width: 100%;
  aspect-ratio: 1 / 1;  /* square shape */
  object-fit: cover;
  margin-bottom: 10px;
}

.side-news h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.side-news p {
  margin-bottom: 5px;
}

.side-news .time {
  color: gray;
  font-size: 0.8rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #f9f9f9;
  margin-top: 30px;
  border-top: 1px solid #ddd;
}
```
