/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/

/* Your CSS only */

.gfj-issue-title {
    padding-left: 30px;
    font-weight: 700;
    color: var(--global-color-8);
    margin-top: 0.5em;
}

.custom-footer {
    display: flex;
    align-items: center;   /* vertically aligns logo and text */
    gap: 15px;             /* space between logo and text */
}

.footer-logo img {
    max-height: 60px;      /* control logo size */
    width: auto;
}

.custom-footer-text {
    text-align: left;
    font-size: 11px;
    line-height: 1.4;
    color: #ffffff;
}

.custom-footer-text p {
    margin: 0;
}

@media (max-width: 768px) {
    .custom-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .custom-footer-text {
        text-align: center;
    }

    .footer-logo img {
        max-height: 100px;   /* ✅ increase size here */
        margin-bottom: 10px;
    }
}