/*
Theme Name: Fundacja Czułej Sztuki
Version: 1.0
Requires at least: 5.3
Tested up to: 5.5
Requires PHP: 7.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fcs
*/

.single-post-heading {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
}

.single-post-heading::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* 50% zaciemnienia */
    z-index: 1;
}

.single-post-heading .page-heading__wrapper {
    position: relative;
    z-index: 2;
}

.default-block figure.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
    max-width: 50%; /* lub inna szerokość, dostosuj */
}

.default-block figure.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
    max-width: 50%; /* dopasuj */
}

.default-block figure.aligncenter {
    margin-left: auto;
    margin-right: auto;
    display: table; /* lub block, by wycentrować */
    float: none !important;
    max-width: 100%; /* dopasuj jeśli chcesz */
}

/* Obrazki w blokach */
.default-block figure,
.default-block img {
    max-width: 100%;
    height: auto;
}

/* W responsywnych sytuacjach - wyłączamy float i ustawiamy wyśrodkowanie */
@media (max-width: 768px) {
    .default-block figure.alignright,
    .default-block figure.alignleft {
        float: none !important;
        margin: 0 auto 1em;
        display: block;
        max-width: 100% !important;
    }
}

/* szerokość tekstu na blogu */
.news__blog {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    /* opcjonalnie: padding dla lepszego wyglądu */
    padding: 1em;
}