.company-logo {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.card {
    height: 100%;
}

.company-card {
    position: relative;
    height: 100%;
}

.card-body {
    padding: 16px;
    flex-grow: 1;
    background-color: transparent;
}

.podcast-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: linear-gradient(145deg, #4caf50, #43a047);
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3),
                0 1px 2px rgba(255, 255, 255, 0.2) inset;
    z-index: 10;
    text-align: center;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4),
                0 2px 4px rgba(255, 255, 255, 0.3) inset;
}