/* BASE */
body {
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #ffffff;
  color: #000;
}

/* HEADER */
.site-header {
  padding: 20px 32px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  height: 160px;
  width: auto;
  flex-shrink: 0;
}

/* HEADER RIGHT */
.header-right {
  text-align: right;
  font-size: 14px;
  line-height: 1.35;
}

.socials {
  margin-bottom: 4px;
}

.date {
  font-size: 13px;
}

/* RULES */
.rule {
  border: none;
  border-top: 1px solid #000;
  margin: 12px 0;
}

.rule.thin {
  margin: 18px auto;
  width: 80%;
}

/* TAGLINE */
.tagline {
  text-align: center;
  font-size: 26px;
  font-style: italic;
  margin: 22px 0 18px;
}

/* CONTENT */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* QUESTION BOX */
.question-box {
  width: 72%;
  border: 2px solid #000;
  padding: 28px 30px;
  font-size: 30px;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 26px;
}

/* THANK YOU MESSAGE (POST-VOTE) */
.thanks {
  margin-top: 22px;
  font-size: 18px;
  font-style: italic;
  opacity: 0.85;
}

/* VOTING */
.vote-buttons {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.vote-buttons button {
  font-family: inherit;
  font-size: 18px;
  padding: 10px 22px;
  background: none;
  border: 1px solid #000;
  cursor: pointer;
}

.vote-buttons button:hover {
  background: #000;
  color: #fff;
}

/* YESTERDAY */
.yesterday {
  font-size: 16px;
  text-align: center;
  margin-top: 30px;
  max-width: 600px;
}

/* MOBILE — PRIORITY */
@media (max-width: 768px) {
  .site-header {
    padding: 12px 20px;
  }

  .header-inner {
    flex-direction: column;
    gap: 10px;
  }

  .logo {
    height: 110px;
  }

  .header-right {
    text-align: center;
  }

  .tagline {
    font-size: 22px;
  }

  .question-box {
    width: 92%;
    font-size: 26px;
    padding: 22px;
  }

  .vote-buttons button {
    font-size: 16px;
  }

  .thanks {
    font-size: 16px;
  }
}
