.eav-voting-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.eav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.eav-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.eav-card:hover {
    transform: translateY(-5px);
}

.eav-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #2c3e50;
}

.eav-meta {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0 0 5px 0;
}

.eav-desc {
    margin: 15px 0;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

.eav-metrics {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #2d3748;
    margin-bottom: 20px;
    border-left: 4px solid #3182ce;
}

.eav-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.eav-gallery img {
    width: calc(33.333% - 7px);
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.eav-vote-section {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #edf2f7;
    text-align: center;
}

.eav-vote-count {
    font-size: 18px;
    font-weight: bold;
    color: #e53e3e;
    margin-bottom: 15px;
}

.eav-vote-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eav-email-input {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}

.eav-vote-btn {
    background: #3182ce;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.eav-vote-btn:hover {
    background: #2b6cb0;
}

.eav-vote-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
}

.eav-message {
    margin-top: 10px;
    font-size: 14px;
    min-height: 20px;
}

.eav-message.success {
    color: #38a169;
}

.eav-message.error {
    color: #e53e3e;
}
