/* WordPress Compatibility CSS - Minimal styles for WordPress core functionality */

/* WordPress Core Classes - Essential for WordPress functionality */
.alignleft {
    float: left !important;
    margin-right: 1.5em !important;
}

.alignright {
    float: right !important;
    margin-left: 1.5em !important;
}

.aligncenter {
    display: block !important;
    margin: 0 auto !important;
}

.wp-caption {
    max-width: 100% !important;
}

.wp-caption-text {
    font-size: 0.875rem !important;
    color: #666 !important;
    text-align: center !important;
    margin-top: 0.5rem !important;
}

/* Screen Reader Text */
.screen-reader-text,
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Ensure site structure works */
.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

/* Custom logo max size */
.custom-logo {
    max-height: 50px;
    width: auto;
}
