/*
 * Nenadeino - Custom CSS overrides for the Telephasic theme
 * These styles complement the Telephasic theme (assets/css/main.css)
 * and provide project-specific adjustments.
 */

/* ---- Wagtail image renditions: ensure responsive images ---- */
img {
    max-width: 100%;
    height: auto;
}

/* ---- Wagtail richtext images ---- */
.richtext-image {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
}
.richtext-image.left {
    float: left;
    margin: 0 1.5em 1em 0;
    max-width: 50%;
}
.richtext-image.right {
    float: right;
    margin: 0 0 1em 1.5em;
    max-width: 50%;
}
.richtext-image.full-width {
    display: block;
    width: 100%;
    margin: 1.5em 0;
}

/* ---- Event content StreamField blocks ---- */
.event-content {
    margin-bottom: 2em;
}
.event-content .block-paragraph_block {
    margin-bottom: 1em;
}

/* ---- Footer text ---- */
#footer .copyright {
    margin-top: 1em;
}
#footer .icons li {
    display: inline-block;
    margin: 0 0.5em;
}
#footer .icons li a {
    font-size: 1.5em;
}

/* ---- Responsive adjustments ---- */
@media screen and (max-width: 736px) {
    .richtext-image.left,
    .richtext-image.right {
        float: none;
        display: block;
        max-width: 100%;
        margin: 1em 0;
    }
}
