/* =============================================
   Flexible Author Box Pro - Frontend Styles
   By Muhammad Ghufran Khan | etoolsplanet.com
   ============================================= */

.fab-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ================================================
   WRAPPER
   ================================================ */
.fab-author-box-wrapper {
    margin-top: var(--fab-margin, 30px);
    margin-bottom: var(--fab-margin, 30px);
}
.fab-align-center { text-align: center; }
.fab-align-right  { text-align: right; }
.fab-align-left   { text-align: left; }
.fab-align-center .fab-author-box { margin-left: auto; margin-right: auto; }
.fab-align-right  .fab-author-box { margin-left: auto; }

/* ================================================
   BASE AUTHOR BOX
   ================================================ */
.fab-author-box {
    background: var(--fab-bg, #f9f9f9);
    border: var(--fab-border-width, 1px) solid var(--fab-border-color, #e0e0e0);
    border-radius: var(--fab-border-radius, 8px);
    padding: var(--fab-padding, 25px);
    box-shadow: var(--fab-box-shadow, 0 2px 8px rgba(0,0,0,0.08));
    font-size: var(--fab-font-size, 15px);
    font-weight: var(--fab-font-weight, 400);
    line-height: var(--fab-line-height, 1.6);
    margin-bottom: 16px;
    box-sizing: border-box;
    text-align: left;
    max-width: 100%;
}
.fab-author-box *, .fab-author-box *::before, .fab-author-box *::after {
    box-sizing: border-box;
}

/* ================================================
   AUTHOR PHOTO - BASE
   ================================================ */
.fab-author-photo {
    width: var(--fab-avatar-size, 96px);
    height: var(--fab-avatar-size, 96px);
    object-fit: cover;
    flex-shrink: 0;
    border: var(--fab-photo-border-width, 3px) solid var(--fab-photo-border-color, #0073aa);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fab-author-photo:hover {
    transform: scale(1.05);
}

/* Photo shadow */
.fab-photo-shadow {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.fab-photo-shadow:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* ================================================
   PHOTO SHAPES
   ================================================ */

/* Round (circle) */
.fab-shape-round {
    border-radius: 50%;
}

/* Square (no rounding) */
.fab-shape-square {
    border-radius: 0;
}

/* Rounded Square */
.fab-shape-rounded-square {
    border-radius: 12px;
}

/* Squircle (iOS app icon style) */
.fab-shape-squircle {
    border-radius: 22%;
}

/* Hexagon */
.fab-shape-hexagon {
    border-radius: 0;
    border: none;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Diamond */
.fab-shape-diamond {
    border-radius: 0;
    border: none;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Shield / Badge */
.fab-shape-shield {
    border-radius: 0;
    border: none;
    clip-path: polygon(50% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%, 0% 0%);
    -webkit-clip-path: polygon(50% 0%, 100% 0%, 100% 70%, 50% 100%, 0% 70%, 0% 0%);
}

/* Organic Blob */
.fab-shape-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: fab-blob-morph 8s ease-in-out infinite;
}
@keyframes fab-blob-morph {
    0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* ================================================
   AUTHOR NAME
   ================================================ */
.fab-author-name {
    color: var(--fab-name-color, #222);
    margin: 0 0 6px 0;
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1.3;
}
.fab-author-name a {
    color: inherit;
    text-decoration: none;
}
.fab-author-name a:hover {
    text-decoration: underline;
}

/* Bio */
.fab-author-bio {
    color: var(--fab-bio-color, #555);
    margin: 0 0 10px 0;
}

/* Role badge */
.fab-author-role {
    display: inline-block;
    background: rgba(0,0,0,0.06);
    color: var(--fab-bio-color, #555);
    font-size: 0.8em;
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
    text-transform: capitalize;
}

/* Post count */
.fab-post-count {
    display: inline-block;
    font-size: 0.85em;
    color: var(--fab-bio-color, #888);
    margin-bottom: 8px;
}

/* ================================================
   SOCIAL ICONS
   ================================================ */
.fab-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}
.fab-social-links[style*="center"] { justify-content: center; }
.fab-social-links[style*="right"]  { justify-content: flex-end; }

.fab-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    color: var(--fab-icon-color, #666);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    position: relative;
}
.fab-social-icon:hover {
    color: var(--fab-icon-hover, #0073aa);
    background: rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.fab-social-icon::before {
    content: '';
    width: 16px;
    height: 16px;
    display: block;
    background-color: currentColor;
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}

.fab-icon-twitter::before   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E"); }
.fab-icon-linkedin::before  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z'/%3E%3C/svg%3E"); }
.fab-icon-facebook::before  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E"); }
.fab-icon-instagram::before { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678a6.162 6.162 0 100 12.324 6.162 6.162 0 100-12.324zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405a1.441 1.441 0 11-2.882 0 1.441 1.441 0 012.882 0z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0C8.74 0 8.333.015 7.053.072 5.775.132 4.905.333 4.14.63c-.789.306-1.459.717-2.126 1.384S.935 3.35.63 4.14C.333 4.905.131 5.775.072 7.053.012 8.333 0 8.74 0 12s.015 3.667.072 4.947c.06 1.277.261 2.148.558 2.913.306.788.717 1.459 1.384 2.126.667.666 1.336 1.079 2.126 1.384.766.296 1.636.499 2.913.558C8.333 23.988 8.74 24 12 24s3.667-.015 4.947-.072c1.277-.06 2.148-.262 2.913-.558.788-.306 1.459-.718 2.126-1.384.666-.667 1.079-1.335 1.384-2.126.296-.765.499-1.636.558-2.913.06-1.28.072-1.687.072-4.947s-.015-3.667-.072-4.947c-.06-1.277-.262-2.149-.558-2.913-.306-.789-.718-1.459-1.384-2.126C21.319 1.347 20.651.935 19.86.63c-.765-.297-1.636-.499-2.913-.558C15.667.012 15.26 0 12 0zm0 2.16c3.203 0 3.585.016 4.85.071 1.17.055 1.805.249 2.227.415.562.217.96.477 1.382.896.419.42.679.819.896 1.381.164.422.36 1.057.413 2.227.057 1.266.07 1.646.07 4.85s-.015 3.585-.074 4.85c-.061 1.17-.256 1.805-.421 2.227-.224.562-.479.96-.899 1.382-.419.419-.824.679-1.38.896-.42.164-1.065.36-2.235.413-1.274.057-1.649.07-4.859.07-3.211 0-3.586-.015-4.859-.074-1.171-.061-1.816-.256-2.236-.421-.569-.224-.96-.479-1.379-.899-.421-.419-.69-.824-.9-1.38-.165-.42-.359-1.065-.42-2.235-.045-1.26-.061-1.649-.061-4.844 0-3.196.016-3.586.061-4.861.061-1.17.255-1.814.42-2.234.21-.57.479-.96.9-1.381.419-.419.81-.689 1.379-.898.42-.166 1.051-.361 2.221-.421 1.275-.045 1.65-.06 4.859-.06l.045.03zm0 3.678a6.162 6.162 0 100 12.324 6.162 6.162 0 100-12.324zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm7.846-10.405a1.441 1.441 0 11-2.882 0 1.441 1.441 0 012.882 0z'/%3E%3C/svg%3E"); }
.fab-icon-youtube::before   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 00-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 00.502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 002.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 002.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 00-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 00.502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 002.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 002.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E"); }
.fab-icon-github::before    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12'/%3E%3C/svg%3E"); }
.fab-icon-tiktok::before    { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.525.02c1.31-.02 2.61-.01 3.91-.02.08 1.53.63 3.09 1.75 4.17 1.12 1.11 2.7 1.62 4.24 1.79v4.03c-1.44-.05-2.89-.35-4.2-.97-.57-.26-1.1-.59-1.62-.93-.01 2.92.01 5.84-.02 8.75-.08 1.4-.54 2.79-1.35 3.94-1.31 1.92-3.58 3.17-5.91 3.21-1.43.08-2.86-.31-4.08-1.03-2.02-1.19-3.44-3.37-3.65-5.71-.02-.5-.03-1-.01-1.49.18-1.9 1.12-3.72 2.58-4.96 1.66-1.44 3.98-2.13 6.15-1.72.02 1.48-.04 2.96-.04 4.44-.99-.32-2.15-.23-3.02.37-.63.41-1.11 1.04-1.36 1.75-.21.51-.15 1.07-.14 1.61.24 1.64 1.82 3.02 3.5 2.87 1.12-.01 2.19-.66 2.77-1.61.19-.33.4-.67.41-1.06.1-1.79.06-3.57.07-5.36.01-4.03-.01-8.05.02-12.07z'/%3E%3C/svg%3E"); }

/* ================================================
   LAYOUT: Classic (photo left, content right)
   ================================================ */
.fab-layout-classic {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.fab-layout-classic .fab-photo-wrap {
    flex-shrink: 0;
}

/* ================================================
   LAYOUT: Card (centered)
   ================================================ */
.fab-layout-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.fab-layout-card .fab-photo-wrap {
    margin-bottom: 12px;
}
.fab-layout-card .fab-author-photo {
    width: calc(var(--fab-avatar-size, 96px) * 1.2);
    height: calc(var(--fab-avatar-size, 96px) * 1.2);
}

/* ================================================
   LAYOUT: Inline
   ================================================ */
.fab-layout-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}
.fab-layout-inline .fab-inline-photo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.fab-layout-inline .fab-author-name {
    font-size: 1em;
    margin: 0;
    white-space: nowrap;
}
.fab-layout-inline .fab-inline-bio {
    color: var(--fab-bio-color, #888);
    font-size: 0.9em;
}
.fab-layout-inline .fab-inline-socials {
    margin-top: 0;
    margin-left: auto;
}

/* ================================================
   LAYOUT: Compact
   ================================================ */
.fab-layout-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}
.fab-layout-compact .fab-compact-photo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.fab-layout-compact .fab-compact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.fab-layout-compact .fab-author-name {
    font-size: 0.95em;
    margin: 0;
}
.fab-layout-compact .fab-compact-bio {
    font-size: 0.85em;
    color: var(--fab-bio-color, #888);
}
.fab-layout-compact .fab-compact-socials {
    margin-top: 0;
    flex-shrink: 0;
}

/* ================================================
   LAYOUT: Top (photo top, content bottom)
   ================================================ */
.fab-layout-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.fab-layout-top .fab-photo-centered {
    margin-bottom: 12px;
}

/* ================================================
   LAYOUT: Large Featured
   ================================================ */
.fab-layout-large {
    text-align: center;
}
.fab-layout-large .fab-large-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}
.fab-layout-large .fab-photo-large .fab-author-photo {
    width: calc(var(--fab-avatar-size, 96px) * 1.5);
    height: calc(var(--fab-avatar-size, 96px) * 1.5);
}
.fab-layout-large .fab-author-name {
    font-size: 1.4em;
    margin-top: 12px;
}
.fab-layout-large .fab-large-bio {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   Recent posts
   ================================================ */
.fab-recent-posts {
    margin-top: 12px;
    font-size: 0.9em;
}
.fab-recent-posts ul {
    margin: 4px 0 0 20px;
    padding: 0;
}
.fab-recent-posts li {
    margin-bottom: 3px;
}
.fab-recent-posts a {
    color: var(--fab-name-color, #222);
    text-decoration: none;
}
.fab-recent-posts a:hover {
    text-decoration: underline;
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 600px) {
    .fab-layout-classic {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .fab-layout-classic .fab-social-links {
        justify-content: center;
    }
    .fab-layout-inline {
        flex-wrap: wrap;
    }
    .fab-layout-inline .fab-inline-socials {
        margin-left: 0;
        width: 100%;
    }
    .fab-layout-compact {
        flex-wrap: wrap;
    }
}
