.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.slide {
  float: right;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #eee;
  text-align: center;
  transition: opacity 0.4s;
  opacity: 1;
}

.slide .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.slide:before {
  content: attr(annot);
  display: block;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 300;
  z-index: 12;
  transition: opacity 0.3s;
  text-shadow: 0 0 1px #000;
}

.slide:after {
  content: attr(slide);
  display: block;
  position: absolute;
  bottom: -0.22rem;
  transition: opacity 0.3s;
  width: 100%;
  height: 80px;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  text-align: left;
  text-indent: calc(100% - 4.5rem);
  right: 0;
  line-height: 101px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 1px #000;
}

.counter {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  height: 20px;
  width: 60px;
  z-index: 2;
  text-align: center;
  color: #fff;
  line-height: 21px;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.expand-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 12;
  text-align: right;
  color: #fff;
  line-height: 21px;
  font-size: 13px;
  padding: 0.5rem 1rem;
  background-color: #000000;
  display: flex;
  justify-content: space-between;
}

.expand-image .title {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.5rem;
  text-align: left;
}

.expand-image .full-size-link {
  color: #ffffff;
  display: inline-block;
  min-width: 5rem;
}

.expand-image .title-date {
  color: #ff0000;
  font-size: 1.1rem;
}

.faux-ui-facia {
  top: 0;
  right: 0;
  float: right;
  position: absolute;
  margin-top: 0;
  z-index: 9;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.faux-ui-facia:checked {
  z-index: 8;
}

.faux-ui-facia:checked + .expand-image {
  display: none;
}

.faux-ui-facia:checked + .expand-image + .slide {
  opacity: 0;
}

.faux-ui-facia:checked:nth-child(1):checked {
  z-index: 9;
}

.faux-ui-facia:nth-child(1):checked {
  float: left;
  z-index: 9;
}

.faux-ui-facia:nth-child(1):checked + .expand-image {
  display: flex;
}

.faux-ui-facia:nth-child(1):checked + .expand-image + .slide {
  opacity: 1;
}

.faux-ui-facia:nth-child(1):checked ~ .faux-ui-facia {
  float: left;
  z-index: 8;
}

.faux-ui-facia:nth-child(1):checked ~ .faux-ui-facia + .expand-image {
  display: none;
}

.faux-ui-facia:nth-child(1):checked ~ .faux-ui-facia + .expand-image + .slide {
  opacity: 0;
}

.faux-ui-facia:nth-child(1):checked ~ .faux-ui-facia:checked {
  z-index: 9;
}

.faux-ui-facia:nth-child(1):checked ~ .faux-ui-facia:checked + .expand-image {
  display: flex;
}

.faux-ui-facia:nth-child(1):checked
  ~ .faux-ui-facia:checked
  + .expand-image
  + .slide {
  opacity: 1;
}
