body {
  max-width: 1200px;
  margin: auto;
  padding: 1em;
  line-height: 1.5;
  /* background-color: pink; */
}

a {
  text-decoration: none;
  color: blue;
}
/* a:visited {
  color: lightcoral;
} */
/* a:active {
  color: rgb(104, 86, 206);
} */
/* a:hover {
  text-decoration: underline;
} */

p {
  white-space: pre-line;
}

/* header and footer areas */
.menu {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 5px;
  justify-content: center;
}
/* .grow  {
  background-color: red;
} */

.menu li {
  display: inline-block;
}
.article-meta,
.linkz {
  text-decoration: none;
  background: #eee;
  /* background: linear-gradient(180deg, #fbfbfb 0, #e4e4e4 49%, #dfdfdf 51%, #f6f6f6); */
  /* border: 1px solid #c2c2c2; */
  /* color: #444; */
  text-shadow: 0 1px 1px hsla(0, 0%, 100%, 0.9);
  padding: 5px;
  border-radius: 5px;
}
.customLinks {
  /* color: #444; */
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
}

.lbl {
  text-align: left;
  display: flex;
  flex-grow: 1;
  justify-content: flex-start;
}

.menu,
.article-meta,
footer {
  text-align: center;
}
.title {
  font-size: 1.1em;
}
footer a {
  text-decoration: none;
}
hr {
  border-style: dashed;
  /* color: black; */
  color: #ddd;
}

/* code */
pre {
  border: 1px solid #ddd;
  box-shadow: 5px 5px 5px #eee;
  padding: 1em;
  overflow-x: auto;
}
code {
  background: #f9f9f9;
}
pre code {
  background: none;
}

/* misc elements */
img,
iframe,
video {
  max-width: 100%;
}
main {
  hyphens: auto;
}
blockquote {
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  padding: 3px 1em 3px;
}

table {
  margin: auto;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}
table thead th {
  border-bottom: 1px solid #ddd;
}
th,
td {
  padding: 5px;
}
thead,
tfoot,
tr:nth-child(even) {
  background: #eee;
}

/* list */

.linkList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
}
.linkList li {
  list-style: none;
  display: flex;
  align-items: start;
  gap: 15px;
  padding: 10px;
  /* border: 1px solid white; */
  /* border-radius: 8px; */
}
.linkList li:hover span {
  text-decoration: underline;
}
.linkList li img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.linkList li {
  flex-shrink: 0;
}

.linkList li .box {
  flex-grow: 1;
}

.linkList li .box span {
  font-size: 16px;
  /* font-weight: bold; */
  display: block;
  margin-bottom: 5px;
  /* color: black; */
}
.linkList li .box div {
  margin: 0;
  text-decoration: none;
  text-align: left;
  font-size: 14px;
  color: #555;
}

.lazy-load {
  width: 100%;
  height: auto;
}


.image-wrapper {
  margin: 0;
  padding: 0;
}