/*
Theme Name: Devblock
Author: Umbradev
Author URI: https://umbradev.es
Description: Minimal Full Site Editing starter theme focused on system architecture.
Version: 1.0.2
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: devblock
Domain Path: /languages
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Copyright: © 2026 Umbradev
Tags: full-site-editing, editor-style, custom-colors, translation-ready
*/

/* Kill Gutenberg root flow spacing */
.wp-site-blocks > * {
    margin-block-start: 0 !important;
}

/* =====================================================
   Navigation – refined behaviour
===================================================== */

.wp-block-navigation .wp-block-navigation-item__content {
    position: relative;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

/* Hover */
.wp-block-navigation .wp-block-navigation-item__content:hover {
    color: var(--wp--preset--color--accent);
    opacity: 0.85;
}

/* Active page */
.wp-block-navigation .wp-block-navigation-item__content[aria-current="page"] {
    font-weight: 600;
}

/* Active underline */
.wp-block-navigation .wp-block-navigation-item__content[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: currentColor;
}

/* Accessible focus */
.wp-block-navigation .wp-block-navigation-item__content:focus-visible {
    outline: 2px solid var(--wp--preset--color--accent);
    outline-offset: 4px;
}



/* =====================================
   Featured image (hero proportion)
===================================== */

.wp-block-post-featured-image.alignfull img {
    width: 100%;
    height: 55vh;
    object-fit: cover;
}

/* =====================================
   Style Section
===================================== */
.wp-block-group.is-style-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}