/*
 Theme Name:   gp_child_keb
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
/* ==================================================
POST NAVIGATION
================================================== */

/* Post navigation wrapper */
.post-navigation {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #d9d9d9;
}

/* Flex layout */
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

/* Previous / next blocks */
.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

/* Align next item right */
.post-navigation .nav-next {
  text-align: right;
}

/* Links */
.post-navigation a {
  color: #4572c5;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
}

/* Hover */
.post-navigation a:hover {
  text-decoration: underline;
}

/* Arrow before previous */
.post-navigation .nav-previous a::before {
  content: "← ";
}

/* Arrow after next */
.post-navigation .nav-next a::after {
  content: " →";
}

/* Mobile */
@media (max-width: 768px) {
  .post-navigation .nav-links {
    flex-direction: column;
    gap: 1rem;
  }

  .post-navigation .nav-next {
    text-align: left;
  }
}

/* ==================================================
Contact Form 7 velden styling
================================================== */

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 2px solid #2b5797; 
    border-radius: 6px;        
    padding: 10px;             
    background-color: #fff;    
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: #000;
    outline: none;
}
.wpcf7-form input[type=submit] {
	border-radius: 6px;}