/* Supporters List Styles */
.supporters-container {
    width: 100%;
    margin: 0 auto;
}

.supporter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.supporter-item {
    display: flex;
    margin-bottom: 24px;
    align-items: flex-start;
}

/* Icon / Name Area */
.supporter-info {
    flex: 0 0 130px;
    text-align: center;
    margin-right: 10px;
    /* Reduced from 20px to move bubble closer */
}

.supporter-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #888;
}

.supporter-name {
    font-size: 14px;
    word-break: break-word;
    line-height: 1.3;
}

/* Speech Bubble Message */
.supporter-message {
    position: relative;
    margin-top: 10px;
    /* Moves bubble down 10px */
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
}

/* Bubble Arrow (Left side) */
.supporter-message::after,
.supporter-message::before {
    right: 100%;
    top: 20px;
    /* Adjust vertical position of the arrow */
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.supporter-message::after {
    border-color: rgba(255, 255, 255, 0);
    border-right-color: #fff;
    border-width: 10px;
    margin-top: -10px;
}

.supporter-message::before {
    border-color: rgba(224, 224, 224, 0);
    border-right-color: #e0e0e0;
    border-width: 13px;
    margin-top: -13px;
}

/* Mobile Responsiveness */
/* Mobile Responsiveness */
@media (max-width: 600px) {

    /* User requested to keep PC layout (horizontal) on mobile */
    .supporter-item {
        /* flex-direction: column;  <-- Removed to keep horizontal */
    }

    .supporter-info {
        /* Adjust width/margin for smaller screens if necessary, 
           but keep side-by-side layout */
        flex: 0 0 80px;
        /* Slightly smaller width for the icon area */
        margin-right: 15px;
        margin-bottom: 0;
        /* consistent with PC */
        /* display: flex; align-items: center; justify-content: flex-start; <-- Revert to default block/center text */
    }

    .supporter-icon {
        width: 50px;
        /* Slightly smaller icon */
        height: 50px;
        /* margin: 0 10px 0 0; <-- Revert */
        margin: 0 auto 8px;
        /* consistent with PC */
    }

    .supporter-name {
        text-align: center;
        /* consistent with PC */
        font-size: 12px;
        /* Slightly smaller font */
    }

    /* Keep speech bubble arrow on the side (same as PC) */
    .supporter-message::after,
    .supporter-message::before {
        /* Revert to default PC styles (side arrow) */
        bottom: auto;
        top: 20px;
        right: 100%;
        left: auto;
    }

    .supporter-message::after {
        border-color: rgba(255, 255, 255, 0);
        border-right-color: #fff;
        border-bottom-color: transparent;
        border-width: 10px;
        margin-top: -10px;
        margin-left: 0;
    }

    .supporter-message::before {
        border-color: rgba(224, 224, 224, 0);
        border-right-color: #e0e0e0;
        border-bottom-color: transparent;
        border-width: 13px;
        margin-top: -13px;
        margin-left: 0;
    }
}

/* Pattern 2: Simple Horizontal List */
.simple-supporter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping if many names */
    line-height: 1.6;
}

.simple-supporter-item {
    margin-right: 1.5em;
    /* 1.5em spacing */
    font-size: 16px;
    color: #333;
}

.simple-supporter-item:last-child {
    margin-right: 0;
}