/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

.custom-single-wrapper {
  max-width: 900px;
  margin: 100px auto 80px;
  padding: 0 20px;
}

.single-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 50px;
}

.single-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.single-meta {
  font-size: 15px;
  color: #8a8f9c;
  margin-bottom: 50px;
}

.single-content {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}


/* ====== NAVEGACIÓN SINGLE ====== */

.custom-single-wrapper nav.single-navigation {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 80px 0 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.custom-single-wrapper nav.single-navigation > div {
  flex: 1;
}

.custom-single-wrapper nav.single-navigation a {
  display: block;
  padding: 20px;
  background: #f7f7f7;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: #1f2230;
  transition: all 0.3s ease;
}

.custom-single-wrapper nav.single-navigation .nav-previous a {
  text-align: left;
}

.custom-single-wrapper nav.single-navigation .nav-next a {
  text-align: right;
}

.custom-single-wrapper nav.single-navigation a:hover {
  background: #a30d0d;
  color: #ffffff;
  transform: translateY(-3px);
}