/**
 * Reusable Author Block
 *
 * Compact horizontal byline: small circular photo on the left, two stacked
 * lines on the right.
 *
 *   [o]  Author: George Kingsley
 *        Last Update: 28 July 2026
 */

.abp5_author_block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0 20px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.abp5_author_block_center {
    justify-content: center;
}

/* Directly below the H1 on the non-gamstop-casinos-uk landing page */
.abp5_author_block_landing {
    margin: 14px 0 22px;
}

/* Small circular photo */
.abp5_author_block_photo {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #33363b;
}

.abp5_author_block_meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.abp5_author_block_line {
    font-size: 14px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
}

.abp5_author_block_label {
    font-weight: 700;
    color: #ffffff;
}

.abp5_author_block_value {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
    .abp5_author_block {
        gap: 10px;
    }

    .abp5_author_block_photo {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .abp5_author_block_line {
        font-size: 13px;
    }
}
