.b2b-stacked-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.b2b-stacked-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid rgba(17, 24, 39, 0.05);
    background-color: #f9fafb;
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.02), 0 1px 2px rgba(17, 24, 39, 0.01);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    gap: 1.5rem;
    position: relative;
    cursor: pointer;
}

.b2b-stacked-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px -4px rgba(17, 24, 39, 0.06), 0 4px 10px -2px rgba(17, 24, 39, 0.02);
}

.b2b-row-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.b2b-row-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.b2b-row-desc {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

.b2b-row-arrow {
    font-size: 1.25rem;
    color: rgba(17, 24, 39, 0.3);
    transition: transform 0.3s ease, color 0.3s ease;
}

.b2b-stacked-row:hover .b2b-row-arrow {
    transform: translateX(4px);
    color: #2563eb;
}
