.dice-project-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.25s ease;
    width:33%;
}

.dice-project-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dice-project-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    margin-bottom: 1.25rem;
}

.dice-project-card__logo img {
    max-width: 200px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.dice-project-card__body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.dice-project-card__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    text-align: left;
    margin: 0;
}

.dice-project-card__footer {
    margin-top: auto;
    text-align: left;
}

.dice-project-card__btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #1a4731;
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none !important;
    transition: background 0.2s ease;
}

.dice-project-card__btn:hover {
    background: #0d3521;
}