.voting-grid-f9308dad {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 20px 0;
}

.voting-card-f9308dad {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.voting-card-f9308dad:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.voting-photo-wrapper-f9308dad {
    position: relative;
    width: 100%;
    padding-top: 100%; /* square ratio */
    background-color: #f7fafc;
}

.voting-photo-wrapper-f9308dad img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.voting-content-f9308dad {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.voting-title-f9308dad {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
}

.voting-artwork-f9308dad {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: center;
    font-style: italic;
}

.vote-btn-f9308dad {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #3b82f6;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.vote-btn-f9308dad:hover {
    background-color: #2563eb;
}

.vote-btn-f9308dad:disabled {
    background-color: #10b981 !important;
    cursor: not-allowed;
}
