/**
 * Campaign Styles for campaign #18576
 */

/** Style Campaign style#63 */
/* ENTITY TYPE BLOCK UNDER TITLE */
.entity-header .entity-type {
  display: block;
}

/* LINK COLORING*/
.entity-mention[data-entity-tags~="complete"]{
  color: PaleGoldenrod;
}
.entity-mention[data-entity-tags~="partial"]{
  color: Orange;
}
.entity-mention[data-entity-tags~="featured"]{
  color: DarkSeaGreen;
}
.entity-mention{
  color: IndianRed;
}

/* TAG BANNERS */
/* If adding another tag put it in the :is with the same formatting. No spaces if there are multiple words. */
:is(.kanka-tag-collector, .kanka-tag-complete, .kanka-tag-partial, .kanka-tag-featured) .entity-story-block::before {
text-align: center;
font-style: oblique;
display:inline-block;
background: var(--box-background);
padding: 2ch;
border: 1px solid lightgrey;
margin: 10px;
margin-right: 10%;
margin-left: 10%;
border-radius: 3px;
box-shadow: 0 1px 1px rgba(0,0,0,.1);
width: 80%;
}
.kanka-tag-collector .entity-story-block:before {
    content: "This is a Collector article. Its content is sparse on purpose, intended to be a hub for spokes. Check out the Sub-Articles section for more robust content.";
    border-left: 5px solid DarkSeaGreen;
}
.kanka-tag-complete .entity-story-block:before {
    content: "This article is complete. If you don't see this notice appear on the top of other articles, presume them to be incomplete.";
    border-left: 5px solid PaleGoldenrod;
}
.kanka-tag-partial .entity-story-block:before {
    content: "This article is partially complete. Consider it a work in progress.";
    border-left: 5px solid orange;
}
.kanka-tag-featured .entity-story-block:before {
    content: "This article is featured. It contains links to a lot of content, and is a good entry point for a group of topics.";
    border-left: 5px solid DarkSeaGreen;
}
