/* 名言リストのスタイル */
.meigen-list {
    list-style: none !important;
    padding-left: 0 !important;
    padding: 0;
    margin: 0;
}

.meigen-item {
    margin-bottom: 56px !important;
    padding: 32px 24px 24px 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    text-align: center;
    position: relative;
    border: 1.5px solid #e0e0e0;
    max-width: 520px;
    min-width: 260px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meigen-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #f7f7f7;
    border: 2.5px solid #e0e0e0;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
    z-index: 2;
}

.meigen-content {
    font-size: 1.3rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    text-align: center;
    margin-top: 18px;
    padding-left: 36px;
    padding-right: 24px;
}

.meigen-author {
    font-size: 1.05rem;
    color: #888;
    font-weight: bold;
    margin-bottom: 18px;
    letter-spacing: 0.08em;
    text-align: right;
    margin-right: 18%;
}

.meigen-vote-area {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.meigen-like-btn {
    padding: 10px 24px;
    font-size: 1.1rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ffe066 0%, #ffd700 100%);
    color: #333;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255,215,0,0.12);
    transition: all 0.2s;
    outline: none;
}

.meigen-like-btn:hover:not(:disabled) {
    background: linear-gradient(90deg, #ffd700 0%, #ffe066 100%);
    color: #111;
    transform: scale(1.07);
}

.meigen-like-btn:disabled,
.meigen-like-btn.voted {
    background: #ccc !important;
    color: #888;
    cursor: default;
    box-shadow: none;
    transform: none;
}

.meigen-like-count {
    font-size: 1.1rem;
    color: #e67e22;
    font-weight: bold;
    margin-left: 8px;
}

.meigen-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #e67e22;
    margin: 40px 0 32px 0;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .meigen-item {
        padding: 14px 4px 12px 4px;
        font-size: 1rem;
        min-width: 0;
        max-width: 98vw;
        border-radius: 10px;
    }
    .meigen-content {
        font-size: 1rem;
    }
    .meigen-title {
        font-size: 1.3rem;
    }
    .meigen-like-btn {
        font-size: 1rem;
        padding: 8px 12px;
    }
    .meigen-vote-area {
        gap: 8px;
    }
    .meigen-author {
        font-size: 0.95rem;
        margin-bottom: 12px;
        margin-right: 8%;
    }
} 