.errors {
  border: solid 1px red;
  background-color: rgba(255, 0, 0, .1);
  padding: 10px;
  margin: 20px;
}

.errors ul {
  margin-left: 20px;
}


:root {
  --ck-sample-base-spacing: 2em;
  --ck-sample-color-white: #fff;
  --ck-sample-color-green: #279863;
  --ck-sample-color-blue: #1a9aef;
  --ck-sample-container-width: 1285px;
  --ck-sample-sidebar-width: 350px;
  --ck-sample-editor-min-height: 400px;
  --ck-sample-editor-z-index: 10;
  --ck-sample-editor-z-index: 10;
  --ck-ui-component-min-height: 2em !important;
}


.ck-button {
  line-height: 12px !important;
  font-size: initial !important;
  padding: initial !important;
  height: initial !important;
}


.insight-description {
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: calc(100% - 72px);
}


.insight-description a {
  color: #191919;
  border-bottom: dotted 1px #888;
}


.insight-description a:hover {
  color: #089bc3;
  border-bottom: dotted 1px #089bc3;
}


a.flag:hover {
  text-decoration: none !important;
  outline: none;
  border: none;
}


.insight-grid {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin-bottom: 48px;
}


.insight-grid .cell a {
  border-bottom: none !important;
}


.insight-cell-image {
  position: relative;
  aspect-ratio: 1.2;
  display: flex;
}


@supports not (aspect-ratio: 1.2) {
  .insight-cell-image {
    height: 260px;
  }
}


.insight-cell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}



.insight-cell-image .insight-overlay {
  height: 0px;
  opacity: 0;
  border-radius: 8px;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  position: absolute;
}


.insight-cell-image:hover .insight-overlay {
  height: unset;
  backdrop-filter: blur(3px) contrast(.25) brightness(1.65) grayscale(.5);
  transition: opacity 0.1s ease-in;
  opacity: 1;
  display: block;
  z-index: 100;
  pointer-events: none;

  box-shadow: 0 3px 12px rgb(194, 194, 194, .6);
}

.insight-cell-image:hover .insight-overlay.no-description {
  backdrop-filter: none !important;
}


@supports not (backdrop-filter: blur(3px)) {
  .insight-cell-image:hover .insight-overlay {
    background-color: rgba(255, 255, 255, .9) !important;
  }
}

.insight-cell-image .insight-description {
  margin: 12px;
  font-size: 120%;
  color: black;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}


.insight-cell-image .insight-description ol,
.insight-cell-image .insight-description ul {
  margin-top: 8px;
  margin-bottom: 8px;
}

.insight-cell-image .insight-description li {
  list-style: disc outside none;
  margin-left: 20px;
}


.insight-cell-image .insight-star-button {
  padding: 8px 6px 6px;
  margin-right: 12px;
  margin-top: 12px;
  border: solid 1px #aaa;
  background-color: #f7f7f7;
  color: #666;
  font-size: 16px;
  vertical-align: center;
  border-radius: 6px;
  pointer-events: all;
  cursor: pointer;
  float: right;
  margin-left: 8px;
  margin-bottom: 6px;
  width: max-content;
}



.insight-cell-image .insight-star-button:hover {
  background-color: #f0f0f0;
}

.insight-cell-image:hover .insight-toolbar {
  display: flex !important;
}

.insight-toolbar {
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 6px;

  display: none;
  align-items: center;

  width: 100%;
  overflow: hidden;
}

.insight-cell-image .tags {
  font-size: 16px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  pointer-events: all;
  scrollbar-width: thin;
}


.insight-cell-image .tags .tag {
  display: inline-block;
  font-size: 12px;
  color: black;
  border: solid 1px #333 !important;
  border-radius: 20px;
  padding: 4px 6px;
  line-height: 1.1em;
  margin-left: 6px;
  background-color: #f7f7f7;
  white-space: nowrap;
}


.insight-cell-image .tags .tag:hover {
  background-color: #f0f0f0;
}


.insight-cell-info {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  line-height: 22px;
}


.insight-cell-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 22px;
}


.insight-cell-info .author {
  font-size: 14px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-right: 8px;
  flex: 1;
}


.far,
.fas,
.fal {
  width: 1.2em;
}

.author-link:hover {
  text-decoration: none !important;
  border-bottom: none !important;
}

.author-link {
  display: inline-flex;
  padding: 3px 0px 6px 12px;
  align-items: center;
}

.author-link img {
  width: 20px;
  height: 20px;
  border-radius: 30px;
  margin-right: 8px;
}

.author-link span {
  flex-grow: 0;
}