/*
Theme Name: 23
Theme URI: https://wordpress.org/themes/2023
Author: the WordPress team
Author URI: https://wordpress.org
Description: Twenty Twenty-Three is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.
Requires at least: 6.1
Tested up to: 6.7
Requires PHP: 5.6
Version: 1.6
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: 2023
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/* Custom Footer Styles */
.custom-footer {
    min-height: auto;
    position: relative;
    z-index: 10;
    width: 100%;
    background-color: var(--wp--preset--color--base, #fff);
}

.custom-footer .wp-block-group {
    align-items: center;
    min-height: 32px;
    max-height: 32px;
    width: 100%;
}

.custom-footer .wp-site-title,
.custom-footer p {
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-footer .wp-site-title {
    flex-shrink: 0;
}

.custom-footer .has-text-align-right {
    flex-shrink: 0;
}

/* Responsive behavior for smaller screens */
@media (max-width: 768px) {
    .custom-footer .wp-block-group {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2px;
        min-height: auto;
        max-height: none;
        padding: 4px 0;
    }
    
    .custom-footer .has-text-align-right {
        text-align: center !important;
    }
    
    .custom-footer .wp-site-title,
    .custom-footer p {
        white-space: normal;
    }
}
