/* Drop cap (first paragraph only via PHP filter) */

.has-drop-cap:not(:focus)::first-letter {
  float: left;
  font-weight: 700;
  font-size: 5em;
  line-height: 0.8;
  padding-top: 5px;
  margin-right: 0.12em;
  color: white;
}

@media (max-width: 768px) {
  .has-drop-cap:not(:focus)::first-letter {
    font-size: 3.5em;
    line-height: 0.9;
  }
}
