/* Home Page Message Cards */
.message-card-home {
    transition: transform 0.3s;
    border-radius: 15px;
    background: #fff;
}

.message-card-home:hover {
    transform: translateY(-5px);
}

.quote-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--prsu-gold) !important;
    color: var(--prsu-maroon) !important;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-size: 12px;
    z-index: 2;
}

.btn-outline-maroon {
    border: 1px solid var(--prsu-maroon) !important;
    color: var(--prsu-maroon) !important;
    background: transparent;
}

.btn-outline-maroon:hover {
    background: var(--prsu-maroon) !important;
    color: white !important;
}