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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #000000;
  color: #646464;
  min-height: 100vh;
}

/* ── Topbar ── */
.topbar {
  background-color: #333;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 60px;
}

.topbar a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.topbar a:hover {
  color: #aaa;
}

.topbar img {
  height: 40px;
  width: auto;
  padding-bottom: 7px;
}

/* ── Page wrapper: centers everything below the topbar ── */
.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 40px 20px 60px;
  gap: 30px;
}

/* ── Hero box (your .box) ── */
.box {
  color: white;
  background-color: rgba(58, 58, 58, 0.733);
  padding: 20px;
  border-radius: 2px;
  max-width: 800px;
  width: 100%;
}

/* ── Hero image (your .imageSave) ── */
.imageSave {
  display: flex;
  justify-content: right;
  margin-right: -700px;
  margin-top: -233px;
  width: 100%;
  max-width: 800px;
}

.imageSave img {
  height: 202px;
  width: auto;
  clip-path: inset(5px 0 0 0);
}

.imgFlowerFixed img {
  position: fixed;
  height: 300px;
  width: auto;
  bottom: 0px;
  right: 0px;
}

.imgFlowerTopLeft img{
  position: absolute;
  height: 500px;
  width: auto;
}

/* ── Side banner  ── */

/*
.sidebanner {
  display: flex;
  justify-content: left;
  margin-top: -150px;
  width: 100%;
  max-width: 800px;
  height: 600px;
}

.sidebanner img {
  width: 100%;
  max-width: 200px;
  height: auto;
}
*/

/* ── Section header ── */
.newsAndStuff-header {
  width: 100%;
  max-width: 800px;
  font-family: "Manufacturing Consent", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #646464;
}

/* ── News feed ── */
.news-container {
  max-width: 800px;
  width: 100%;
  background-color: #0e0e0e;
}

.news-item {
  border-bottom: 1px solid #ffffff;
  padding: 20px 0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-title {
  color: #444;
  font-size: 16px;
  margin-bottom: 10px;
}

.news-item p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  margin-left: 10px;
}

.news-author {
  color: #888;
  font-size: 13px;
  margin-left: 10px;
}