* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif;
  line-height: 1.7;
  background: #fafafa;
  color: #222;
  max-width: 900px;
  margin: 0 auto;
  padding: 22px;
}

.site-header {
  padding-bottom: 18px;
  margin-bottom: 26px;
  border-bottom: 2px solid #222;
}

.site-header h1 {
  font-size: 2.1rem;
  margin-bottom: 6px;
}

.tagline {
  color: #555;
  font-style: italic;
  margin-bottom: 12px;
}

.nav {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.nav a {
  text-decoration: none;
  color: #0a58ca;
}

.nav a:hover {
  text-decoration: underline;
}

.content {
  padding-top: 6px;
}

.section-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.post-list {
  list-style: none;
}

.post-list li {
  padding: 16px 0;
  border-bottom: 1px solid #ddd;
}

.post-list a {
  font-size: 1.25rem;
  text-decoration: none;
  color: #2563eb; /* soft readable blue */
}
.post-list a:hover {
  color: #0a58ca;
}

.date {
  display: block;
  margin-top: 6px;
  color: #666;
  font-style: italic;
}

article h2 {
  margin-bottom: 6px;
}

article .date {
  margin-bottom: 16px;
}

article p {
  margin-bottom: 14px;
}

.footer {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid #ccc;
  color: #666;
  font-size: 0.95rem;
}
body {
  background-color: #eaf3ff; /* soft baby blue */
  color: #1f2937; /* dark gray text for readability */
  line-height: 1.6;
  font-size: 18px;
}
main.content {
  background-color: #ffffff;
  max-width: 800px;
  margin: 40px auto;
  padding: 32px;
  border-radius: 12px;
}
a {
  color: #2563eb; /* calm blue */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.date {
  font-style: italic;
  color: #6b7280;
}
body {
  line-height: 1.6;
  font-size: 18px;
}
main.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
}
.post-list {
  list-style: none;
  padding-left: 0;
}

.post-list li {
  margin: 24px 0;
}

.post-list .date {
  display: block;
  margin-top: 8px;
  font-style: italic;
  opacity: 0.75;
}
.post-list a {
  color: #2563eb; /* readable soft blue */
}

.post-list a:hover {
  color: #1d4ed8;
}
/* Article body text – cool readable blue */
article p {
  color: #1f3b73; /* cool deep blue */
}

/* Article titles */
article h1,
article h2 {
  color: #1e40af; /* strong blue */
}

/* Article date */
article .date {
  color: #3b5ea8; /* softer blue for date */
}
/* Force article text color (cool darker blue) */
main.content p {
  color: #1f3b73;
}

/* Article titles */
main.content h1,
main.content h2 {
  color: #1e40af;
}

/* Article date */
main.content .date {
  color: #3b5ea8;
}
/* Article page text color */
.container h1 {
  color: #1e3a8a; /* deep cool blue */
}

.container p {
  color: #1f3b6f; /* readable dark blue */
}

.post-image {
  width: 100%;
  max-width: 760px;
  height: auto;
  display: block;
  margin: 18px auto;
  border-radius: 18px;
}

/* ---------------------------
   RIGHT SIDE LAYOUT + PROMPT BOX
   --------------------------- */

/* Make the main content area split into 2 columns */
.content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Left side = your post grid takes up the remaining space */
.grid {
  flex: 1;
}

/* Right side = prompt generator sidebar */
.prompt-box {
  width: 320px;
  padding: 18px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 0 22px rgba(0, 207, 255, 0.28);

  position: sticky;
  top: 120px;
}

/* Title inside the box */
.prompt-title {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  padding: 10px 12px;
  border-radius: 14px;

  color: #ffffff;
  background: linear-gradient(
    90deg,
    rgba(0, 198, 255, 0.85),
    rgba(0, 114, 255, 0.85)
  );

  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Small description text */
.prompt-description {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.92;
}

/* Button styling */
.prompt-button {
  width: 100%;
  margin-top: 12px;
  padding: 11px 12px;

  border-radius: 14px;
  border: none;

  font-weight: 800;
  cursor: pointer;

  color: #06202a;
  background: linear-gradient(
    90deg,
    rgba(0, 229, 255, 0.95),
    rgba(0, 198, 255, 0.95)
  );
}

.prompt-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(0, 207, 255, 0.35);
}

/* Output box where the prompt appears */
.prompt-output {
  margin-top: 12px;
  padding: 12px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);

  min-height: 70px;
  font-size: 14px;
  line-height: 1.35;
}

/* Mobile: stack it (right sidebar becomes below posts) */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
  }

  .prompt-box {
    width: 100%;
    position: static;
  }
}
.top-image img {
    width: 70%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.post-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 30px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
article img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 20px auto;
}
.post-card img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 20px;
    display: block;
    margin: 20px auto;
}
