/* Container */
.vm-wrapper-98125906 {
    background-color: #1E1A17;
    padding: 40px;
    box-sizing: border-box;
}

/* Equal Height Grid */
.vm-grid-98125906 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch; /* Forces equal height */
}

/* Luxury Card Styling */
.vm-card-98125906 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.4); /* Subtle gold border */
    border-radius: 16px; /* Rounded corners */
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Soft shadow */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100%; /* Strictly match the grid track height */
}

/* Typography */
.vm-card-title-98125906 {
    color: #D4AF37; /* Gold */
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

.vm-card-body-98125906 {
    color: #FFFFFF; /* White */
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1; /* Pushes bottom if needed, but text aligns top */
}

/* Mobile Stack */
@media (max-width: 767px) {
    .vm-grid-98125906 {
        grid-template-columns: 1fr;
    }
}
