/** ishan.css */
/** Copyright (c) 2026 Ishan Pranav */

.ishan-stripe {
    height: 6px;
}

.ishan-logo {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
}

.ishan-card {
    transition: transform 0.2s;
}

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

.ishan-stack-hide {
    display: none;
}

@media (max-width: 576px) {
    .ishan-stack-table thead {
        display: none;
    }

    .ishan-stack-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: .5rem;
        padding: .5rem;
        background: #fff;
    }

    .ishan-stack-table td {
        display: flex;
        flex-direction: column;
        padding: .25rem 0;
        border: none;
    }

    .ishan-stack-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #495057;
    }

    .ishan-stack-table td {
        width: 100%;
    }

    .ishan-stack-hide {
        display: inline;
    }
}
