/* Value Card Widget — 14009 */

.vc-14009-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    min-height: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

a.vc-14009-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vc-14009-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: auto; /* Pushes middle/bottom down */
}

.vc-14009-label {
    display: inline-block;
    background-color: #88a0a3;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.vc-14009-top-right {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.vc-14009-middle {
    display: flex;
    flex-direction: column; /* Fixed: allows image above heading properly */
    justify-content: center;
    flex-grow: 1; /* Takes up remaining space */
    padding: 30px 0;
}

.vc-14009-image-wrapper {
    margin-bottom: 20px;
    width: 100%;
}

.vc-14009-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

.vc-14009-heading {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 600;
    color: #88a0a3;
    line-height: 1.1;
}

.vc-14009-bottom {
    margin-top: auto;
}

.vc-14009-divider {
    border-top: 1px solid #d1d9da;
    margin: 0 0 20px 0;
    width: 100%;
}

.vc-14009-footer-text {
    margin: 0;
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}
