/* Iron Men – VOTD Frontend Styles */
.im-votd {
    border: 2px solid #C9A84C;
    padding: 20px;
    background: linear-gradient(135deg, #fffdf5 0%, #fefbf0 100%);
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    transition: transform .1s ease, box-shadow .1s ease;
}
.im-votd:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.im-votd-header {
    font-weight: 800;
    color: #0A1A2F;
    margin-bottom: 12px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.im-votd-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #2C2C2C;
    font-style: italic;
}
.im-votd-ref {
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 15px;
    text-align: right;
}
.im-votd-affirmation, .im-votd-action {
    margin-bottom: 8px;
    padding: 8px 12px;
}
.im-votd-affirmation {
    background: rgba(201, 168, 76, 0.1);
    border-left: 4px solid #C9A84C;
}
.im-votd-action {
    background: rgba(10, 26, 47, 0.05);
    border-left: 4px solid #0A1A2F;
}
@media (max-width: 768px) {
    .im-votd { padding: 15px; margin: 15px 0; }
    .im-votd-text { font-size: 16px; }
}
