/* Horizontal Badge Card Styles (New Design) */
.badge-card-horizontal {
    display: flex;
    flex-direction: row;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    /* Smooth rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    overflow: hidden;
}

.badge-card-horizontal:hover {
    /* Lift effect removed per user request */
    border-color: #e0e0e0;
    /* Optional: Slight border color change on hover instead */
}

.badge-icon-container {
    flex: 0 0 110px;
    /* Fixed width for image area */
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center image vertically */
    margin-right: 1.5rem;
}

.badge-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    /* Remove border radius if the badge is circular itself, or keep tiny */
}

.badge-content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically if brief */
}

.badge-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.badge-issuer {
    font-size: 0.85rem;
    color: #6c757d;
    text-decoration: underline;
    margin-bottom: 0.75rem;
    display: block;
    font-weight: 500;
}

.badge-description {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.badge-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    /* Push to bottom if container grows */
}

/* Button Styles mimicking the reference image */
.btn-share-style {
    background-color: #06014c;
    /* Updated to dark blue */
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-share-style:hover {
    background-color: #040130;
    /* Darker shade for hover */
    color: white;
    box-shadow: 0 2px 5px rgba(6, 1, 76, 0.3);
}

.btn-options-style {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    min-width: auto;
    cursor: pointer;
}

.btn-options-style:hover {
    background-color: transparent;
    opacity: 0.8;
    /* Slight opacity change instead of scale */
}

.btn-options-style img {
    height: 48px;
    width: auto;
}