/* ============================================================
   PitchDeck Button styles
   Used both inside TinyMCE editor AND on the frontend
   ============================================================ */

.pitchdeck-btn {
    display:         inline-block;
    padding:         12px 28px;
    background:      #33aaff;
    color:           #ffffff !important;
    font-weight:     700;
    font-size:       15px;
    text-decoration: none !important;
    line-height:     1.4;
    cursor:          pointer;
    border:          none;
    transition:      background 0.2s ease, transform 0.2s ease;
}

.pitchdeck-btn:hover {
    background:  #e55a2b;
    color:       #ffffff !important;
    transform:   translateY( -2px );
}

.pitchdeck-btn:visited {
    color: #ffffff !important;
}