/*
Theme Name: Parrilla Julve Theme
Theme URI: https://www.parrillajulveradiologas.com
Description: Child theme para Hello Elementor
Author: ACF Coder
Author URI: https://www.parrilla-julve.com/
Version: 1.1
Template: hello-elementor
Text Domain: Parrilla Julve
License: Commercial

*/

/*************** ADD YOUR CUSTOM CSS HERE  ***************/

body {
	font-family: "Poppins", sans-serif;
}


/* ══════════════════════════════
   BANDA CABECERA SALMÓN
══════════════════════════════ */
.single-header-band {
    background-color: #e8a898;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.single-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.single-header-title .entry-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    max-width: 600px;
    line-height: 1.2;
}

/* Migas de pan */
.single-header-breadcrumb .breadcrumb {
    font-size: 12px;
    color: #333;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-header-breadcrumb .breadcrumb a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.single-header-breadcrumb .breadcrumb a:hover {
    text-decoration: underline;
}

.single-header-breadcrumb .breadcrumb .sep {
    margin: 0 6px;
    color: #555;
}

/* ══════════════════════════════
   LAYOUT DOS COLUMNAS
══════════════════════════════ */
.single-layout-wrapper {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    align-items: flex-start;
}

.single-content-area {
    flex: 1;
    min-width: 0;
}

.single-featured-image {
    margin-bottom: 30px;
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.single-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 30px;
}

.sidebar-inner .widget {
    margin-bottom: 35px;
}

/* Buscador */
.sidebar-search .search-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    background: #f9f9f9;
}

.sidebar-search input[type="search"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    outline: none;
}

.sidebar-search button {
    background: none;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    color: #555;
}

.sidebar-search button:hover {
    color: #000;
}

/* Títulos de widgets */
.sidebar-inner .widget-title,
.sidebar-inner h2.widgettitle {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 18px;
    padding-bottom: 0;
    border: none;
}

/* Lista artículos recientes */
.sidebar-inner .widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-inner .widget_recent_entries ul li {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-inner .widget_recent_entries ul li:last-child {
    border-bottom: none;
}

.sidebar-inner .widget_recent_entries ul li a {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
}

.sidebar-inner .widget_recent_entries ul li a:hover {
    color: #e8a898;
}

.sidebar-inner .widget_recent_entries ul li .post-date {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
    .single-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .single-header-breadcrumb .breadcrumb {
        text-align: left;
    }

    .single-layout-wrapper {
        flex-direction: column;
    }

    .single-sidebar {
        width: 100%;
        position: static;
    }
}