/*
 Theme Name:   Child
 Author:       arcie
 Author URI:   http://thisistrue.com
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  generatepress-child
*/
----------------------------------- */

/* Post navigation links */
.post-navigation a:link,
.post-navigation a:visited,
.post-navigation a:hover,
.post-navigation a:focus-visible {
  color: #1e73be;
  text-decoration-line: underline;
}
.post-navigation a:visited {
  color: #5f24ad;
}
.post-navigation a:hover,
.post-navigation a:focus-visible {
  color: #0064bc;
  outline: none;
  text-decoration-style: solid;
}

/* Entry content links */
.entry-content a:link,
.entry-content a:visited,
.entry-content a:hover,
.entry-content a:focus-visible {
  color: #1e73be;
  text-decoration-line: underline;
}
.entry-content a:visited {
  color: #5f24ad;
}
.entry-content a:hover,
.entry-content a:focus-visible {
  color: #0064bc;
  outline: none;
  text-decoration-style: solid;
}

/* Captions */
.caption .caption-text {
  font-size: 90%;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  text-align: center;
  opacity: 1;
}

/* Header/meta tweaks */
.entry-header .comments-link { display: block; }
.entry-meta .byline { display: none; }

/* Blockquotes */
blockquote {
  margin-right: 50px;
  font-style: normal;
  font-size: inherit;
}

/* Post navigation spacing */
.post-navigation .nav-previous { padding-bottom: 5px; }

/* Quoted story blocks */
.quotedstory { margin-left: 35px; margin-right: 35px; text-align: justify; }
.quotedstory .slug { font-size: 18pt; font-weight: bold; margin-bottom: 10px; }
.quotedstory .story { margin-top: 10px; }
.quotedstory .tagline { font-style: italic; }

/* List spacing — scoped to article content only */
.entry-content li {
  padding-top: 10px;
  margin-bottom: 5px;
}

/* Widget list hanging indent */
.widget ul li {
  text-indent: -1em;
  margin-left: 1em;
}

/* Hide URL field in comment form */
.comment-form-url { display: none; }

/* Drop cap */
p.drop::first-letter {
  font-size: 65px;
  padding-right: 5px;
  margin-top: -15px;
  margin-left: -10px;
  line-height: 1;
  color: #000;
  float: left;
  font-weight: bold;
  text-shadow: 3px 3px 3px #aaa;
}

/* Headings */
h4 { margin-top: 1em; margin-bottom: .33em; }
h1.entry-title { margin-bottom: 30px; }
.entry-meta { margin-top: 0; margin-bottom: 20px; }

/* Image gentle grow */
img[class*="image-"] {
  transition: transform .3s ease, box-shadow .3s ease;  /* <-- moved here */
}
img[class*="image-"]:hover {
  transform: scale(1.05);
  box-shadow: 1px 1px 5px #999;
}
.post-navigation .nav-label {
  font-weight: 700;
  color: #000;
  margin-right: 0.25em;
}